2009 Nov 26 5:21 AM
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.
2009 Nov 26 5:25 AM
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
2009 Nov 26 6:22 AM
@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.
2009 Nov 26 7:59 AM
2009 Nov 26 8:02 AM
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]
2009 Nov 26 5:52 AM
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 .