<?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: BAPI_ALM_ORDER_GET_DETAIL  : Using Error ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724220#M632164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the order number is not exissting or the format is wrong.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try the conversion functionmodule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;BRET LIKE TABLE OF BAPIRET2,&lt;/P&gt;&lt;P&gt;BRETREC LIKE BAPIRET2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDNUM = '900003'.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;call function 'conversion_exit_alpha_input'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;input = ordnum&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;output = ordnum.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_ALM_ORDER_GET_DETAIL'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;NUMBER = ORDNUM&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = BRET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT BRET INTO BRETREC.&lt;/P&gt;&lt;P&gt;WRITE: / BRETREC-TYPE , BRETREC-MESSAGE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Aug 2007 14:55:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-27T14:55:37Z</dc:date>
    <item>
      <title>BAPI_ALM_ORDER_GET_DETAIL  : Using Error ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724218#M632162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I call this BAPI throw se37 + test - all is OK , I enter order number , smth like 900003 and  obtain result tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But When I write the same in ABAP:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********************************************************&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;       BRET LIKE TABLE OF BAPIRET2,&lt;/P&gt;&lt;P&gt;       BRETREC LIKE BAPIRET2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDNUM = '900003'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_ALM_ORDER_GET_DETAIL'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    NUMBER                 = ORDNUM&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   RETURN                 = BRET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT BRET INTO BRETREC.&lt;/P&gt;&lt;P&gt;  WRITE: / BRETREC-TYPE , BRETREC-MESSAGE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;*******************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I obtain error :  BRETREC-TYPE  = 'E'  , &lt;/P&gt;&lt;P&gt;                       BRETREC-MESSAGE = 'Error reading the order in document tables'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have only 2 non-optional params , but I try to propose all - the result was th same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's the problem ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 14:46:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724218#M632162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T14:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_ORDER_GET_DETAIL  : Using Error ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724219#M632163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have to send data in Full Length Format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If order field length is 10 , then u have to pass Order = '0000900003'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Peram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 14:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724219#M632163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T14:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_ORDER_GET_DETAIL  : Using Error ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724220#M632164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the order number is not exissting or the format is wrong.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try the conversion functionmodule&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;BRET LIKE TABLE OF BAPIRET2,&lt;/P&gt;&lt;P&gt;BRETREC LIKE BAPIRET2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORDNUM = '900003'.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;call function 'conversion_exit_alpha_input'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;input = ordnum&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;output = ordnum.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_ALM_ORDER_GET_DETAIL'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;NUMBER = ORDNUM&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;RETURN = BRET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT BRET INTO BRETREC.&lt;/P&gt;&lt;P&gt;WRITE: / BRETREC-TYPE , BRETREC-MESSAGE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 14:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724220#M632164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T14:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ALM_ORDER_GET_DETAIL  : Using Error ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724221#M632165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ) all is ok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 15:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-alm-order-get-detail-using-error/m-p/2724221#M632165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T15:10:09Z</dc:date>
    </item>
  </channel>
</rss>

