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

Getting date changes in Purchase Requisition

Former Member
0 Likes
894

Hi all,

Does anybody know how to find the date of change status in purchase requisition (transaction ME53N, menu "Environment/Item changes") ?

Maybe the solution is in the "change document", but I don't know how to find this.

Thanks for your help,

BT

1 ACCEPTED SOLUTION
Read only

Former Member
844

Use the function modules:

CHANGEDOCUMENT_READ_HEADERS

CHANGEDOCUMENT_READ_POSITIONS

to read the change document info

Regards,

Ravi

5 REPLIES 5
Read only

Former Member
845

Use the function modules:

CHANGEDOCUMENT_READ_HEADERS

CHANGEDOCUMENT_READ_POSITIONS

to read the change document info

Regards,

Ravi

Read only

0 Likes
844

Thanks for your answer, but I don't see how to use this function because I'm working on table EBAN in my report, so how can I do the link with the function modules ?

Regards,

BT

Read only

0 Likes
844

Hi,

U can find the changes done in 2 table:cdhdr, cdpos.

In CDPOS table, 1)give tabname as table name ie. eban in your case,

2)give objectclas as 'BANF',

3)object id - pr no

4)fname- field name

you wil get the change details-item level.

As for header,

In CDHDR ,give 1)give objectclas as 'BANF',

2)object id - pr no

3)USERNAME- User who changed it(if known)

4)UDATE -Change Date

you wil get the change details-HEADER

Hope this solves your proble,

Viji

Read only

0 Likes
844

Hi,

U can find the changes done in 2 table:cdhdr, cdpos.

In CDPOS table, 1)give tabname as table name ie. eban in your case,

2)give objectclas as 'BANF',

3)object id - pr no

4)fname- field name

you wil get the change details-item level.

As for header,

In CDHDR ,give 1)give objectclas as 'BANF',

2)object id - pr no

3)USERNAME- User who changed it(if known)

4)UDATE -Change Date

you wil get the change details-HEADER

Hope this solves your proble,

Viji

Read only

0 Likes
844

Hi Viji and thanks for your answer which solves my problems.

Regards,

BT