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

Call the program first two screens and return

Former Member
0 Likes
521

Hi all,

I am coding an Zprogram in that i have to call an Standard Report Program ( ex:- RFFOUS_T ) and execute.

and in that standard program i need to execute upto the first two screeens only after the first two screens i need to come back to my Zprogram

How can i do this.

Regards

Ajay

Hi all,

I am coding an Zprogram in that i have to call an Standard Report Program ( ex:- RFFOUS_T ) and execute.

and in that standard program i need to execute upto the first two screeens only after the first two screens i need to come back to my Zprogram

How can i do this.

Regards

Ajay

3 REPLIES 3
Read only

Former Member
0 Likes
498

As you can not code in standard program..its better to copy standard program and code for return when u will be in second screen..

regards..

Read only

Former Member
0 Likes
498

create TCODE for RFFOUS_T...

and you develop a BDC to execute only 2 screens of this report...

*Try if it works

Read only

Former Member
0 Likes
498

Hi Ajay,

SUBMIT RFFOUS_T WITH SELECTION-TABLE i_rspar AND RETURN.

where i_rspar contains the value u want to pass to next report programs output screen

with structure as i_rspar TYPE STANDARD TABLE OF rsparams.

Try with it

it may help you.