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

itabd

Former Member
0 Likes
494

hi guys

need urjent help

d) Set the update indicator in it_marc for all components so that we could update the custom table later on: Set it-marc-upd = “X” for all records in it_child matching it_marc on matnr and werks if it-marc-upd = “ “. Clear it_child.

thanxs

2 REPLIES 2
Read only

Vinod_Chandran
Active Contributor
0 Likes
458

Your question is not clear. Please explain.

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
458

Your requirement is not really clear, but....



Loop at it_child.

read table it_marc with key matnr = it_child-matnr
                            werks = it_child-werks.
if sy-subrc = 0.
it_marc-upd = 'X'.
modify it_marc.
endif.

endloop.


Regards,

Rich Heilman