2007 Jun 27 8:53 PM
I have a field catlog internal table g_fieldcat without header line and i need to modify field content where SELTEXT_L = 'NAME1' to SELTEXT_L = 'Vendor Name''. Kindly help me
2007 Jun 27 8:57 PM
2007 Jun 27 8:55 PM
you can use field symbols.
field-symbols : <fs> like line of g_fieldcat.
LOOP AT G_FIELDCAT assigning <FS>.
<FS>-SELTEXT_L = 'Vendor Name'.
ENDLOOP.
You can give condition for particular field in the loop.
for example,
IF <FS>-fieldname = 'FIELD1'.
endif.
2007 Jun 27 8:57 PM
2007 Jun 27 9:05 PM
2007 Jul 19 6:39 AM
Hi Rich,
For me also same problem came, I have resolved it using your solution. Thanks very much.
Regards,
Mahesh