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

Processing ALV

Former Member
0 Likes
313

Hi Friends,

I havea doubt regarding ALV's,

After the output of the ALV, using the user-command im displaying the details i.e., when a double click is made on the row using the write statement im displaying the details. Here im unable to handle the 'BACK' button. When I click 'BACK' button on the toolbar I must get back to the previous ALV displayed page.

Please help me in solving this problem.

Regards

Pradeep Goli

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
296

Hi

just pass pf-status event in CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

  • I_CALLBACK_PF_STATUS_SET = ' '

it will work.

regards,

paras

2 REPLIES 2
Read only

Former Member
0 Likes
297

Hi

just pass pf-status event in CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

  • I_CALLBACK_PF_STATUS_SET = ' '

it will work.

regards,

paras

Read only

Former Member
0 Likes
296

Hi

use command

case sy-ucomm.

when 'BACK'.

leave program.

this will solve the issue

tc

saji