Dear Experts,
I have been working on the events of the table maintenance, but now I have met a problem.
How can I read the user's action, such as U - Update, I - Insert, D - Delete in the event 03 and event 05 ?
I have tried the loop in TOTAL & EXTRACT, but not worked, such as below .....
****** code like this not work *****
***** code 1 *****
loop at total.
perform total_move using total changing ls_zxsp1336_load.
if ls_zxsp1336_load-action = 'U'. " Change Constan
endif.
endloop.
********************************
***** code 2 *****
loop at extract into ls_extract.
if ls_extract-flags-vim_mark = 'U'.
endif.
endloop.
***********************************
any good suggestions?
Many thanks for your kindly help.
Julie