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

sub screen field check

former_member533538
Participant
0 Likes
650

Hi experts,i develop a dialog program with 1 main screen,3 sub screen,my requirement is as this:when user click 'quit' or 'exit' exit command,it should pop up a confirm box to let user to decide to save data or not,if user choose save,then program should trigger current sub screen PAI to check the input field value is correct or not,now i don't know how to trigger sub screen PAI after user click 'save' button in the confirm box,i call functon 'POPUP_TO_CONFIRM_STEP'' to pop up confirm box,thanks.

Hi experts,i develop a dialog program with 1 main screen,3 sub screen,my requirement is as this:when user click 'quit' or 'exit' exit command,it should pop up a confirm box to let user to decide to save data or not,if user choose save,then program should trigger current sub screen PAI to check the input field value is correct or not,now i don't know how to trigger sub screen PAI after user click 'save' button in the confirm box,i call functon 'POPUP_TO_CONFIRM_STEP'' to pop up confirm box,thanks.

2 REPLIES 2
Read only

Former Member
0 Likes
517

You can use the below statements:

when save is pressed:

call subscreen sub1 including sy-repid 'screen number'.

call subscreen sub2 including sy-repid 'screen number'.

Read only

0 Likes
517

Thanks, shambu,but how can i call subscreen dynamicly,because current subscreen is depend on user's choose,thanks