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

reports

Former Member
0 Likes
427

In interactive report,if we want to come back to basic list directly from the 4 th or 15 th secondary list...what we have to do?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
401

use <b>sy-lsind.[/b

write: / sy-lsind.

start-of-selection.

SET PF-STATUS 'TEST1'.

AT USER-COMMAND.

If sy-ucomm = 'DISPLAY'.

write: / sy-lsind.

endif.

IF SY-UCOMM = 'EXIT'.

if sy-lsind > 1.

SY-LSIND = 0.

endif.

endif.

In interactive report,if we want to come back to basic list directly from the 4 th or 15 th secondary list...what we have to do?

2 REPLIES 2
Read only

Former Member
0 Likes
401

Set SY-LSIND = 0

Read only

Former Member
0 Likes
402

use <b>sy-lsind.[/b

write: / sy-lsind.

start-of-selection.

SET PF-STATUS 'TEST1'.

AT USER-COMMAND.

If sy-ucomm = 'DISPLAY'.

write: / sy-lsind.

endif.

IF SY-UCOMM = 'EXIT'.

if sy-lsind > 1.

SY-LSIND = 0.

endif.

endif.