cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Old value of SRM PO

Former Member
0 Kudos

Hi,

We would like to capture all the changes made to SRM PO (s) over a period of time and put them into some report in SRM 7.0 .. Can you please advice how could i find the changes in PO, if i have in my selection screen only the PO type & Dates.

Any FM to retrieve the changes would help

Thanks!

Accepted Solutions (0)

Answers (1)

Answers (1)

summer_wang
Contributor
0 Kudos

To find out PO changed in a period , please check the transaction BBP_PO_LIST:

" Changed At 11.10.2017 to 12.11.2017" for example.

To list what change was made to the PO . Please go to BBP_PD => change document.

This is coded in Include BBP_PD_F01


**********

CALL FUNCTION 'BBP_CHANGE_DOC_GET_NEW'
EXPORTING
iv_header_guid = g_header_guid
iv_with_versions = space
IMPORTING
et_change_documents = gt_cdred
EXCEPTIONS
OTHERS = 1.

****************