cancel
Showing results for 
Search instead for 
Did you mean: 

List of POs with subsequent changes

Former Member
0 Kudos

Hai Gurus,

Need to track the changes done on POs after saving the original. Can display individually by selecting header changes / item changes from the header menu.

Is there a report to get the chages for list of POs?

Regds,

NalindaR

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

you need to develop a customized report for those changes.

all changes related to Puchasing document types can be read through the below function module. for that you need to pass teh purchasing document number.

CALL FUNCTION 'ME_CHANGEDOC_READ2'

EXPORTING

I_DOCUMENT_CATEGORY = WA_EKKO-BSTYP

I_DOCUMENT_NUMBER = WA_EKKO-EBELN

I_ALL_ITEMS = 'X'

TABLES

T_AUSG = I_CDPOS.

Thanks

Raheem

Answers (3)

Answers (3)

Former Member
0 Kudos

Dear All,

Thanks for the valuable comments.

NalindaR

former_member581212
Active Contributor
0 Kudos

hi,

There are two tables to track the header and item changes differenctly in the PO:

See the table CDPOS (Change in doc item) and CDHRD(change in doc header) in the table SE16.....

Also, the std reports are ME2L, ME2N...etc.....

Hope it helps...

Regards

Priyanka.P

Former Member
0 Kudos

you can use the report ME2L or ME2M for item change display

please enter scope of list is ALLES

for header change you have to sccess through the tables becuse there is not such report for this

to get the data

go to se16 and enter the CDPOS table and in the object value enter the PO number and execute.or get the document number from the PO and enter in CDPOS as doc number and execute.