cancel
Showing results for 
Search instead for 
Did you mean: 

Checking if different versions of a SAP Notes are implemented or not

Former Member
0 Kudos

Through snote, I had looked at the note log and below is how it looks like.

06/05 - SAP Note abcd in version 0001 downloaded

06/05 - processor had been changed

06/05 - Processing status changed to 'in processing' (version)

06/05 - User had confirmed that notes has been read

06/05 - SAP note locked in request xxxxx

06/05 - Correction instructions 0101238787 0000236566 0001 completely implemented

09/20 - SAP Note abcd in version 0002 downloaded

Now my question is shouldn't there be a text for time stamp 09/20, in the log, which says that Correction instruction 0101238787 0000236566 0002 completely implemented, if the notes had been implemeted correctly ?

I am just thinking that version 0002 is donwloaded but am wondering if it actually got implemeted or not !!!

How do I know if the notes had been implemented correctly through a technical means rather than checking the system functionality ?

Thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

If it is implemented it will show message like

1172759 Switch from Percentage <> Absolute lock my Total Level SCM-APO-FCS Finished Completely implemented

Also as mentioned by Prashant you can go in to program/class or include where correction is suggested and see weather it is implmented or not.

if it is implemented you can see the same code as it is mentioned in the note correction.

Former Member
0 Kudos

Manish

where would the message 1172759 Switch from Percentage Absolute lock my Total Level SCM-APO-FCS Finished Completely implemented will be dispalyed ? Is it in the SNOTE below the message "09/20 - SAP Note abcd in version 0002 downloaded"

I had also checked the code block using SE24 and the code implemented is same as that mentioned in the NOTE correction.

Please let me know.

Thanks

Former Member
0 Kudos

Hi ,

You can download updated versions of SAP Notes , but as log shows it is not implemented than version 0002 is not implemented in your system.

Check in version 001 and version 002 is there any correction instruction change for your SCM version ?

if you want to implement 002 version it has to go though same step as for version 001. like shown below.

06/05 - SAP Note abcd in version 0001 downloaded

06/05 - processor had been changed

06/05 - Processing status changed to 'in processing' (version)

06/05 - User had confirmed that notes has been read

06/05 - SAP note locked in request xxxxx

06/05 - Correction instructions 0101238787 0000236566 0001 completely implemented

In snote t code you go to menu >goto>sap note browser than enter your note than execute.

than you can see status in column : implemention status.

Also click on log , you will see what all has been done after note downloaded.

Manish

former_member223537
Active Contributor
0 Kudos

Hi,

Inorder to understand which transaction to execute to check the object, we have to identify the object type.

In your case, the object type is METH i.e. METHOD of a CLASS.

The class name is mentioned at extreme right in the note correction.

/SAPAPO/CL_PRJ_MAINT_SINGLE

So goto SE24 & type the above class name.

DISPLAY

Check for method /SAPAPO/CL_PRJ_MAINT_SINGLE MAP_INPUT

Double click & check the code.

Compare the code with the note correction.

Best regards,

Prashant

former_member223537
Active Contributor
0 Kudos

Hi,

Open the note in www.service.sap.com

& goto the correction instructions.

Check the technical objects which are modified by the note.

The note will provide details of which code is deleted/modified/inserted.

Then open the same object in SAP & check whether it has the changes as mentioned in the note.

This would confirm whether the changes are implemented in SAP.

Best regards,

Prashant

Former Member
0 Kudos

Thanks.

I opened the correction instruction pertaining to note 1114989 and then clicked on Object name link "/SAPAPO/CL_PRJ_MAINT_SINGLE MAP_INPUT " which opned the below code block.

Context Block

CALL METHOD cumulate_atp_header_status

EXPORTING

iv_atpcmpstat = es_input-atpcmpstat

iv_conf_quantity = es_input-conf_quantity

iv_real_quantity = es_input-real_quantity.

es_input-offset_value = is_cif_input-offset_value.

es_input-offset_relation = is_cif_input-offset_relation.

Delete Block

es_input-schedule_offset = sc_true.

Insert Block

IF os_cif_header-scheduled_in_apo = sc_true.

es_input-schedule_offset = sc_true.

ELSE.

es_input-schedule_offset = sc_false.

ENDIF.

Whats the process for opening this object ""/SAPAPO/CL_PRJ_MAINT_SINGLE MAP_INPUT" in SCM. Can I use SE38 ?

Would appreciate if you could provide me with the process of opening this object and checking the code block.

Thanks