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: 

Obsolete customer transaction

Former Member
0 Kudos
257

When I try to launch t-code CV03, I found pop-up message as below.

Note:

This transaction has been changed.

Use transaction CV03N instead.

I'd like to know, How can I do like this with customer program ?

I have some obsolete customer program (not standard program) and I would like to show suggestion message when user try to launch the obsolete customer program.

Note, I wouldn't to modify customer program if it possible.

Thank you for all suggestion.

5 REPLIES 5

Former Member
0 Kudos
133

Hello,

Do you mean that a z program is there which should show a popup when launched?

If so simply write the code for popup message (using Fm POPUO_TO_INFORM or any other) in the initialization event of the program.

Regards,

Sachin

0 Kudos
133

@Sachin,

Yes, I mean the z program but I wouldn't like to modify the z program.

@Harsh,

Thank you for your suggestion. I don't have knowledge about enhancement before. Do you have the example or tutorial to learning enhancement ?

Thank you all for your answer.

0 Kudos
133

Please check this link

http://wiki.sdn.sap.com/wiki/display/ABAP/HowToDoImplicitEnhancement

0 Kudos
133

Enhancement Framework is the new paradigm to bring all enhancement techniques under one roof.different enhancement technologies available are

u2022 Source Code Enhancement

u2022 Function Group Enhancement

u2022 Class Enhancement

u2022 Kernel-BADI Enhancement

Further, there are two types of Source Code enhancements possible.

u2022 Implicit enhancement option

u2022 Explicit enhancement option

the implicit options are:

u2022 At the end of all the programs (Includes, Reports, Function pool, Module pool, etc.), after the last statement

u2022 At the beginning and end of all FORM subroutines

u2022 At the end of all Function Modules

u2022 At the end of all visibility areas (public, protected and private) of local class

Check this link .

http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/2342e1f3-0b01-0010-a186-fdd404884050&prtmo... [original link is broken]

Former Member
0 Kudos
133

As per my undertsanding , by implicit enhancement this is possible. You can check put a check during starting of logic and display the message.

Hope you get it .