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

hi

Former Member
0 Likes
325

!)Events of interactive report?

AT LINE-SELECTION.

AT USERCOMMAND.

AT PF.

TOP-OF-PAGE DURING LINE SELECTION.

does TOP-OF-PAGE DURING LINE SELECTION also comes under interactive report?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
308

yes.... in case of secondary list , this event will get called.

2 REPLIES 2
Read only

Former Member
0 Likes
309

yes.... in case of secondary list , this event will get called.

Read only

0 Likes
308
REPORT demo_list_interactive_3 .

START-OF-SELECTION.

  WRITE  'Basic List'.

AT LINE-SELECTION.

  WRITE  'Secondary List'.

TOP-OF-PAGE DURING LINE-SELECTION.

  CASE sy-lsind.
    WHEN 1.
      WRITE 'First Secondary List'.
    WHEN 2.
      WRITE 'Second Secondary List'.
    WHEN OTHERS.
      WRITE: 'Secondary List, Level:', sy-lsind.
  ENDCASE.

  ULINE.