<?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 for IQ02 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500015#M841864</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;log initialization &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_INIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do some initializations &lt;/P&gt;&lt;P&gt;CLEAR db_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create classification data &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CACL_OBJECT_ALLOCATION_MAINT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;object_type = x_auto-header-object_type&lt;/P&gt;&lt;P&gt;class = x_auto-header-class&lt;/P&gt;&lt;P&gt;class_type = x_auto-header-class_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STATUS = &lt;/P&gt;&lt;P&gt;STANDARD_CLASS = &lt;/P&gt;&lt;P&gt;DELETE_ALLOCATION = &lt;/P&gt;&lt;P&gt;CHANGE_NO = &lt;/P&gt;&lt;P&gt;I_OBJ_NOT_CHK = ' ' &lt;/P&gt;&lt;P&gt;I_DATUV = &lt;/P&gt;&lt;P&gt;I_NO_DEFAULTS = ' ' &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;object_identification = x_auto-data&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;error = 1&lt;/P&gt;&lt;P&gt;warning = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;LOOP AT lt_return INTO wa_return WHERE type = 'E'.&lt;/P&gt;&lt;P&gt;mac_msg_putx co_msg_error wa_return-number&lt;/P&gt;&lt;P&gt;wa_return-id&lt;/P&gt;&lt;P&gt;wa_return-message_v1&lt;/P&gt;&lt;P&gt;wa_return-message_v2&lt;/P&gt;&lt;P&gt;wa_return-message_v3&lt;/P&gt;&lt;P&gt;wa_return-message_v4&lt;/P&gt;&lt;P&gt;space.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;RAISE input_error.&lt;/P&gt;&lt;P&gt;ENDIF.&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;transfer validation data &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'CACL_OBJECT_VALIDATION_MAINT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;object_type = x_auto-header-object_type&lt;/P&gt;&lt;P&gt;class = x_auto-header-class&lt;/P&gt;&lt;P&gt;class_type = x_auto-header-class_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_NO = &lt;/P&gt;&lt;P&gt;I_OBJ_NOT_CHK = ' ' &lt;/P&gt;&lt;P&gt;I_DATUV = &lt;/P&gt;&lt;P&gt;I_NO_DEFAULTS = ' ' &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;object_identification = x_auto-data&lt;/P&gt;&lt;P&gt;validation_maint = x_auto-value&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;error = 1&lt;/P&gt;&lt;P&gt;warning = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;LOOP AT lt_return INTO wa_return WHERE type = 'E'.&lt;/P&gt;&lt;P&gt;mac_msg_putx co_msg_error wa_return-number&lt;/P&gt;&lt;P&gt;wa_return-id&lt;/P&gt;&lt;P&gt;wa_return-message_v1&lt;/P&gt;&lt;P&gt;wa_return-message_v2&lt;/P&gt;&lt;P&gt;wa_return-message_v3&lt;/P&gt;&lt;P&gt;wa_return-message_v4&lt;/P&gt;&lt;P&gt;space.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;RAISE input_error.&lt;/P&gt;&lt;P&gt;ENDIF.&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;transfer to data base without commit &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'CACL_CLASSIFICATION_SAVE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_commit = ' '&lt;/P&gt;&lt;P&gt;i_no_upd_task = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close internal log &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set update flag if everything went well &lt;/P&gt;&lt;P&gt;db_update = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2008 14:00:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-12T14:00:46Z</dc:date>
    <item>
      <title>BAPI for IQ02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500014#M841863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any BAPi to change the device data.&lt;/P&gt;&lt;P&gt;which should take import params material and serial number&lt;/P&gt;&lt;P&gt;please help me........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 13:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500014#M841863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T13:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for IQ02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500015#M841864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;log initialization &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_INIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do some initializations &lt;/P&gt;&lt;P&gt;CLEAR db_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create classification data &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CACL_OBJECT_ALLOCATION_MAINT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;object_type = x_auto-header-object_type&lt;/P&gt;&lt;P&gt;class = x_auto-header-class&lt;/P&gt;&lt;P&gt;class_type = x_auto-header-class_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STATUS = &lt;/P&gt;&lt;P&gt;STANDARD_CLASS = &lt;/P&gt;&lt;P&gt;DELETE_ALLOCATION = &lt;/P&gt;&lt;P&gt;CHANGE_NO = &lt;/P&gt;&lt;P&gt;I_OBJ_NOT_CHK = ' ' &lt;/P&gt;&lt;P&gt;I_DATUV = &lt;/P&gt;&lt;P&gt;I_NO_DEFAULTS = ' ' &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;object_identification = x_auto-data&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;error = 1&lt;/P&gt;&lt;P&gt;warning = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;LOOP AT lt_return INTO wa_return WHERE type = 'E'.&lt;/P&gt;&lt;P&gt;mac_msg_putx co_msg_error wa_return-number&lt;/P&gt;&lt;P&gt;wa_return-id&lt;/P&gt;&lt;P&gt;wa_return-message_v1&lt;/P&gt;&lt;P&gt;wa_return-message_v2&lt;/P&gt;&lt;P&gt;wa_return-message_v3&lt;/P&gt;&lt;P&gt;wa_return-message_v4&lt;/P&gt;&lt;P&gt;space.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;RAISE input_error.&lt;/P&gt;&lt;P&gt;ENDIF.&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;transfer validation data &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'CACL_OBJECT_VALIDATION_MAINT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;object_type = x_auto-header-object_type&lt;/P&gt;&lt;P&gt;class = x_auto-header-class&lt;/P&gt;&lt;P&gt;class_type = x_auto-header-class_type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_NO = &lt;/P&gt;&lt;P&gt;I_OBJ_NOT_CHK = ' ' &lt;/P&gt;&lt;P&gt;I_DATUV = &lt;/P&gt;&lt;P&gt;I_NO_DEFAULTS = ' ' &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;object_identification = x_auto-data&lt;/P&gt;&lt;P&gt;validation_maint = x_auto-value&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;error = 1&lt;/P&gt;&lt;P&gt;warning = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;LOOP AT lt_return INTO wa_return WHERE type = 'E'.&lt;/P&gt;&lt;P&gt;mac_msg_putx co_msg_error wa_return-number&lt;/P&gt;&lt;P&gt;wa_return-id&lt;/P&gt;&lt;P&gt;wa_return-message_v1&lt;/P&gt;&lt;P&gt;wa_return-message_v2&lt;/P&gt;&lt;P&gt;wa_return-message_v3&lt;/P&gt;&lt;P&gt;wa_return-message_v4&lt;/P&gt;&lt;P&gt;space.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;RAISE input_error.&lt;/P&gt;&lt;P&gt;ENDIF.&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;transfer to data base without commit &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'CACL_CLASSIFICATION_SAVE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_commit = ' '&lt;/P&gt;&lt;P&gt;i_no_upd_task = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close internal log &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_LOG_CLOSE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set update flag if everything went well &lt;/P&gt;&lt;P&gt;db_update = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 14:00:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500015#M841864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T14:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI for IQ02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500016#M841865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI_OBJCL_CHANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and BAPI_EQUI_CHANGE to Change Equipment Master Record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rahul Kavuri on Mar 12, 2008 7:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 14:07:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-iq02/m-p/3500016#M841865</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2008-03-12T14:07:11Z</dc:date>
    </item>
  </channel>
</rss>

