abap - How to suppress to perform a webdynpro-method from the pre-exit -
i want check condition in pre exit method, if condition false have come out of method, without calling original method.
as far know cannot. however, have options:
- check original method , see if there variable can set in pre-exit logic in method not processed;
- use implicit enhancement @ top of method want skip, put code here planning put in pre-exit;
- use overwrite-exit call original method using
me->method( )
whenever want call it. if remember correctly have create overwrite option have access global vars.
Comments
Post a Comment