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

interactive ALV using OOPs

Former Member
0 Likes
1,076

Hi,

I want create an ALV report in which when i will double click on record will drill down the report.

I know interactive ALV report using function module. but now i want to create it using OOPs concept. Please guidme

thanks and regrds

abhishek

6 REPLIES 6
Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
798

Hi,

Refer wiki:-

Interactive Editable OO ALV grid with dynamic itab,FCAT and ENTER key event trigger

https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/interactive%252beditable%252boo%252balv%252b...

Hope this helps you.

Regards,

Tarun

Read only

Former Member
0 Likes
798

chk this thread:

Read only

Former Member
0 Likes
798

HI

Refer to [>> Interactive alv report using hotspot event |https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/interactivealvreportusinghotspot+event]

Read only

Former Member
0 Likes
798

Hi:

have a look at s a p t e c h n i c a l . c o m ->Tutorials->ALV

Regards

Shashi

Read only

Former Member
0 Likes
798

Hi,

Go to SE38 and put BCALVDEMO in the program and press F4 help you will get list of all ALV OOPs program .

Read only

Former Member
0 Likes
798

methods: double_click for event double_click of cl_gui_alv_grid

importing e_row e_column es_row_no

method double_click.

  • message s400(00) with 'documents' e_row. "#EC *

data : wa_display like line of lt_display.

if e_column = 'BELNR'.

read table lt_display index e_row into wa_display.

if sy-subrc = 0.

set parameter id 'BLN' field wa_display-belnr.

set parameter id 'BUK' field wa_display-bukrs.

set parameter id 'GJR' field wa_display-gjahr.

call transaction 'FB03' and skip first screen.

endif.

endif.

endmethod.

see this may help u.

Regards