2008 Nov 18 11:57 AM
Hi All,
What is Pre-exit,post-exit and overwrite-exit of a method?what are its uses?
Thanks,
Rakesh.
Hi All,
What is Pre-exit,post-exit and overwrite-exit of a method?what are its uses?
Thanks,
Rakesh.
2008 Nov 18 12:17 PM
hi..
check thees links.
http://help.sap.com/saphelp_nw2004s/helpdata/en/dc/e6ba426b81da11e10000000a155106/frameset.htm
regards,
Padma
2008 Nov 18 12:19 PM
Hi
A pre-method is called directly after the call of the existing method before the first statement. A post-method is called after the last statement of the existing method before ENDMETHOD (only if the method is exited using ENDMETHOD).
This is included for globlas class enhancements as per new enhancement framework, implicitly.
If you want your code to execute before/after a class method execution, you can use it.
Regards
Vishal Kapoor