cancel
Showing results for 
Search instead for 
Did you mean: 

Changing ALV list field name

Former Member
0 Kudos

Hi

In webdynpro application the ALV list display the field name which is in table description i want to put my preferable field name. Do u all have any idea how is it possible

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Dhiraj,

Checkout this thread I guess this covers what you want.

Regards,

Anoop

Former Member
0 Kudos

Hello,

U could bult the fildcatalog like this:


* Sales Order Number
  CLEAR L_FIELDCAT.
  L_FIELDCAT-TABNAME   = 'G_T_OUTTAB'.
  L_FIELDCAT-FIELDNAME = 'VBELN'.
  L_FIELDCAT-SELTEXT_M = TEXT-002.  " Ur own text
  L_FIELDCAT-COL_POS   = 1.
  L_FIELDCAT-KEY = 'X'.
  APPEND L_FIELDCAT TO IT_FIELDCAT.
  CLEAR  L_FIELDCAT.

If useful reward.

Vasanth