Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

doubt in submit

Former Member
0 Likes
768

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
722

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.

6 REPLIES 6
Read only

Former Member
0 Likes
722

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

Read only

Former Member
0 Likes
723

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.

Read only

0 Likes
722

Hi,

Can you make your question and the requirement clear so that I can help you out?

Thanks,

Mnajula.S

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
722

how can i restrict the

other 3 fields using submit ....

not clear !!!!

Read only

venkat_o
Active Contributor
0 Likes
722

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

Read only

Former Member
0 Likes
722

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