Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

MODIFICATION AND UPDATION IN DDIC DATA

Former Member
0 Likes
371

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 .

1 REPLY 1
Read only

Former Member
0 Likes
340

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.