‎2008 Apr 16 1:08 PM
Hi all,
When i change the AB delivery date using ME23N transaction. a records go to cdpos as a change changing id as U.
there is a custom program in my system which doe the AB delivery change using the idoc 'IDOC_INBOUND_ASYNCHRONOUS' and when this is done the record goes as a insert and a delete to cdpos
changing id as I and D, and there are no records in old_value or new_value.
i need the old and the new value to be displayed in a report. but since there is a problem like this i cant get it done
can anyone help me on this
nafi
‎2008 Apr 16 1:29 PM
HI,
If you are seeing the contents of CDPOS by using se11, then it may not show anything, specially for numeric values. However define a field symbol like FIELD-SYMBOLS: <fs_common>.
& then in the program
DATA: w_pp16(16) TYPE p,
Use: ASSIGN t_cdpos_value_old TO <fs_common>.
w_pp16 = <fs_common>.
Now w_pp16 will have old value.
Please note t_cdpos is an internal table wjich contains data from CDPOS & it's structure is same as CDPOS.
I hope this helps,
Regards
Raju Chitale