‎2007 Aug 22 10:06 PM
Hi experts,
I got a task to read data from a flat file and modify the schedule end date i.e. afko-gltrs according the data of the text file. I am new to ABAP and this is close to deadline.Please help me asap.
regards.
‎2007 Aug 22 10:12 PM
Create an internal table with the fields that are on your flat file...
If your file is like...
001TEST20070822
Your internal table should look like this...
TYPES: BEGIN OF TY_TABLE,
CODE(3) TYPE C,
NAME(4) TYPE C,
DATE TYPE SY-DATUM,
END OF TY_TABLE.
DATA: T_TABLE TYPE STANDARD TABLE OF TY_TABLE.
Use <b>GUI_UPLOAD</b> to load the file into your internal table.
Loop the IT...
LOOP AT T_TABLE.
*Do the updates...
ENDLOOP.
Greetings,
Blag.
‎2007 Aug 22 10:50 PM
‎2007 Aug 30 6:55 PM