‎2010 Aug 20 1:04 PM
Hi.
Here is my query :
I am able to call a report program from another, but only the report program that does not ask for any user input. The way I did this is "SUBMIT rep". But I wish to call a report that asks for user input. I need a way to implement this only by report programming, and not dialog programming.Please let me know the way or an alternative.
Thanks,
Sahil
‎2010 Aug 20 1:07 PM
Just press F1 on VIA SELECTION SCREEN in your abap editor.
Or search in SDN for submit via selection-screen
‎2010 Aug 20 1:08 PM
‎2010 Aug 20 1:28 PM
‎2010 Aug 20 1:40 PM
Hi,
Use SUBMIT <REPORT> VIA SELECTION SCREEN WITH P1 = <VALUE>......
Please close the threat if it is answered.
THanks,
Anmol.
‎2010 Aug 20 2:09 PM
Hi,
SUBMIT.....USING SELECTION-SCREEN 1000
When you execute the report, the system uses the selection screen number that you specify in the scr field.This addition allows you to start the same report in different situations, using a different selection screen each time.
SUBMIT ..... VIA SELECTION-SCREEN
The selection screen is displayed. In this case, the selection screen is displayed again after the report list has been displayed. The values entered by the user remain displayed
Example
SUBMIT REPORT01
VIA SELECTION-SCREEN
USING SELECTION-SET 'VARIANT1'
USING SELECTION-SETS OF PROGRAM 'REPORT00'
AND RETURN
Hope it helps.
‎2010 Aug 23 7:02 AM