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

ALV report

Former Member
0 Likes
463

hi all,

how can we handle back in a interactive ALV report .. please tell me

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
444

Hi

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

  • I_CALLBACK_PF_STATUS_SET = ' '

it will work.

regards,

paras

Hi

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

  • I_CALLBACK_PF_STATUS_SET = ' '

it will work.

regards,

paras

3 REPLIES 3
Read only

Former Member
0 Likes
444

In PAI just include

&----


*& Module mod_user_command_0100 INPUT

MODULE mod_user_command_9000 INPUT.

CASE sy-ucomm .

WHEN 'BACK' OR 'EXIT'.

CALL METHOD go_container->free.

LEAVE TO SCREEN 0.

ENDCASE.

ENDMODULE. " mod_user_command_9000 INPUT

Check the following link for ALV Block List

http://www.sap-basis-abap.com/abap/sample-program-on-block-lists.htm

Check the following link for ALV Hierarchial

http://www.sap-img.com/abap/how-to-use-alv-for-hierarchical-lists.htm

Rewards if useful.....

Minal Nampalliwar

Read only

Former Member
0 Likes
445

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

0 Likes
444

HI

HOW TO PASS PF STATUS.. PLS GIVE IN DETAIL . IF POSSIBLE GIVE AN EXAMPLE