‎2007 Aug 29 5:58 AM
Hi Friends good morning.
in my program am calling 13 other programs with different selection screen, i want to execute this one after the other automatically. ie after completion of one program it should display next program selection screen automatically. please tell me how to do this .
Regards.
Prajwal.
Message was edited by:
prajwal k
‎2007 Aug 29 6:04 AM
HI,
do like this.
submit zex1 via selection-screen and return.
submit zex2 via selection-screen and return.
...................
if u do like this.the next program selection screen will be called when u say back in the selection screen of the program u r currently in.
suppose if u want to go to the next program selection screen from the program u r currently in u have to write the 2nd submit statement in the program u calling first and so on.
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 29 6:04 AM
HI,
do like this.
submit zex1 via selection-screen and return.
submit zex2 via selection-screen and return.
...................
if u do like this.the next program selection screen will be called when u say back in the selection screen of the program u r currently in.
suppose if u want to go to the next program selection screen from the program u r currently in u have to write the 2nd submit statement in the program u calling first and so on.
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 29 6:16 AM
Hi Bharat.
thanks its working ,But screen change occurs only when i press back button,
is there any other way to overcome this problem
‎2007 Aug 29 6:22 AM
Hi,
we will when we press back button only.if u want to get without back button u should write the 2nd submit in 1st program(zex1),3rd submit in 2nd program(zex2) and.....then it will go in a sequence.and while u come out of that program it come out in the reverse order(zex5->zex4->...zex1)
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 29 6:37 AM
Hi..
I did what u told but its giving error . like ''maximum number of internal sessions reached when i execute the 6 program
i have 13 programs to call
Regards
Prajwal.
Message was edited by:
prajwal k
‎2007 Aug 29 6:54 AM
Hi,
here the problem is u can use the nested submit statements for 6 times only.
u cannot call after words.that internal sessions will be restricted by the basis people.
if u come back from one program u can use submit one more time.suppose if u come back from zex6 to zex5 then u can call zex7 successfully.
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 29 6:59 AM
‎2007 Aug 29 7:05 AM
HI,
i think they can,i am not sure with that.
but one more thing if u don't want to came back from zex2->zex1,zex3->zex2,...
u just remove AND RETURN.the in that case u can call any number of programs
<b>reward if helpful</b>
rgds,
bharat.
‎2007 Aug 29 7:16 AM
Thanks a lot Bharat.
u solved my Problem
Regards.
Prajwala.k.Nairy
‎2007 Aug 29 6:10 AM
Hi
Use the syntax: to call all those 5 REPORTS..
SUBMIT <REPORT> VIA SELECTION-SCREEN AND RETURN ..
Here AND RETURN ensure the control to returned to Calling report every time...
<b>reward if Helpful..</b>
‎2007 Aug 29 6:53 AM