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

OOPS ALV GRID DISPLAY

Former Member
0 Likes
1,077

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.

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
Read only

Former Member
0 Likes
799

Welcome to SCN.

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

Read only

Former Member
0 Likes
799

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

Read only

Former Member
0 Likes
799

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

Read only

Former Member
0 Likes
799

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.

Read only

Former Member
0 Likes
799

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)

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
799