‎2008 Apr 11 10:19 AM
1) I have flat file on presentation server this file has to compare
data in DDIC .
After comparing these two files(flat file data & DDIC data),
Data in DDIC has to modify and update according to flat file .
‎2008 Apr 11 10:24 AM
Hi
do one thing
upload that file into a n internal table and get the data from DDIC table into another internal table
suppose itab for DDIC and itab1 for uploaded data
after that write this logic
it will compare the data in that 2tables and move it to itab
after that by useing modfiy statment it will modify the DDIC table from that itab
loop at itab.
read table itab1 with key field1 = itab-field1.
if sy-subrc ne 0.
modify table DDIC from itab.
endif.
endloop.