Hi,
In an ALV report output, I have a field with heading as "Output quantity". When the cursor is moved on that field it is showing as Output quantity. I want it to be displayed as "Total Quantity"
How can we achieve this?
Please see the code below.
WA_FIELDCAT-COL_POS = 1.
WA_FIELDCAT-REF_TABNAME = 'MARD'.
WA_FIELDCAT-TABNAME = 'GT_FINAL'.
WA_FIELDCAT-FIELDNAME = 'VMEIN'.
WA_FIELDCAT-ref_fieldname = 'LABST'.
WA_FIELDCAT-seltext_l = Output quantity'(005).
WA_FIELDCAT-DATATYPE = 'QUAN'.
APPEND WA_FIELDCAT TO ITAB_FIELDCAT.
Thanks,
Kumar