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 ALV

former_member745780
Active Participant
0 Likes
452

Hi all,

My problem is that I have an editable column in alv grid i want to display a popup when user click on back button on gui status after edit or modify any cell of that column.Plz let me now what should be the solution.

Cheers

Anirudh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
436

Before passing the output table to the display method, copy the contents to a temporary internal table with the same structure as of output table.

After the user action, copy the changes in the grid to your output table.

Loop At outtab.

Read table Temp index sy-tabix.

If outtab-F1 <> Temp-F1.

Message ..

EndIf.

EndLoop.

Hi all,

My problem is that I have an editable column in alv grid i want to display a popup when user click on back button on gui status after edit or modify any cell of that column.Plz let me now what should be the solution.

Cheers

Anirudh

2 REPLIES 2
Read only

Former Member
0 Likes
437

Before passing the output table to the display method, copy the contents to a temporary internal table with the same structure as of output table.

After the user action, copy the changes in the grid to your output table.

Loop At outtab.

Read table Temp index sy-tabix.

If outtab-F1 <> Temp-F1.

Message ..

EndIf.

EndLoop.

Read only

0 Likes
436

Hi Sudhir,

Thanks for ur reply but i m not able to get update outtab at PAI .

Is there any solution to get update outtab at PAI.My main probs is that when user modify the cell and after that click on back button if the cell is changed then popup will come.