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: 

Dialog Module and List Processing.

Former Member
0 Kudos

Hi All,

I am having a program in which after processing I get a basic list. Using PF-STATUS of the basic list a dialog module is called using 'CALL SCREEN' which accepts date and has exectue and cancel buttons on it.

What do I do to so that user when clicks on cancel button the dialog module disapperas and the original list processing is still seen.

Thanks,

DJ

3 REPLIES 3

Former Member
0 Kudos

try using leave to screen on cancel click button

regards

navjot

reward all helpfull answers

Former Member
0 Kudos

in the fn code.

set screen 0.

leave screen.

leave to list processing.

regards

shiba dutta

Former Member
0 Kudos

Hi,

To pass control from the dialog processor to the list processor, you must include the following statement in one of the dialog modules:

LEAVE TO LIST-PROCESSING [AND RETURN TO SCREEN <nnnn>].

You can include this statement in either the PBO or the PAI event. Its effect is to start the list processor and display the basic list after the PAI processing of the current screen. The basic list contains any list output from all PBO and PAI modules that have been executed up to that point.

regads,

keerthi