cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Who and when defined/changed an AltUoM

Former Member
0 Likes
334

Dear SAP experts,

I'm interested in knowing if there's a report/tcode for extracting who defined/changed an alternate unit of measure for a predefined list of material master records.

Thanks a lot in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

mpr_sp
Explorer
0 Likes

Hi,

I don't know a standard report but it can be created using tables CDHDR and CDPOS.

- You can start with CDPOS and inform CDPOS-OBJECTCLAS = 'MATERIAL' ; OBJECTID = <Material> ; TABNAME = 'DMARM' ,

so it will be returned CDPOS-CHANGNR that you can use to get user and date that material was changed into table CDHDR like this:

Inform CDHDR-OBJECTCLAS ='MATERIAL' ; OBJECTID = <Material> and CHANGENR = <CDPOS-CHANGNR> and so you will have as Return CDHDR-USERNAME ; CDHDR-UDATE and CDHDR-CHANGE_IND ( U or I ).

As further information you can get on CDPOS-TABKEY ; CDPOS-FNAME ( Field that was changed ) and CDPOS-VALUE_NEW and VALUE_OLD .

Ask a Question