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

list processing issue

Former Member
0 Likes
455

Hi,

in ALV output i have a field named file name, if i click this field it is going to list display and displaying file informaion and if i click back button it is not coming back to alv output instead it is going to selection-screen.

in the program to display the file info i have used LEAVE LIST PROCESSING command and after that i have write statement to display file info...

after displaying the file info if i want to come back to alv output what code i have to use... it is urget... plz reply me...

3 REPLIES 3
Read only

Former Member
0 Likes
428

Hi,

u can use

LEAVE TO LIST-PROCESSING.

Addition:

... AND RETURN TO SCREEN scr.

Effect

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.

Note

After switching to list processing mode with SET PF-STATUS ..., you are recommended to define a GUI (Graphical User Interface) of type List or List in dialog box.

Please consult Data Area and Modularization Unit Organization documentation as well.

Addition

... AND RETURN TO SCREEN scr.

Effect

LEAVE LIST-PROCESSING continues with "Processing Before Output" (PBO) of the screen scr.

Note

Using LEAVE LIST-PROCESSING to leave list processing explicitly is only necessary in exceptional cases; normally, the standard F keys ( F3=Back and F15=Exit) are sufficient.

reward if helpful

Read only

Former Member
0 Likes
428

try SET SCREEN 0.

REWARD IF USEFUL

SAMEER

Read only

Former Member
0 Likes
428

hi Bhushan,

Replace LEAVE LIST PROCESSING command with LEAVE SCREEN command

followed by SET SCREEN 0.

Reward points if useful

Chandra