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

LEAVE TO LIST-PROCESSING

Former Member
0 Kudos
292

Dear All .

In the main Executable program I have called one screen by

CALL SCREEN 0200 STARTING AT 10 10.

In PAI module of screen 200 I have written following code .

LEAVE TO LIST-PROCESSING .

SET PF-STATUS SPACE .

SUPPRESS DIALOG .

WRITE : / 'ABC' .

It is leaving to list processing but the list displyed is also of same size as that of screen 200 . In the list i want ti display ALV grid . what may be the problem .

3 REPLIES 3
Read only

Former Member
0 Kudos
259

try this

LEAVE TO LIST-PROCESSING  AND RETURN TO SCREEN 0.

Read only

Former Member
0 Kudos
259

HI,

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, ...).

REGARDS,

DEEPTHI REDDY

Read only

jayanthi_jayaraman
Active Contributor
0 Kudos
259

Hi,

Just try.

set screen 0.

leave screen.