Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

debug field exit

Former Member
0 Likes
597

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

3 REPLIES 3
Read only

Former Member
0 Likes
538

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

Read only

0 Likes
538

> 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

Read only

Former Member
0 Likes
538

hi

good

go through this link

http://www.erpgenie.com/abap/fieldexits.htm

thanks

mrutyun^