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

alv grid in classes

Former Member
0 Likes
633

Hi all,

can anyone explain about the alv grid in classes and what is the difference between normal functional module and oops concept.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
572

hi

good

pls check the following procedure.

1-go to se38

2-enter BCALV*

3-press F4

and check these reports

BCALV_DND_03 Drag&Drop on Cells of the Grid

BCALV_DND_04 Drag&Drop Within an ALV Grid Control

thanks

mrutyun^

hi

good

pls check the following procedure.

1-go to se38

2-enter BCALV*

3-press F4

and check these reports

BCALV_DND_03 Drag&Drop on Cells of the Grid

BCALV_DND_04 Drag&Drop Within an ALV Grid Control

thanks

mrutyun^

3 REPLIES 3
Read only

Former Member
0 Likes
573

hi

good

pls check the following procedure.

1-go to se38

2-enter BCALV*

3-press F4

and check these reports

BCALV_DND_03 Drag&Drop on Cells of the Grid

BCALV_DND_04 Drag&Drop Within an ALV Grid Control

thanks

mrutyun^

Read only

Former Member
0 Likes
572

Hi,

Both r same

for the classes we have to create instance and objects for the class

for example.


  data:
    g_grid type ref to cl_custom_container,
    g_alv type ref to cl_alv_grid.
create object g_grid
  exporting 
     container = 'main'.
create object g_alv
   exporting
      grid = g_grid.
call method g_alv->set_table_for_first_display.
  changing 
   tables 
    output  = 'outputable'.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Jan 29, 2008 12:06 PM

Read only

Former Member
0 Likes
572

Hi,

Please refer to the link below :

http://www.saptechnical.com/Tutorials/OOPS/MainPage.htm

Thanks,

Sriram Ponna.