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

cdops records issue

Former Member
0 Likes
428

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

1 REPLY 1
Read only

Former Member
0 Likes
368

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