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: 

Maximun numbers of Columns in an ALV Grid

Former Member
0 Kudos

Hi,

Can some one tell me that, what is the maximun numbers of Columns (using Field Catalog) allowed in an ALV Grid.

Thanks and regards,

Pankaj Bist.

6 REPLIES 6

former_member156446
Active Contributor
0 Kudos

I dont think there is any limit.. search the forum you can find many thread on this topic..

Former Member
0 Kudos

Hi

maximum numbers of Columns in ALV is 90.

Ranga

0 Kudos

Hi Ranga,

I am using OO ALV (using method: set_table_for_first_display) and I have checked that till 130 columns are getting displayed properly.

What is the maximun limit now???

Thanks & regards,

Pankaj Bist

former_member156446
Active Contributor
0 Kudos

naimesh_patel
Active Contributor
0 Kudos

Even 130 columns are less.

In my VBAP, I have 229 columns and I am able to display all 229 columns in SE16 in Grid Display.

Regards,

Naimesh Patel

Former Member
0 Kudos

HI Pankaj,

you can add up to 233 columns and still another column you can..

Check this one..

&----


*& Report ZTEST_WAITCOND

*&

&----


*****************************************************

*****************************************************

REPORT ZTEST_WAITCOND NO STANDARD PAGE HEADING.

*****************************************************

*****************************************************

TABLES : MARA.

TYPE-POOLS : SLIS.

DATA : IT_MARA TYPE STANDARD TABLE OF MARA,

WA_MARA TYPE MARA.

SELECT * FROM MARA INTO TABLE IT_MARA UP TO 10 ROWS.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

EXPORTING

I_CALLBACK_PROGRAM = SY-CPROG

I_STRUCTURE_NAME = 'MARA'

TABLES

T_OUTTAB = IT_MARA

EXCEPTIONS

PROGRAM_ERROR = 1

OTHERS = 2.

IF SY-SUBRC <> 0.

MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.