‎2007 Oct 27 6:10 AM
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
‎2007 Oct 27 6:18 AM
Hi
just pass pf-status event in CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
I_CALLBACK_PF_STATUS_SET = ' '
it will work.
regards,
paras
‎2007 Oct 27 6:18 AM
Hi
just pass pf-status event in CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
I_CALLBACK_PF_STATUS_SET = ' '
it will work.
regards,
paras
‎2007 Oct 27 7:38 AM
Hi
use command
case sy-ucomm.
when 'BACK'.
leave program.
this will solve the issue
tc
saji