<?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 Re: User exit not triggering in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743211#M1949745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can not set break-point. Maybe this code part will not be executed.&lt;/P&gt;&lt;P&gt;Try to&amp;nbsp; use &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;X398&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;00&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Then you can use T-CODE ST22 to trace the value in &amp;amp; and check whether it really executed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jun 2016 06:41:25 GMT</pubDate>
    <dc:creator>former_member192023</dc:creator>
    <dc:date>2016-06-03T06:41:25Z</dc:date>
    <item>
      <title>User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743204#M1949738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to Modify the BASIC IDOC SHPMNT05 with message type Z**, before it is sent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this, I found a enhancement V55K0020 which calls the FM EXIT_SAPLV55K_020&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a Z project in CMOD and assign the enhancement &amp;amp; component etc and activated the project &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to test this, I put break point in code and FM and trigger the idoc via VT02N change - go to output &amp;amp; repeat output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IDOC is getting generated but it is not stopping at CMOD or Break point.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any idea how to handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2016 19:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743204#M1949738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-01T19:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743205#M1949739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for function group XTRK has application type 'S' try to debug with option SYSTEM DEBUGGING is on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the break-point is reached (although no system debugging is on) there should be an entry in the system log (tcode SM21). If you have no rights for system debugging, you can pass values thru break-points:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;BREAK-POINT idoc_data-docnum.&lt;/LI&gt;&lt;LI&gt;BREAK-POINT idoc_data-segnam.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see those valued in SM21 then (if the userexit works fine).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 05:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743205#M1949739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T05:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743206#M1949740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply. Can you help me in setting system debugging for this FM EXIT_SAPLV55K_020&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) Go to main program SAPLXTRK&lt;/P&gt;&lt;P&gt;(2) Type /hs for system debugging&lt;/P&gt;&lt;P&gt;(3) Run the T code VT02N-&amp;gt; Output-&amp;gt; Repeat output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Idoc is getting triggered but it is not stopping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see in SM21 log that entry is made for debugging, but i want code to stop inside the user exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 13:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743206#M1949740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T13:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743207#M1949741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check from the below aspect as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://scn.sap.com/thread/3394029" title="https://scn.sap.com/thread/3394029"&gt;User exit with CMOD | SCN&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 13:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743207#M1949741</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2016-06-02T13:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743208#M1949742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the info.. Also i am looking for info on activating system debugging.. I looked and followed the steps ( listed above) with no success.. Any help on this is appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 13:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743208#M1949742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T13:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743209#M1949743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the code in exit and need to test this.. Please advice how to activate system debugging from T code VT02N to call this user exit..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thxs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2016 18:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743209#M1949743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-02T18:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743210#M1949744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know, if you can see the system debugging option, if you are not allowed to use it. Please check the break-point solution as described above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 04:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743210#M1949744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-06-03T04:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: User exit not triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743211#M1949745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can not set break-point. Maybe this code part will not be executed.&lt;/P&gt;&lt;P&gt;Try to&amp;nbsp; use &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;X398&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;00&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;' &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'&amp;amp;'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Then you can use T-CODE ST22 to trace the value in &amp;amp; and check whether it really executed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 06:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-not-triggering/m-p/11743211#M1949745</guid>
      <dc:creator>former_member192023</dc:creator>
      <dc:date>2016-06-03T06:41:25Z</dc:date>
    </item>
  </channel>
</rss>

