‎2010 Mar 22 8:58 PM
Hi,
It exists a way to get the diferents notes which has been applied in a transaction (ex. MIro)
Thanks
‎2010 Mar 23 3:57 AM
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.
‎2010 Mar 23 3:42 AM
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
‎2010 Mar 23 3:57 AM
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.