You are on page 1of 18

http://sachinbhutani.blogspot.

in/

Welcome, Guest

Login Register

Getting Started Newsletters

Store

Search for:


Home

Search the Community

Solutions SAP Services & Support About SCN Downloads Industries Training & Education Partnership Code Exchange Lines of Business University Alliances Events & Webinars Idea Place
Activity Communications Actions

Search All of SAP


BrowseMore

o o o o

Content People Places Recent Bookmarks

More discussions in ABAP DevelopmentWhere is place located?


THIS DISCUSSION IS LOCKED

8 Replies Latest reply: Dec 19, 2009 7:22 PM by Clemens Li

passing dynamic selection parameters for fagll03 transaction


This question is Assumed Answered.

venkat v Jul 21, 2009 6:14 PM hi experts,

im trying to call a transaction ( fagll03) in my report with the input parameters via selection screen (using SUBMIT ) , but iwant to pass the profit center values to the transaction fagll03 , but the profit center is in dynamic selection , i just tried with some code , but it is not working, can any one just tell me briefly how to pass the profit center variable to the dynamic selection screen in fagll03. if u have any code please update me , it will be more useful.

Regards, Venkat. Helpful Answers by max bianchi, aRs .

1468 Views

Average User Rating (0 ratings)

Helpful AnswerRe: passing dynamic selection parameters for fagll03 transaction

max bianchi Jul 21, 2009 6:23 PM (in response to venkat v) Hi

Try a code like this

DATA: TEXPR W_EXPR

TYPE RSDS_TEXPR, LIKE RSDSEXPR,

W_TEXPR TYPE RSDS_EXPR. W_EXPR-FIELDNAME = 'PRCTR'. W_EXPR-OPTION W_EXPR-LOW = 'EQ'. = <profit center>.

W_TEXPR-TABLENAME = 'BSIS'. APPEND W_EXPR TO W_TEXPR-EXPR_TAB. APPEND W_TEXPR TO TEXPR.. SUBMIT FAGL_ACCOUNT_ITEMS_GL WITH ................ WITH FREE SELECTIONS TEXPR AND RETURN.

Max

o o

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

Raymond Giuseppi Aug 20, 2009 2:06 PM (in response to max bianchi) Look at FM FREE_SELECTIONS_RANGE_2_EX which will build the correct parameter to use in the WITH FREE SELECTION option.

First read Abap documentation at SAP online help [WITH FREE SELECTIONS texpr | http://help.sap.com/abapdocu/en/ABAPSUBMIT_SELSCREEN_PARAMETERS.htm#! ABAP_ADDITION_5@5@] in [SUBMIT - selscreen_parameters| http://help.sap.com/abapdocu/en/ABAPSUBMIT_SELSCREEN_PARAMETERS.htm] of [SUBMIT|http://help.sap.com/abapdocu/en/ABAPSUBMIT.htm] (or press F1 on SUBMIT)

Also look if those notes are relevant for your system - [Note 965988 - FAGLL03: 'Dynamic selections' are ignored| https://service.sap.com/sap/support/notes/965988] - [Note 1105201 - FAGLL03: 'Custom selections' are ignored| https://service.sap.com/sap/support/notes/1105201]

Regards, Raymond

Report Abuse Like (0)

Helpful AnswerRe: passing dynamic selection parameters for fagll03 transaction

aRs . Feb 29, 2012 2:04 PM (in response to venkat v)

call function 'RS_REFRESH_FROM_SELECTOPTIONS' exporting curr_report = 'FAGL_ACCOUNT_ITEMS_GL' tables selection_table = i_sel[].

Fill your profit center values in i_sel

then

submit FAGL_ACCOUNT_ITEMS_GL with selection-table i_sel and return.


a

o o

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

venkat v Jul 22, 2009 8:27 AM (in response to venkat v) it is not working with the code, i ve tried that one , but still it is not getting.

o o

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

Jayawant PATIL Sep 28, 2009 3:56 PM (in response to venkat v) Venkat I have similar need. Did you have any code to share? Jay

o o

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

LP R Nov 25, 2009 9:22 AM (in response to Jayawant PATIL) Hi Venkat /Jay,

Im facing the similar problem with t-code FAGLL03, do u have any suggestions/code to share..

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

Ramesh Babu Dupaguntla Dec 19, 2009 3:21 PM (in response to venkat v) Venkat , what is the solution ? now i have same problem.... can u tell me the solution ?

o o

Report Abuse Like (0)

Re: passing dynamic selection parameters for fagll03 transaction

Clemens Li Dec 19, 2009 7:22 PM (in response to Ramesh Babu Dupaguntla) Hi,

please check onmline help on SUBMIT, [addition 5 free selections| http://help.sap.com/abapdocu_70/en/ABAPSUBMIT_SELSCREEN_PARAMETERS.htm#! ABAP_ADDITION_5@5@]

Regards, Clemens

Report Abuse Like (0) Go to original post

Actions

Legend

Correct Answers - 10 points Helpful Answers - 5 points

Welcome, Guest

Login Register

Getting Started Newsletters

Store

Search for:


Home

Search the Community

Solutions SAP Services & Support About SCN Downloads Industries Training & Education Partnership Code Exchange Lines of Business University Alliances Events & Webinars Idea Place

Search All of SAP


BrowseMore

Activity Communications Actions

o o o o

Content People Places Recent Bookmarks

More discussions in SAP ERP FinancialsWhere is place located? 2 Replies Latest reply: Oct 16, 2009 11:23 PM by Sridhar D

Unable to enhance dynamic selections in FAGLL03


This question is Not Answered.

Sridhar D Oct 14, 2009 2:46 AM Followed Note 945932 to extend FAGLFLEXA by adding the fields to CI_FAGLFLEXA.

The fields (BSEG-XREF3) appeared in the dynamic selections but if I try to use the field, it throws the following error: ================================================================================== ============= MSITEM 103 - Custom selections deleted because fields not active in ledger Custom selections deleted because fields not active in ledger Message no. MSITEM103 Diagnosis Either you have entered custom selections or you have switched between ledgers and had already entered custom selections for the previous ledger. System Response From the custom selections, the program deletes any entries for fields that are not active in the ledger currently selected. Procedure If necessary, adjust the custom selections for the currently selected ledger. ================================================================================== ============= Is there anything else that I need to do to use the dynamic selections ? How do I activate the field in the ledger ? Looks like most of the fields in the ledger are being read from the totals tables - FAGLFLEXT.

Any help will be greatly appreciated.

Thanks Sridhar

958 Views

Average User Rating (0 ratings)

Re: Unable to enhance dynamic selections in FAGLL03

Evgeni Kalashnikov Oct 16, 2009 10:40 PM (in response to Sridhar D) What tcodes you are using to add this field?

o o

Report Abuse Like (0)

Re: Unable to enhance dynamic selections in FAGLL03

Sridhar D Oct 16, 2009 11:23 PM (in response to Evgeni Kalashnikov) SE16 - added the fields in FAGLFLEXA as per the note. It said not to add an "append structure". So I went in and added the field directly.

Report Abuse Like (0) Go to original post

Actions

Legend

Follow SCN Contact Us SAP Help Portal Privacy Terms of Use Legal Disclosure Copyright Correct Answers - 10 points Helpful Answers - 5 points

Jive Software Version: 5.0.1.1 , revision: 201110261520.2c99f0c.release_jive_sbs_5_0_1_1

Welcome, Guest

Login Register Getting Started Newsletters Store Top of Form Search for: Search the Community Search All of SAP Bottom of Form Solutions SAP Services & Support About SCN Downloads Industries Training & Education Partnership Code Exchange Lines of Business University Alliances Events & Webinars Idea Place Home Activity0 Communications Actions0 BrowseMore Content People Places Recent Bookmarks Top of Form Please enter a title. You can not post a blank message. Please type your message and try again. Bottom of Form More discussions in SAP ERP FinancialsWhere is place located? All Places Enterprise Resource Planning (SAP ERP) SAP ERP Financials 10 Replies Latest reply: Nov 22, 2007 6:14 AM by Amy Syeda Additional field selections in FB03 This question has been Answered.

SAU BAG Mar 27, 2007 5:22 AM Currently Being Moderated Hi, A very good morning to all. When I display the document list from T code FB03 I wish that I can have a few more fields like cost centre & business area in the Dynamic selection Tab. Is that possible ? if yes please suggest the way to do it. Thanks & regards, Saurabh Bagri 3912 Views Average User Rating 0 (0 ratings) Re: Additional field selections in FB03

Daniel James Castro Mar 27, 2007 9:33 AM (in response to SAU BAG) Currently Being Moderated Hi Saurabh, Yes that is possible.. I already post this in the wiki tab.. anyways, here it is. <b>Enhancing Selection Views in the dynamic selection of FB03, FBL3n, FBL5n and etc</b> Related OSS Note: 188663 and 832997 Requirement: The business requires the Doc. Header Text be added in the dynamic selection in FB03 Solution: Execute Transaction code SE36. Click F4. Enter the table name wherein you think the field could be found. In this case the table is BKPF and the logical database is BRF From the initial screen of SE36, Choose from the path EXTRAS>> Selection Views Copy Selection View "SAP" to "CUS" Change the selection views "CUS"

In the right corner, double click your table BKPF. In the right corner, check whether what functional groups does your field belong. If it is 01 then input it beside your field name. Then Save it afterwards. <b>End</b> <i>Since you want business area field, find it in bseg instead in bkpf.</i> Regards, JeCCas_DJ Message was edited by: JeCCas_DJ Report Abuse Like (0) Re: Additional field selections in FB03

SAU BAG Mar 27, 2007 6:41 AM (in response to Daniel James Castro) Currently Being Moderated Hi Dear Thanks for ur reply. But I have a problem here.The cost centre & business area fields are appearing in table BSEG & the table read here is BKPF. So is it possible to create another fuctional group 02 here which can read information from table BSEG. Please Reply Regards Saurabh Bagri Report Abuse Like (0) Re: Additional field selections in FB03

Amy Syeda Nov 22, 2007 6:14 AM (in response to Daniel James Castro) Currently Being Moderated Hi DJ, Could you pls. tell me how to add a <b>table SKAT - a transparent table to SKA1 to copy its elements for GL and an additional field to BSEG table to display correct amount.</b> I don't know how <u>to create functional group and areas and assign FA to FG in BI 7.0.</u> oYour help is appreciated in this matter and points will be awarded as well.

Thanks in advance. Message was edited by: Amy Syeda Report Abuse Like (0) Re: Additional field selections in FB03

Andreas Mann Mar 27, 2007 8:10 AM (in response to SAU BAG) Currently Being Moderated hi, try report RFBPET00 A. Report Abuse Like (0) Re: Additional field selections in FB03

SAU BAG Mar 28, 2007 6:22 AM (in response to Andreas Mann) Currently Being Moderated Hi Mann Thnx for your answer Have awarded the points for it Regards Saurabh Report Abuse Like (0) Re: Additional field selections in FB03

Bac Quan Sep 25, 2007 9:33 PM (in response to SAU BAG) Currently Being Moderated Hi Saurabh: I have the same problems with FBL3N. I had to add a field from BSEG to the dynamic selection of FBL3N. Were you successfuly in adding the additional field from BSEG to the dynamic selection in FB03? If so, how? Thanks Bac Report Abuse

Like (0) Re: Additional field selections in FB03

SAU BAG Sep 28, 2007 5:42 AM (in response to Bac Quan) Currently Being Moderated Hi Bac, yes i was successful in adding the field "Business Place" by the procedure mentioned therein. regards, Saurabh Report Abuse Like (0) Re: Additional field selections in FB03

Daniel James Castro Mar 27, 2007 9:27 AM (in response to SAU BAG) Currently Being Moderated Hi Saurabh, Actually the business area and cost center can be found in tables that you had mentioned. The logical database to be used is BRF and I think its in BSEG. You can add another functional group as you suggest but make sure that you had these modification in CUS and not in SAP. Regards, JeCCas_DJ Report Abuse Like (0) Re: Additional field selections in FB03

SAU BAG Mar 27, 2007 11:13 AM (in response to Daniel James Castro) Currently Being Moderated Hi JeCCas_DJ I had found the cost centre & business ares in Table BSEG had even assinged it functional group 1 in front of the two fields & have ticked the check box.Still the two fields are not appearing in Dynamic selection of FB03. What I think is functional group 1 is defined for table BKPF only. Can u please tell me how the functional group can be defined for Table BSEG so that it appears in dynamic selection view. i am doing the modification in CUS only Regards, Saurabh Bagri

Report Abuse Like (0) Re: Additional field selections in FB03

Daniel James Castro Mar 28, 2007 4:53 AM (in response to SAU BAG) Currently Being Moderated Hi Saurabh, The changes needs to be saved so that it an be seen in the dynamic selection. If you wanted it to be seen in the right part automatically in your dynamic selection you need to tick the check box otherwise it can only be seen in the left part of the dynamic selection. Regards, JeCCas_DJ Report Abuse Like (0) Go to original post Actions Stop tracking Track in Communications

Legend Correct Answers - 10 points Helpful Answers - 5 points

Follow SCN Contact Us SAP Help Portal

Privacy Terms of Use Legal Disclosure Copyright Jive Software Version: 5.0.1.1 , revision: 201110261520.2c99f0c.release_jive_sbs_5_0_1_1

You might also like