on ‎2017 Nov 16 5:59 PM
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.
Request clarification before answering.
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 .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 15 | |
| 9 | |
| 8 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.