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: 

OOPS ALV GRID DISPLAY

Former Member
0 Kudos

Hai all,

I am new to oops concept.Now I have requirement to prepare ALVGRID DISPLAY using oops concept .Can any one provide me good documents .

thanks and regards,

mani.

6 REPLIES 6

Former Member
0 Kudos

Welcome to SCN.

Search the SCN before posting the question. You can field lot of threads for your question.

Former Member
0 Kudos

hi

Please Check in SDN forum ,

SAP provide standared Demo Reports for AVL OOps,

In se37 type it BCALV* and press F4 ,You will get lof of STD report and check it ..

Thanks

former_member555112
Active Contributor
0 Kudos

Hi,

Please check the following link.

[help.sap.com/printdocu/core/Print46c/EN/data/pdf/BCSRVALV/BCSRVALV.pdf]

In addition you can also view the example program

BCALV_TEST_GRID.

Regards,

Ankur Parab

Former Member
0 Kudos

Hi,

Browse the URL, where you have pdf document for OO ALV.

Browse the following URL and click

ALV Grid Control ( BC-SRV-ALE ).

http://abap-gallery.blogspot.com/2007/10/sap-and-abap-tutorials-in-pdf.html

Thanks and regards,

Venkat.

Former Member
0 Kudos

Well this is a small overview

Use screen painter (se51) .

Use the custom container.

Name the container e.g. ( alv_grd).

In abap coding u need to write the lines

container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.

al TYPE REF TO cl_gui_alv_grid

You need to initialize the container as follows.

if container not initial.

create object container

EXPORTING

container_name = 'ALV_GRD'. (As mentioned above and it should be in capital)

create object al

EXPORTING

i_parent = container.

endif.

to display table use following .

al->set_table_for_first_display

EXPORTING

it_outtab = ( internal table)

it_fieldcatalog = ( fieldcatalog table)

I355602
Advisor
Advisor
0 Kudos