‎2010 Jan 10 11:37 AM
hi ,
I used READ statement to read IN_TAB into work areaand it is working properly and i select tknum field into GV_SHIPNO workarea but I cant able to use READ statement from work area GV_SHIPNO and fill OUT_TAB value in sap script subroutines.
How to do code for this ?
‎2010 Jan 10 11:49 AM
Hi
U need to select the record having the field has to be filled:
READ TABLE OUT_TAB WITH KEY NAME = <Sapscript variable name>.
IF SY-SUBRC = 0.
OUT_TAB-VALUE = GV_SHIPNO-<FIELD>.
MODIFY OUT_TAB INDEX SY-TABIX.
ENDIF.Max
‎2010 Jan 11 5:50 AM