Application Development 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: 

Include V05NZZEN

Former Member
0 Kudos

Hi,

In RV_BILLING_PRINT_VIEW, there is a call to Include V05NZZEN, where we can write our user exit code.

When I moved from 4.6 to 6.0, during upgrade, I lost this code. The include exists but there is no code in that.

Why ?

Was this include called like any other function exit ? or is that created as a modification ? I am not clear on this and why the code was lost ? any tips ?

thks

1 ACCEPTED SOLUTION

former_member555112
Active Contributor
0 Kudos

Hi,

Since you are doing an upgrade, this code will be lost. This is SAP standard process.

Any customer changes in the standard program are lost.

This is because SAP has imported the program V05NZZEN as an original in the upgrade patches.

You will need to recopy your code from your backup system.

Try to check if the program is available in SPAU list waiting to be adjusted.

Incase it is then; you will be able to recover your code from there.

Regards,

Ankur Parab

3 REPLIES 3

former_member555112
Active Contributor
0 Kudos

Hi,

Since you are doing an upgrade, this code will be lost. This is SAP standard process.

Any customer changes in the standard program are lost.

This is because SAP has imported the program V05NZZEN as an original in the upgrade patches.

You will need to recopy your code from your backup system.

Try to check if the program is available in SPAU list waiting to be adjusted.

Incase it is then; you will be able to recover your code from there.

Regards,

Ankur Parab

former_member589029
Active Contributor
0 Kudos

This is the 'old' user exit technique where SAP provides existing form routines or includes where the customer is supposed to put his own code into. However since you are changing a standard SAP object (even though you are supposed to do that) it is still a modification and therefore will be overwritten by an upgrade.

Hope that explains it,

Michael

Former Member
0 Kudos

Basis team must have used SPAU to overwrite the latest version. You can check in the version management & get the old code & reapply. DO NOT IMPORT the old version as it may remove the latest patches which SAP applied. Try to use Enhancement framework if you could while applying the changes.

Hope this helps.