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

NOTES OSS

michael_teran
Participant
0 Likes
457

Hi,

It exists a way to get the diferents notes which has been applied in a transaction (ex. MIro)

Thanks

1 ACCEPTED SOLUTION
Read only

nirajgadre
Active Contributor
0 Likes
416

Hi Michael,

1. Goto transaction SNOTE.

2. Goto SAP note browser --> in application component select the component for MIRO transaction.

I guess this will give you the list of SAP note applied for MIRO transaction.

2 REPLIES 2
Read only

Former Member
0 Likes
416

Hello Michael

It is possible to find out the programs in which OSS notes have been applied.

s_name-sign = 'E'.

s_name-option = 'CP'.

s_name-low = 'Z*'.

append s_name.

s_name-sign = 'E'.

s_name-option = 'CP'.

s_name-low = 'Y*'.

append s_name.

s_pack-sign = 'E'.

s_pack-option = 'EQ'.

s_pack-low = '$TMP'.

append s_pack.

You can find it in table SMODILOG for OBJ_TYPE = PROG ,

OBJ_NAME in s_name

AND OPERATION = 'NOTE'.

From the programs you get above you can goto table TRDIR for PGMID = R3TR , OBJECT = PROG , DEVCLASS in S_PACK AND OBJ_NAME as SMODILOG-OBJNAME (from above) to get only those programs which are not local objects.

Hope this helps.

Thanks

Shivika

Read only

nirajgadre
Active Contributor
0 Likes
417

Hi Michael,

1. Goto transaction SNOTE.

2. Goto SAP note browser --> in application component select the component for MIRO transaction.

I guess this will give you the list of SAP note applied for MIRO transaction.