‎2007 Jul 20 7:32 PM
i kept a break point in a user exit with the statement
BREAK-POINT.
but the control is not stopping there , i am not testing it so didnt give it as user specific . what might be the mistake ? is it not the proper user exit , i have created a project and activated it . i have activated include and all .
‎2007 Jul 20 8:55 PM
to check wheather thats the right exit. you can put a break point in the function module that has the ZX include and check if the control goes there.
if the control goes there then thats the right exit.
Thanks.
‎2007 Jul 20 7:36 PM
hi Deepthi,
Try keeping a soft break point .... and also look whether it is passing through all the conditions to reach this break point ..
Regards,
Santosh
‎2007 Jul 20 7:40 PM
Hi,
Please try this.
BREAK <your user ID logon>.
and also perhaps the user exits does not get called due to some condition does not meet.
Regards,
Ferry Lianto
‎2007 Jul 20 7:52 PM
Hi,
The userexit which ur testing may not be right exit,thats why its not stopping there.So try to put some more breakpoints before the userexit and check if the control stops at those breakpoints.Also check if any conditions are there before the userexit call.
Regards,
nagaraj
‎2007 Jul 20 8:55 PM
to check wheather thats the right exit. you can put a break point in the function module that has the ZX include and check if the control goes there.
if the control goes there then thats the right exit.
Thanks.
‎2007 Jul 21 5:37 AM
Hi,
When you start transation in which you have put a break point, start debugging on(\h). add break-point at statement CALL CUSTOMER-FUNCTION.
keep on pressing F7. You may reach to your exit if it come in way of executing you process.
Could you mention for which functionality you have created using user exit, it will more easy to provde help.
Regards,
Amit R.
‎2007 Jul 21 6:01 AM
Hi Deepthi,
there are 2 possibilities for not triggering the breakpoint in the userexit.
1. that exit may not be suitable for that transaction from where you are running
2. you should not put break-point. you should write: break <userid (SAPLOGON)>
Thanks,
Murali
‎2007 Aug 01 5:49 PM
I got it corrected , its an user exit in SCM called from R/3 so lot of issues in that and got it solved.