<?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: Create Equipment with the Function 'BAPI_EQUI_CREATE' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847944#M1474002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for the helpful answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem  is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'BAPI_EQUI_CREATE' needs a commit to make an entry in the Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_EQUI_CREATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  external_number    = equipmentnummer&lt;/P&gt;&lt;P&gt;  data_general       = data_general1&lt;/P&gt;&lt;P&gt;  data_specific      = data_specific1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DATA_FLEET         = data_fleet1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; VALID_DATE         = valid_date1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data_install       = data_install1&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  equipment         = equipment1&lt;/P&gt;&lt;P&gt;  data_general_exp  = data_general_exp1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data_specific_exp = data_specific_exp1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data_fleet_exp    = data_fleet_exp1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;return            = return1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ld_wait      LIKE  bapita-wait.              &lt;/P&gt;&lt;P&gt;ld_wait = 'X' .&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 = ld_wait.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 May 2010 11:33:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-05T11:33:41Z</dc:date>
    <item>
      <title>Create Equipment with the Function 'BAPI_EQUI_CREATE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847941#M1473999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create an equipment with the Function. When I start it I don't get errors, but nevertheless the equipment is created.&lt;/P&gt;&lt;P&gt;I can 't see an equipment number ( see last line ) and the transaktion ie02 says 'this equipment is not exist&lt;/P&gt;&lt;P&gt;please help me. thank you in advance.&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;Export (Eingabe-)Parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;external_number1   LIKE  bapi_itob_parms-equipment,  " Nummer des anzulegenden Equipments (initial =&amp;gt; interne Vergabe)&lt;/P&gt;&lt;P&gt;data_general1      LIKE  bapi_itob,                  " Allgemeine Daten Technische Objekte&lt;/P&gt;&lt;P&gt;data_specific1     LIKE  bapi_itob_eq_only,          " Equipmentspezifische Daten&lt;/P&gt;&lt;P&gt;data_fleet1        LIKE  bapi_fleet,                 " Fahrzeugspezifische Daten&lt;/P&gt;&lt;P&gt;valid_date1        LIKE  bapi_itob_parms-inst_date,  " Gültig-Ab-Datum für anzulegendes Equipment&lt;/P&gt;&lt;P&gt;data_install1      LIKE  bapi_itob_eq_install.       " Einbaudaten des Equipments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;external_number1            =       '140001' .&lt;/P&gt;&lt;P&gt;data_general1-obj_size      =      '123 x 123' .&lt;/P&gt;&lt;P&gt;data_general1-acqdate       =       '19781127' .&lt;/P&gt;&lt;P&gt;data_general1-acquisval     =       '1234.33' .&lt;/P&gt;&lt;P&gt;data_general1-manfacture    =       'Simons' .&lt;/P&gt;&lt;P&gt;data_general1-manserno      =       '12345678900987654321' .&lt;/P&gt;&lt;P&gt;data_general1-manmodel      =       'Supermega' .&lt;/P&gt;&lt;P&gt;data_general1-constyear     =       '1978' .&lt;/P&gt;&lt;P&gt;data_general1-constmonth    =       '11' .&lt;/P&gt;&lt;P&gt;data_general1-start_from    =       '19781127' .&lt;/P&gt;&lt;P&gt;data_general1-costcenter    =       'tuv133' .&lt;/P&gt;&lt;P&gt;data_general1-comp_code     =       'Hack' .&lt;/P&gt;&lt;P&gt;data_general1-read_crdat    =       '19781127' .&lt;/P&gt;&lt;P&gt;data_general1-read_crnam    =       'testuser' .&lt;/P&gt;&lt;P&gt;data_general1-read_chdat    =       '19781127' .&lt;/P&gt;&lt;P&gt;data_general1-read_chnam    =       'testuser' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data_specific1-serialno = '152727278327717' .&lt;/P&gt;&lt;P&gt;data_specific1-material = '15272727812377' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Import (Ausgabe-)Parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;equipment1         LIKE  bapi_itob_parms-equipment, " Nummer des angelegten Equipments&lt;/P&gt;&lt;P&gt;data_general_exp1  LIKE  bapi_itob,                 " Allgemeine Daten Technische Objekte&lt;/P&gt;&lt;P&gt;data_specific_exp1 LIKE  bapi_itob_eq_only,         " Equipmentspezifische Daten&lt;/P&gt;&lt;P&gt;data_fleet_exp1    LIKE  bapi_fleet,                " Fahrzeugspezifische Daten&lt;/P&gt;&lt;P&gt;return1            LIKE  bapiret2.                  " Returnparameter&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_EQUI_CREATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  EXTERNAL_NUMBER    = external_number1&lt;/P&gt;&lt;P&gt;  DATA_GENERAL       = data_general1&lt;/P&gt;&lt;P&gt;  DATA_SPECIFIC      = data_specific1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DATA_FLEET         = data_fleet1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;VALID_DATE         = valid_date1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA_INSTALL       = data_install1&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  equipment         = equipment1&lt;/P&gt;&lt;P&gt;  data_general_exp  = data_general_exp1&lt;/P&gt;&lt;P&gt;  data_specific_exp = data_specific_exp1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; data_fleet_exp    = data_fleet_exp1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  return            = return1&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;write: / 'Output:' ,  equipment1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 13:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847941#M1473999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T13:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create Equipment with the Function 'BAPI_EQUI_CREATE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847942#M1474000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wall of text... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 words for you: BAPI, TRANSACTION and COMMIT. Find the right combination to see the magic work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 14:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847942#M1474000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T14:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create Equipment with the Function 'BAPI_EQUI_CREATE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847943#M1474001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IE02 is a CHANGE transaction.  You want IE01 (or IE08?  fast create?? forgot the transaction code).  IE02 should give you an error if this is a new EQUI number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 May 2010 20:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847943#M1474001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-03T20:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create Equipment with the Function 'BAPI_EQUI_CREATE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847944#M1474002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for the helpful answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem  is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'BAPI_EQUI_CREATE' needs a commit to make an entry in the Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_EQUI_CREATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  external_number    = equipmentnummer&lt;/P&gt;&lt;P&gt;  data_general       = data_general1&lt;/P&gt;&lt;P&gt;  data_specific      = data_specific1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DATA_FLEET         = data_fleet1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; VALID_DATE         = valid_date1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data_install       = data_install1&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  equipment         = equipment1&lt;/P&gt;&lt;P&gt;  data_general_exp  = data_general_exp1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data_specific_exp = data_specific_exp1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;data_fleet_exp    = data_fleet_exp1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;return            = return1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ld_wait      LIKE  bapita-wait.              &lt;/P&gt;&lt;P&gt;ld_wait = 'X' .&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 = ld_wait.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 11:33:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-equipment-with-the-function-bapi-equi-create/m-p/6847944#M1474002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-05T11:33:41Z</dc:date>
    </item>
  </channel>
</rss>

