‎2013 Sep 04 6:21 AM
Hello Experts,
I have a requirement, where I will be providing SAP note to the input screen and based on SAP note number entered it should get the list of objects that are going to be modified/added by SAP note. Prerequisit for this is that note should be downloaded to the R/3 system. You can view the downloaded notes using SNOTE.
Basically we are developiing a program to check the consistency of the objects between Dev->Test->Production system before any note is implemented. I have checked the various SAP table for this info but no success.
Below are the some of the Notes realted tables but it does not show the objects list. Please let me know if any one have any idea regarding this.
CWBNTCI
CWBNTHEAD
CWBNTDATA
Thanks & Regards,
Pushkar Joshi
‎2013 Sep 04 9:48 AM
Put a breakpoint in FM SCWB_CINST_READ, and then display note using SNOTE transaction.
In one of the calls, you would get object list in AS_CORR_INSTRUCTION-OBJECT_LIST.
Idea is to get correction instruction from SAP note, populate correction key in AS_CORR_INSTRUCTION, and call the FM with IV_READ_OBJECT_LIST = 'X' to get object list.
‎2013 Sep 04 9:20 AM
Hello Experts,
Please let me know your valuable comments on this.
Regards,
Pushkar Joshi
‎2013 Sep 04 9:48 AM
Put a breakpoint in FM SCWB_CINST_READ, and then display note using SNOTE transaction.
In one of the calls, you would get object list in AS_CORR_INSTRUCTION-OBJECT_LIST.
Idea is to get correction instruction from SAP note, populate correction key in AS_CORR_INSTRUCTION, and call the FM with IV_READ_OBJECT_LIST = 'X' to get object list.
‎2013 Sep 05 5:12 AM
Hi Manish,
Thank you very much for your help.
I was able to find the table which stores objects list for SAP note using above method.
It is stored in table CWBCIOBJ.
Regards,
Pushkar Joshi