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

problem in intecative alv

Former Member
0 Likes
459

Hi friends,

Iam facing the following problem in the intercative alv.

I have 2 lists, my probs is when i check a header data in the 2nd list and click on the delete button on the application tool bar that header data should be delated and after deleting it should take me to the 1st list automatically.

Iam able to delete that data but iam unable to navigate back to ist list.

how can i navigate to the ist list .

points will be awarded,

regards,

KUMAR.

1 ACCEPTED SOLUTION
Read only

bpawanchand
Active Contributor
0 Likes
429

Hi

after deleting the line write sy-lsind = 0

sy-lsind is a system field through which you can navigate through various lists now for the above code you will go to BASIC list if you want to go to 1st detail list make sy-lsind = 1.

Regards

Pavan

Hi friends,

Iam facing the following problem in the intercative alv.

I have 2 lists, my probs is when i check a header data in the 2nd list and click on the delete button on the application tool bar that header data should be delated and after deleting it should take me to the 1st list automatically.

Iam able to delete that data but iam unable to navigate back to ist list.

how can i navigate to the ist list .

points will be awarded,

regards,

KUMAR.

2 REPLIES 2
Read only

bpawanchand
Active Contributor
0 Likes
430

Hi

after deleting the line write sy-lsind = 0

sy-lsind is a system field through which you can navigate through various lists now for the above code you will go to BASIC list if you want to go to 1st detail list make sy-lsind = 1.

Regards

Pavan

Read only

Former Member
0 Likes
429

Hi,

Set list index to 0 after deleting the contents

sy-lsind = 0.

regards

padma