on 2020 Jul 02 12:23 PM
Hi
Is there any way to change the Material value while this report is comparing?
In my scenario, APO has Material value in the format ABCD#123 while R3 has it as ABCD
Please let know how I can enable proper comparison. Urgent , Please help
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
Hello,
You can use BAdi /SAPAPO/SDRQCR21_APO.
Or BAdi /SAPAPO/CIF_DELTA3 method ~RELEVANT_FOR_COMPARE_R3_SLS to convert_master_data. We has used same to convert backward-slash and forward-slash materials.
Best Regards,
R.Brahmankar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Have you implemented SAP note 2351441 - /SAPAPO/SDRQCR21: incomplete selection based on product and/or location criteria??
Best Regards,
R.Brahmankar
Hello,
And here is code of BADI : /SAPAPO/CIF_DELTA3 Method: CONVERT_MASTER_DATA
method /SAPAPO/IF_EX_CIF_DELTA3~CONVERT_MASTER_DATA_APO.
data l_CT_EXT_MATNR type /SAPAPO/EXT_MATNR_STR.
loop at CT_EXT_MATNR into l_CT_EXT_MATNR where EXT_MATNR cs '\'.
translate l_CT_EXT_MATNR-EXT_MATNR using '\/'.
modify CT_EXT_MATNR from l_CT_EXT_MATNR.
endloop.
Best Regards,
R.Brahmankar
User | Count |
---|---|
10 | |
5 | |
4 | |
4 | |
3 | |
2 | |
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.