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

Calling one report program from the other

Former Member
0 Likes
768

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

6 REPLIES 6
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
738

Just press F1 on VIA SELECTION SCREEN in your abap editor.

Or search in SDN for submit via selection-screen

Read only

bbalci
Contributor
0 Likes
738

Hi

Use VIA SELECTION-SREEN addition with command SUBMIT.

Read only

Former Member
0 Likes
738

You need to use additon via selection-screen.

Read only

Former Member
0 Likes
738

Hi,

Use SUBMIT <REPORT> VIA SELECTION SCREEN WITH P1 = <VALUE>......

Please close the threat if it is answered.

THanks,

Anmol.

Read only

Former Member
0 Likes
738

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.

Read only

Former Member
0 Likes
738

Thank You