<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic debug field exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683164#M620392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plss tell me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. can we do debug to field exit?&lt;/P&gt;&lt;P&gt;2. if we have checkbox for the field then can we do field exit for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plss reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Aug 2007 09:57:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-12T09:57:48Z</dc:date>
    <item>
      <title>debug field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683164#M620392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plss tell me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. can we do debug to field exit?&lt;/P&gt;&lt;P&gt;2. if we have checkbox for the field then can we do field exit for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plss reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2007 09:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683164#M620392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-12T09:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: debug field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683165#M620393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2007 10:45:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683165#M620393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-12T10:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: debug field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683166#M620394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; You cannot debug a field exit - best way to see what&lt;/P&gt;&lt;P&gt;&amp;gt; is happening is to temporariy issue an "E" message&lt;/P&gt;&lt;P&gt;&amp;gt; with debug values in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can debug nearly everything with an infinite loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put the following code in the interesting section. (Only in testsystem!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction SM66 choose your program and click debugging. In the debugger change lv_char to anything else than 'X' and go ahead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: lv_char type c.
    lv_char = 'X'.

WHILE lv_char = 'X'.
    lv_char = 'X'.
ENDWHILE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points are welcome if it was useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 11:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683166#M620394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T11:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: debug field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683167#M620395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/fieldexits.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/fieldexits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 14:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debug-field-exit/m-p/2683167#M620395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T14:46:03Z</dc:date>
    </item>
  </channel>
</rss>

