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: 

REUSE_ALV_GRID_DISPLAY Display error

Former Member
0 Kudos

Hi,

I am using REUSE_ALV_GRID_DISPLAY FM for my ALV Display.

I am able to see all the data in internal in debugging mode. but while displaying its not displaying all the records.

the data i am seeing in debugging mode in final internal table only.

This code is working fine in DEV and QA Server.But Problem only in PRD Server.

Inputs are higly rewarded

Regards

Edited by: Rasheed salman on May 8, 2010 10:30 AM

2 REPLIES 2

Former Member
0 Kudos

can u send me codes

Former Member
0 Kudos

How are u creating your fieldcatalog?

here i send u an example



IF it_fieldcat[] IS INITIAL.
*     Cargar el catálogo
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = 'ZESTRUCTURE'    "c_tabla_bd
          i_buffer_active        = 'X'
          i_bypassing_buffer     = 'X'
        CHANGING
          ct_fieldcat            = it_fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    ENDIF.

the structure name must exist on dictionary, go to se11 and create it.

I hope it helps you.

Best regards

Jon