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

SNOTE related issue

Former Member
0 Likes
2,961

Hi all,

I need to implement one of the SAP Correction Note, which prompts the message "Corrections incompletely copied; see change display" and therefore does not implement desired SAP Note.

On research, we found that the following context block is not found by SAP Note

Context block (not found in modularization unit FORM POST_A_LINE)
      write t8jvb60-budat+0(6) to l_xref.                     "554963
      perform fill_screen_field using 'BSEG-XREF2' l_xref.    "554963
*   ================================================================

While, in our SAP, the aforementioned block is as follows:

write t8jvb60-budat+0(6) to l_xref.              "554963"973718
      perform fill_screen_field using 'BSEG-XREF2' l_xref.    "554963

It is clear from the above that in our system, additional SAP Note 973718 is implemented which do not allow current SAP note to get implemented.

I tried resetting the SAP NOte 973718, but failed as its part of our Support Package, and cannot be Reset.

Any suggestion?

Regards,

Nayab

Edited by: Nayab Siddiqui on Mar 26, 2010 10:01 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,534

Hi,

When you are implementing your note, are you getting any objects with yellow traffic light?

Just when you start implement any SAP note if SAP note found all the changes automatically it gives green light to every object (Indicates "All changes has been copied" automatically).

Please let me know.

Regs,

Lokesh.

Hi all,

I need to implement one of the SAP Correction Note, which prompts the message "Corrections incompletely copied; see change display" and therefore does not implement desired SAP Note.

On research, we found that the following context block is not found by SAP Note

Context block (not found in modularization unit FORM POST_A_LINE)
      write t8jvb60-budat+0(6) to l_xref.                     "554963
      perform fill_screen_field using 'BSEG-XREF2' l_xref.    "554963
*   ================================================================

While, in our SAP, the aforementioned block is as follows:

write t8jvb60-budat+0(6) to l_xref.              "554963"973718
      perform fill_screen_field using 'BSEG-XREF2' l_xref.    "554963

It is clear from the above that in our system, additional SAP Note 973718 is implemented which do not allow current SAP note to get implemented.

I tried resetting the SAP NOte 973718, but failed as its part of our Support Package, and cannot be Reset.

Any suggestion?

Regards,

Nayab

Edited by: Nayab Siddiqui on Mar 26, 2010 10:01 AM

6 REPLIES 6
Read only

Former Member
0 Likes
1,535

Hi,

When you are implementing your note, are you getting any objects with yellow traffic light?

Just when you start implement any SAP note if SAP note found all the changes automatically it gives green light to every object (Indicates "All changes has been copied" automatically).

Please let me know.

Regs,

Lokesh.

Read only

0 Likes
1,534

Thanks Lokesh for your reply.

Yes, there are three objects which are with YELLOW light, while the last one is GREEN. I implemented the GREEN one, while YELLOW ones are outstanding.

Regards,

Nayab

Read only

0 Likes
1,534

hi

Read only

0 Likes
1,534

I think, the message didn't get posted

Read only

0 Likes
1,534

Hi,

Yellow traffic signal means SAP note is not able put the code below the contex automatically. For this you need to click on yellow delta light, and then do following:

i. After clicking on yellow signal, you will be in split editor mode. Now you can edit your source code.

ii. Check in this code (Compare with correction instruction) where the code is missing.

iii. Now put manually that missing code (Below the context as per the note)

iv. Last but imp step, click on Copy to code push button at the left top.

Now you get a scrren with delta copied with changes, Proceed with note implemetation.

Hope it will help you.

Regards,

Lokesh.

Edited by: Lokesh Tarey on Mar 26, 2010 2:06 PM

Read only

Former Member
0 Likes
1,534

Issue is resolved. Thanks!