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

SAP Note and its related objects relationship table

Former Member
0 Likes
4,825

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,464

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.

3 REPLIES 3
Read only

Former Member
0 Likes
2,464

Hello Experts,

Please let me know your valuable comments on this.

Regards,

Pushkar Joshi

Read only

Former Member
0 Likes
2,465

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.

Read only

0 Likes
2,464

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