‎2007 Aug 12 10:57 AM
plss tell me
1. can we do debug to field exit?
2. if we have checkbox for the field then can we do field exit for that?
plss reply
‎2007 Aug 12 11:45 AM
You cannot debug a field exit - best way to see what is happening is to temporariy issue an "E" message with debug values in it.
However, Field Exits are not supported in later versions (since 46C) - you can still use them but should try and find another way using other exit techniques instead.
Andrew
‎2007 Aug 13 12:27 PM
> You cannot debug a field exit - best way to see what
> is happening is to temporariy issue an "E" message
> with debug values in it.
You can debug nearly everything with an infinite loop.
Put the following code in the interesting section. (Only in testsystem!)
Go to transaction SM66 choose your program and click debugging. In the debugger change lv_char to anything else than 'X' and go ahead.
data: lv_char type c.
lv_char = 'X'.
WHILE lv_char = 'X'.
lv_char = 'X'.
ENDWHILE.
Points are welcome if it was useful.
Kind regards
Matthias
‎2007 Aug 13 3:46 PM