‎2009 Jun 04 10:25 AM
Hi Experts
i am doing a report where i have been asked to
use SUBMIT for tcode (FBL3N)
my inputs are
company code(Bukrs)
Posting date(Budat)
station
username
vendor no (Lifnr)Now what i want to know is.....
i can take company code posting date but how can i restrict the
other 3 fields using submit ....
how can i do it ??? Pls suggest me something how to proceed further
Thanx in advance
Rachel
‎2009 Jun 04 11:06 AM
Restrict?
Do u want a report to run using jus a submit statement?
Do u have values for the fields mentioned?
please state your problem clearly.
‎2009 Jun 04 10:28 AM
hi,
you can use "submit with" and that pass the values.
or call transaction and set the values.
Atul
Edited by: Atul Dhariwal on Jun 4, 2009 11:28 AM
‎2009 Jun 04 11:06 AM
Restrict?
Do u want a report to run using jus a submit statement?
Do u have values for the fields mentioned?
please state your problem clearly.
‎2009 Jun 04 11:11 AM
Hi,
Can you make your question and the requirement clear so that I can help you out?
Thanks,
Mnajula.S
‎2009 Jun 04 11:14 AM
how can i restrict the
other 3 fields using submit ....
not clear !!!!
‎2009 Jun 04 11:48 AM
Hello Arun,
Here is the sample code how to pass selection screen data to called program. You need to change accordingly.
REPORT ztest_notepad.
DATA:
wa_selections TYPE rsparams,
it_selections TYPE rsparams OCCURS 0 WITH HEADER LINE.
wa_selections-selname = 'P_EINRI'. "Screen field name
wa_selections-kind = 'P'. "P=Parameters S=Select-options
wa_selections-sign = 'I'.
wa_selections-option = 'EQ'.
wa_selections-low = einri. "Value to be passed to the field
APPEND wa_selections TO it_selections.
CLEAR wa_selections.
SUBMIT rfitemgl WITH SELECTION-TABLE it_selections.Thanks
Venkat
‎2009 Jun 04 11:51 AM
sorry if i have confused .....and not clear..... but wat i meant was that
only lifnr (vendor doc) bukrs( company code) date is available in submit
but i need to use the other two inputs to restrict which is not in fbl5n ....so how can i do was my question ????
but now i myself tried and found that after restricting these 3 fields using submit i can restrict with another select with that submit above .......not necessarily i shud filter all the fields with only using submit ( since i was new to this submit i thot watever fields we use shud be used in submit)
thanks for the responses