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

Regarding Interactive Reporting

shadow
Participant
0 Likes
449

HI ,

I have one Doubt in Interactive reporting ( I am in 15th interactive list , how we can navigate form 15th interactive list to 5th interactive list ) means if i click a perticular field in 15th interactive list it navigate to 5th interactive list .

Which logic i have to use for this .

Regards,

SHAIK.

4 REPLIES 4
Read only

venkat_o
Active Contributor
0 Likes
406

Hi Try this way.


AT LINE-SELECTION.
  CASE SY-LSIND.
    WHEN 15.
      SY-LSIND = 5.
  ENDCASE.
Thanks venkat.O

Read only

Former Member
0 Likes
406

Hi,

When sy-lsind = 15, Use the AT LINE-SELECTION event and set sy-lsind = 5. This will take you to the 5th list from the 15th list

Regards,

Vikranth

Read only

Former Member
0 Likes
406

Hi Shaik,

USe this.

AT LINE-SELECTION.

CASE SY-LSIND.

WHEN 15.

SY-LSIND = 5.

WHEN OTHERS

ENDCASE.

Regards,

Vijay

Read only

Former Member
0 Likes
406

Hi SHAIK JAILABDIN ,

You are in 15th list, going to click a row.

you have created a list using a loop at it.

at line selection will trigger,

if sy-lsind = 15 and ' selected line from it'.

sy-lsind = 5.

endif.

instead of case...endcase

try using seperate if...endif. for each list