Application Development 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: 

Regarding screen flow in MODULE POOL

Former Member
0 Kudos

Hi everyone,

my requirement is to cretae a module pool program. In between a program is submitted VIA a selection screen. That selection screen contains PUSH BUTTONS. If any push button is clicked one of the dialog screens of the module pool program should be called. Can any one tell me how can this be done.

Thanks in advance.

Regards,

Y.Gautham

1 REPLY 1

Former Member
0 Kudos

write a Module in PAI of ur screen and call which ever screen u want to call or leave.

for e.g -

PROCESS AFTER INPUT.

MODULE USER_COMMAND_0100.

module USER_COMMAND_0100 input.

case ok_code.

when 'ENTER'.

clear ok_code.

leave to screen 200.

endcase.

endmodule. " USER_COMMAND_0100 INPUT