‎2006 Jun 20 11:24 AM
Hello,
Can anybody Please tell me how to use
"LEAVE TO LIST-PROCESSING" in Dialog Programme.
Regards,
Rushikesh
‎2006 Jun 20 11:31 AM
Switches from "dialog processing" (module pool, screens) of the current transaction to "list processing". You can then use all the usual list layout commands (WRITE, SKIP, ...).
After leaving the current screen, the list formatted in this way is displayed implicitly or explicitly by LEAVE SCREEN. Here, all list programming options are possible, e.g. line selection, F keys, windows.
LEAVE LIST-PROCESSING continues with "Processing Before Output" (PBO) of the screen which controls the list processing.
Regards,
Wasim Ahmed
‎2006 Jun 20 11:27 AM
Where you want to switch to the LIST processing use the statement LEAVE TO LIST-PROCESSING.
After this, you have the entier report / write statements.
Regards,
Ravi
‎2006 Jun 20 11:28 AM
Hi rushikesh,
1. Normally in a module pool programming,
we cannot use WRITE statements to show some list data.
2. In that case we have to use
LEAVE TO LIST-PROCESSING.
(so that all WRITE statements are displayed on screen)
regards,
amit m.
‎2006 Jun 20 11:29 AM
‎2006 Jun 20 11:30 AM
Hi,
when you want to show the Report using write statements from the Module pool program then you have to use <b>LEAVE TO LIST-PROCESSING</b>, and you can use write statements to show the report.
Regards
vijay
‎2006 Jun 20 11:31 AM
Switches from "dialog processing" (module pool, screens) of the current transaction to "list processing". You can then use all the usual list layout commands (WRITE, SKIP, ...).
After leaving the current screen, the list formatted in this way is displayed implicitly or explicitly by LEAVE SCREEN. Here, all list programming options are possible, e.g. line selection, F keys, windows.
LEAVE LIST-PROCESSING continues with "Processing Before Output" (PBO) of the screen which controls the list processing.
Regards,
Wasim Ahmed
‎2006 Jun 20 11:32 AM
Hello ...
In module pool programming, statements like WRITE, SKIP etc. are not allowed, so in case you want to display some list, you can use LEAVE TO LIST-PROCESSING and WRITE the data. So it is used when you want to switch from "module pool" to "list processing".
You can use LEAVE LIST-PROCESSING which brings your control back to PBO of the screen.
Regards,
Richa.