‎2008 Jun 12 6:00 AM
Hi , can anyone send me the links to generate the ALV using ABAP Objects.
‎2008 Jun 12 6:03 AM
hi,
check these links.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf
http://help.sap.com/saphelp_nw2004s/helpdata/en/5e/88d440e14f8431e10000000a1550b0/frameset.htm
http://sgstocks.tripod.com/alvgrid_control.htm
http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
http://esnips.com/doc/b708766f-a934-42a1-8064-c4de75b48fc4/Sample-Program-of-alv-using-oops.ppt
http://esnips.com/doc/2d953590-e8c5-490c-a607-d1ab7cf517d7/ALV.pdf
reward points if hlpful.
‎2008 Jun 12 6:03 AM
hi,
check these links.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf
http://help.sap.com/saphelp_nw2004s/helpdata/en/5e/88d440e14f8431e10000000a1550b0/frameset.htm
http://sgstocks.tripod.com/alvgrid_control.htm
http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
http://esnips.com/doc/b708766f-a934-42a1-8064-c4de75b48fc4/Sample-Program-of-alv-using-oops.ppt
http://esnips.com/doc/2d953590-e8c5-490c-a607-d1ab7cf517d7/ALV.pdf
reward points if hlpful.
‎2008 Jun 12 6:06 AM
Hi manjunatha,
DATA: go_grid1
TYPE REF TO cl_gui_alv_grid,
go_grid2
TYPE REF TO cl_gui_alv_grid,
go_container1
TYPE REF TO cl_gui_custom_container,
go_container2
TYPE REF TO cl_gui_custom_container.
Function module for screen 1:
IF go_container1 IS INITIAL.
CREATE OBJECT go_container1
EXPORTING container_name = 'CONTAINER_T'.
CREATE OBJECT go_grid1
EXPORTING i_parent = go_container1.
ENDIF.
Function module for screen 3:
IF go_container2 IS INITIAL.
CREATE OBJECT go_container2
EXPORTING container_name = 'CONTAINER_C'.
CREATE OBJECT go_grid2
EXPORTING i_parent = go_container2.
ENDIF.
se these threads for alv using objects//
thanks
karthik