<?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: FM Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811632#M347934</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sahil , &lt;/P&gt;&lt;P&gt; Are you getting the exception 'ORDER_NOT_FOUND' when you execute the FM , the reason for it is that you are not passing the production order number in the correct format.&lt;/P&gt;&lt;P&gt;e.g. if you pass the number as '5000000004' it will give you this exception because the length of a Production order is 12 , so you need to convert this to 005000000004 and execute.&lt;/P&gt;&lt;P&gt;You can try the conversion exit for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Dec 2006 04:38:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-12T04:38:05Z</dc:date>
    <item>
      <title>FM Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811631#M347933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one problem in FM CO2H_PROD_ORDER_READ. While executing the FM in SE37 I am getting the desired result. But I use the same FM in program &amp;amp; executed I am not getting the desired result. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While debugging I found that in FM CO2H_PROD_ORDER_READ one FM CO_BO_AFFL_OF_ORDER_GET is used &amp;amp; in this FM AFFL_BT is populated while executing in SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in case of executing the program the AFFL_BT is not populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody will suggest me any solution for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 04:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811631#M347933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T04:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: FM Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811632#M347934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sahil , &lt;/P&gt;&lt;P&gt; Are you getting the exception 'ORDER_NOT_FOUND' when you execute the FM , the reason for it is that you are not passing the production order number in the correct format.&lt;/P&gt;&lt;P&gt;e.g. if you pass the number as '5000000004' it will give you this exception because the length of a Production order is 12 , so you need to convert this to 005000000004 and execute.&lt;/P&gt;&lt;P&gt;You can try the conversion exit for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 04:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811632#M347934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T04:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: FM Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811633#M347935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the conversion exit but still the problem is there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could u pls tell me any other suggestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 05:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811633#M347935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T05:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: FM Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811634#M347936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit , &lt;/P&gt;&lt;P&gt;  Pleas use the &amp;lt;b&amp;gt;unpack&amp;lt;/b&amp;gt; command .&lt;/P&gt;&lt;P&gt;If your production order is in the variable v_aufnr. use the command&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;unpack v_aufnr to v_aufnr&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; and the call the FM using this variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me if it solves the problem or not &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 05:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-problem/m-p/1811634#M347936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T05:25:12Z</dc:date>
    </item>
  </channel>
</rss>

