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

oop alv with out using Continer

Former Member
0 Likes
749

hi ,

i am looking for the code of OOP ALV without using Module pool and costamcontainer.

plase help me for the same.

thanks

ankita

hi ,

i am looking for the code of OOP ALV without using Module pool and costamcontainer.

plase help me for the same.

thanks

ankita

5 REPLIES 5
Read only

Former Member
0 Likes
727

HI,

use class CL_GUI_DOCKING_CONTAINER

Refer to this link..
http://www.abapprogramming.net/2007/11/alv-list-using-oo-style-sample-code.html

Read only

Former Member
0 Likes
727

Hi

It's not possible, u can only use the ALV function REUSE_ALV_GRID_DISPLAY or REUSE_ALV_GRID_DISPLAY_LVC, in this way the module pool is managed into function, and so u don't need to create one.

Max

Read only

0 Likes
727

hi ,

thanks for rply .

actully i m usinge logical database PNPCE form that i m taking data form internal table

and i am using factory methord for populatin that but the field which are started with y it is not taking data for them.

bilow code in m using for the same

CL_SALV_TABLE=>FACTORY( IMPORTING R_SALV_TABLE = GR_TABLE CHANGING T_TABLE = GT_TABLES ).

GR_FUNCTIONS = GR_TABLE->GET_FUNCTIONS( ).

GR_FUNCTIONS->SET_ALL( ABAP_TRUE ).

GR_TABLE->DISPLAY( ).

Read only

Former Member
0 Likes
727

Not Posssible.

Read only

Former Member
0 Likes
727

Hi Ankita,

You can refer the demo program 'SALV_DEMO_TABLE_COLUMNS'. In this program refer the code for the radio button 'Output as Fullscreen Grid'. Here the class used is 'Cl_SALV_TABLE'

Regards,

Nikhil Kayal