<?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 use BAPI_EQUI_CREATE correctly ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885159#M1141602</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you search with the BAPI name in the forum you will get lots of examples there which can help you.&lt;/P&gt;&lt;P&gt;e.g. this one - &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="783197"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Dec 2008 19:28:14 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2008-12-10T19:28:14Z</dc:date>
    <item>
      <title>How to use BAPI_EQUI_CREATE correctly ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885158#M1141601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Im trying really hard to use BAPI_EQUI_CREATE. For inserting a equipment in existing Function location... but it doesnt work... there is no error... but an new equipment has been generated... I dont see it in on Transaction IH01 or in any table.  Please help, would be very nice ; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... does someone have an example code (with feeding data) ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 19:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885158#M1141601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T19:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use BAPI_EQUI_CREATE correctly ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885159#M1141602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you search with the BAPI name in the forum you will get lots of examples there which can help you.&lt;/P&gt;&lt;P&gt;e.g. this one - &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="783197"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 19:28:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885159#M1141602</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2008-12-10T19:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use BAPI_EQUI_CREATE correctly ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885160#M1141603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;constants: c_b(1) type c value 'B',&lt;/P&gt;&lt;P&gt;             c_e(1) type c value 'E',&lt;/P&gt;&lt;P&gt;             c_03(2) type c value '03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Bapi Structures&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: wa_data_general type bapi_itob,&lt;/P&gt;&lt;P&gt;        wa_data_specific type bapi_itob_eq_only,&lt;/P&gt;&lt;P&gt;        wa_return type bapiret2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_data_specific-material = matnr.&lt;/P&gt;&lt;P&gt;  wa_data_specific-serialno = serial number.&lt;/P&gt;&lt;P&gt;  wa_data_specific-equicatgry = c_b .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call BAPI&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'BAPI_EQUI_CREATE'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTERNAL_NUMBER         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      data_general            = wa_data_general&lt;/P&gt;&lt;P&gt;      data_specific           = wa_data_specific&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATA_FLEET              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALID_DATE              = SY-DATUM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATA_INSTALL            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   importing&lt;/P&gt;&lt;P&gt;      equipment               = p_equipament&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATA_GENERAL_EXP        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATA_SPECIFIC_EXP       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATA_FLEET_EXP          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      return                  = wa_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if not wa_return-type  = c_e.&lt;/P&gt;&lt;P&gt;&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 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 19:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-bapi-equi-create-correctly/m-p/4885160#M1141603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T19:32:37Z</dc:date>
    </item>
  </channel>
</rss>

