<?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: How to get BAPI_EQUI_CREATE working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064714#M92913</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2014 11:40:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-11-04T11:40:55Z</dc:date>
    <item>
      <title>How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064709#M92908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use BAPI BAPI_EQUI_CREATE to create equipment. When trying to create an equipment by test-running that BAPI i get no error message, the BAPI returns with a new equipment number and still there is no new equipment with that number. I have the same problem with BAPI_EQUI_CREATE_BY_REFERENCE and there is no big chance to forget any importing parameter with this function module.&lt;/P&gt;&lt;P&gt;Do i have to start those BAPIs in a program and call a certain other BAPI before??&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2005 21:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064709#M92908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-12T21:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064710#M92909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BAPI_EQUI_CREATE&amp;lt;/b&amp;gt; is waiting for a call to &amp;lt;b&amp;gt;BAPI_TRANSACTION_COMMIT&amp;lt;/b&amp;gt;, as any real BAPI should. Otherwise no Update modules triggered in the BAPI will be started.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you find my answer useful, please don't forget the reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Juergen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 08:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064710#M92909</guid>
      <dc:creator>former_member225448</dc:creator>
      <dc:date>2005-10-13T08:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064711#M92910</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;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT  = WL_EQUNR&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      OUTPUT = WL_EQUNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WL_FLAGS-CP_MEASPT  = C_CHECK.&lt;/P&gt;&lt;P&gt;  WL_FLAGS-CP_MPT_TXT = C_CHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_EQUI_CREATE_BY_REFERENCE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      REFERENCE_NUMBER  = WL_EQUNR&lt;/P&gt;&lt;P&gt;      COPY_FLAGS        = WL_FLAGS&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      EQUIPMENT         = WL_EQUI-EQUNR&lt;/P&gt;&lt;P&gt;      DATA_GENERAL_EXP  = WL_GEN&lt;/P&gt;&lt;P&gt;      DATA_SPECIFIC_EXP = WL_SPE&lt;/P&gt;&lt;P&gt;      RETURN            = WL_RETURN&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS            = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF WL_RETURN(1) = 'E'.&lt;/P&gt;&lt;P&gt;    MESSAGE E899(M3) WITH WL_RETURN-MESSAGE(50)&lt;/P&gt;&lt;P&gt;                          WL_RETURN-MESSAGE+50(50).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   fp_return = sy-subrc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        WAIT = C_CHECK.&lt;/P&gt;&lt;P&gt;Just try like above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 11:20:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064711#M92910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T11:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064712#M92911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Juergen,&lt;/P&gt;&lt;P&gt;thank you very much for your answer. As you might have noticed i do not have to much experience with bapis yet. It's working now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 15:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064712#M92911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T15:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064713#M92912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;thank you for your example coding. It works very well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 16:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064713#M92912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T16:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get BAPI_EQUI_CREATE working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064714#M92913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 11:40:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-get-bapi-equi-create-working/m-p/1064714#M92913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-04T11:40:55Z</dc:date>
    </item>
  </channel>
</rss>

