Application Development 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: 

interactive ALV using OOPs

Former Member
0 Kudos

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

I355602
Advisor
Advisor
0 Kudos

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

former_member226203
Active Contributor
0 Kudos

chk this thread:

Former Member
0 Kudos

HI

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

Former Member
0 Kudos

Hi:

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

Regards

Shashi

Former Member
0 Kudos

Hi,

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

Former Member
0 Kudos

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