Hi,
I have two screens 1000 & 2000.
I have given execute button ('STRT') in screen 1000.
Once exectued, it is going to screen 2000.
When iam coming back to 2000 to 1000 & execute again(in 1000 screen)...it is not working(not going to screen 2000).That means it is working only one time...
What i have to do to execute always...
points guarnateed
kaki
Try to Debug and check .
Try to Handle BACk properly and Clear the OK-codes set the PF_status differently.
and fcodes too..
Regards
Vijay.
Hi Kaki,
Can we have the code please...:)
Regards,
Ravi
HI,
In every screen you have to set pf-status,
and handle back and exit in module user_command
when you use
call screen 2000
in screen 2000 you have to use leave to screen 1000, this will destroy 2000 screen and goes to 1000.
so check what you r using
leave to screen 1000
or
call screen 2000.
just to come back to previous screen you also other option
just say
leave to screen 0.
Add a comment