<?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: IDOC Triggering in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515477#M237314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using VOFM routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Go to transaction VOFM&lt;/P&gt;&lt;P&gt;2.  go to menu item Requirements-&amp;gt;Output Control&lt;/P&gt;&lt;P&gt;3.  Copy or create a new requirement that begins with 9 (You can copy an existint requirement by placing your cursor on an existing requirement number and typing your new number 9nn)&lt;/P&gt;&lt;P&gt;4.  In the new routine add your logic to do you checking. If you want to stop the output, you will need to set variable sy-subrc to something other than '0' in your routine.&lt;/P&gt;&lt;P&gt;5.  Set up configuration of "Output Determination" in the IMG to point to the new routine number you created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These routines can be used to block any type of output.  You will have to do some type of coding to determine whether it is IDOC output, print, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Aug 2006 12:17:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-09T12:17:29Z</dc:date>
    <item>
      <title>IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515474#M237311</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;My requirement is that in the user exit , i would be checking one condition, if the condition fails, i need to stop the IDOC triggering from SAP.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do it.  Assume, i am doing the condition in one particular segment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515474#M237311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515475#M237312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I presume that you know the user-exit and FM which will be triggered to process your IDOC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you need to find a particular PERFORM in the FM so that u come to know where exactly the segment is getting populated in the code.(normally the name would be on the lines of PERFORM segment-name-fill nomenculature)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the after locating the exact place, u can code for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:24:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515475#M237312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515476#M237313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the exact place where to check.  But do let me know , how to stop the triggering of the idoc, or even simpler, i don't want to send that particular idoc to the partner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 10:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515476#M237313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T10:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515477#M237314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using VOFM routines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  Go to transaction VOFM&lt;/P&gt;&lt;P&gt;2.  go to menu item Requirements-&amp;gt;Output Control&lt;/P&gt;&lt;P&gt;3.  Copy or create a new requirement that begins with 9 (You can copy an existint requirement by placing your cursor on an existing requirement number and typing your new number 9nn)&lt;/P&gt;&lt;P&gt;4.  In the new routine add your logic to do you checking. If you want to stop the output, you will need to set variable sy-subrc to something other than '0' in your routine.&lt;/P&gt;&lt;P&gt;5.  Set up configuration of "Output Determination" in the IMG to point to the new routine number you created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These routines can be used to block any type of output.  You will have to do some type of coding to determine whether it is IDOC output, print, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 12:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515477#M237314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T12:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515478#M237315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christoper,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the same. But the problem is, i am using warehouse management module where the output configurations are all done through SPRO.  So, these requirement can't be set by me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any simple way to stop the IDOC from creating or processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;B.Anandh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 13:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515478#M237315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T13:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC Triggering</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515479#M237316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which IDOC are you trying to stop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the path in SPRO to get to the configuration?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2006 13:56:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-triggering/m-p/1515479#M237316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-09T13:56:47Z</dc:date>
    </item>
  </channel>
</rss>

