<?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_FIXEDASSET_CHANGE :  Internal table didnt pass into BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059292#M425420</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Running from the program code, &lt;/P&gt;&lt;P&gt;When I set break point inside the  function 'BAPI_FIXEDASSET_CHANGE', internal table i_depreciationareas does not pass any value into the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While in the program code , breakpoint just before or after 'BAPI_FIXEDASSET_CHANGE' , there is data in the internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone done this before ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;i_depreciationareas  LIKE bapi1022_dep_areas&lt;/P&gt;&lt;P&gt;                          OCCURS 0  WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;i_depreciationareasx LIKE bapi1022_dep_areasx&lt;/P&gt;&lt;P&gt;                          OCCURS 0  WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_depreciationareas-AREA       = '01'.&lt;/P&gt;&lt;P&gt;i_depreciationareas-ULIFE_YRS  = '007' .&lt;/P&gt;&lt;P&gt;i_depreciationareas-ULIFE_PRDS = '001' .&lt;/P&gt;&lt;P&gt;APPEND i_depreciationareas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_depreciationareasx = i_doc-darea.&lt;/P&gt;&lt;P&gt;i_depreciationareasx-ulife_yrs = 'X'.&lt;/P&gt;&lt;P&gt;i_depreciationareasx-ulife_prds = 'X'.&lt;/P&gt;&lt;P&gt;APPEND i_depreciationareasx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_FIXEDASSET_CHANGE'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;           companycode = '1000'&lt;/P&gt;&lt;P&gt;           asset       = '000001000115'&lt;/P&gt;&lt;P&gt;           subnumber   = '0000'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          generaldatax = i_generaldatax&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;           return = v_return&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;           depreciationareas  = i_depreciationareas&lt;/P&gt;&lt;P&gt;           depreciationareasx = i_depreciationareasx&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          EXTENSIONIN = EXTENSIONIN&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Mar 2007 11:15:02 GMT</pubDate>
    <dc:creator>kowong</dc:creator>
    <dc:date>2007-03-19T11:15:02Z</dc:date>
    <item>
      <title>BAPI_FIXEDASSET_CHANGE :  Internal table didnt pass into BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059290#M425418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Running from the program code, &lt;/P&gt;&lt;P&gt;When I set break point inside the function 'BAPI_FIXEDASSET_CHANGE', internal table i_depreciationareas does not pass any value into the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While in the program code , breakpoint just before or after 'BAPI_FIXEDASSET_CHANGE' , there is data in the internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone done this before ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by running in abap code shown bellow , result shown: '291No changes made'  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_FIXEDASSET_CHANGE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;         companycode = i_data-bukrs&lt;/P&gt;&lt;P&gt;         asset       = i_data-asset&lt;/P&gt;&lt;P&gt;         subnumber   = i_data-subno&lt;/P&gt;&lt;P&gt;         generaldatax = i_generaldatax&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         return = v_return&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;         i_depreciationareas  = i_depreciationareas&lt;/P&gt;&lt;P&gt;         i_depreciationareasx = i_depreciationareasx&lt;/P&gt;&lt;P&gt;&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 sy-subrc EQ 0.&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;           IMPORTING&lt;/P&gt;&lt;P&gt;                return = i_bapiresults.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE : v_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank yoyu ...&lt;/P&gt;&lt;P&gt;is there any other paramter that i miss out ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 10:49:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059290#M425418</guid>
      <dc:creator>kowong</dc:creator>
      <dc:date>2007-03-15T10:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_FIXEDASSET_CHANGE :  Internal table didnt pass into BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059291#M425419</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;check out these oss notes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note 945966 - BAPI_FIXEDASSET_CHANGE: Error message content&lt;/P&gt;&lt;P&gt;Note 598639 - Asset BAPIs ignore KFZ indicator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 11:39:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059291#M425419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T11:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_FIXEDASSET_CHANGE :  Internal table didnt pass into BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059292#M425420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Running from the program code, &lt;/P&gt;&lt;P&gt;When I set break point inside the  function 'BAPI_FIXEDASSET_CHANGE', internal table i_depreciationareas does not pass any value into the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While in the program code , breakpoint just before or after 'BAPI_FIXEDASSET_CHANGE' , there is data in the internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone done this before ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;i_depreciationareas  LIKE bapi1022_dep_areas&lt;/P&gt;&lt;P&gt;                          OCCURS 0  WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;i_depreciationareasx LIKE bapi1022_dep_areasx&lt;/P&gt;&lt;P&gt;                          OCCURS 0  WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_depreciationareas-AREA       = '01'.&lt;/P&gt;&lt;P&gt;i_depreciationareas-ULIFE_YRS  = '007' .&lt;/P&gt;&lt;P&gt;i_depreciationareas-ULIFE_PRDS = '001' .&lt;/P&gt;&lt;P&gt;APPEND i_depreciationareas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_depreciationareasx = i_doc-darea.&lt;/P&gt;&lt;P&gt;i_depreciationareasx-ulife_yrs = 'X'.&lt;/P&gt;&lt;P&gt;i_depreciationareasx-ulife_prds = 'X'.&lt;/P&gt;&lt;P&gt;APPEND i_depreciationareasx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'BAPI_FIXEDASSET_CHANGE'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;           companycode = '1000'&lt;/P&gt;&lt;P&gt;           asset       = '000001000115'&lt;/P&gt;&lt;P&gt;           subnumber   = '0000'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          generaldatax = i_generaldatax&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;           return = v_return&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;           depreciationareas  = i_depreciationareas&lt;/P&gt;&lt;P&gt;           depreciationareasx = i_depreciationareasx&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          EXTENSIONIN = EXTENSIONIN&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 11:15:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-fixedasset-change-internal-table-didnt-pass-into-bapi/m-p/2059292#M425420</guid>
      <dc:creator>kowong</dc:creator>
      <dc:date>2007-03-19T11:15:02Z</dc:date>
    </item>
  </channel>
</rss>

