<?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: Problem in BAPI_FIXEDASSET_CHANGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147699#M1367992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is solved.&lt;/P&gt;&lt;P&gt;Thx a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Sep 2009 07:24:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-08T07:24:17Z</dc:date>
    <item>
      <title>Problem in BAPI_FIXEDASSET_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147697#M1367990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;           I am trying to use BAPI_FIXEDASSET_CHANGE bapi, but it is giving as error - that assetr does not exist for company code.&lt;/P&gt;&lt;P&gt;But asset actually present in system for that company code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be the problem.&lt;/P&gt;&lt;P&gt;Kindly help.&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                = p_bukrs&lt;/P&gt;&lt;P&gt;        asset                      = it_infile-anln1&lt;/P&gt;&lt;P&gt;        subnumber                  = it_infile-anln2&lt;/P&gt;&lt;P&gt;        generaldata                = l_generaldata&lt;/P&gt;&lt;P&gt;        generaldatax               = l_generaldatax&lt;/P&gt;&lt;P&gt;        inventory                  = l_inventory&lt;/P&gt;&lt;P&gt;        inventoryx                 = l_inventoryx&lt;/P&gt;&lt;P&gt;        postinginformation         = l_postinginfo&lt;/P&gt;&lt;P&gt;        postinginformationx        = l_postinginfox&lt;/P&gt;&lt;P&gt;        timedependentdata          = l_timedependata&lt;/P&gt;&lt;P&gt;        timedependentdatax         = l_timedependatax&lt;/P&gt;&lt;P&gt;        origin                     = l_origin&lt;/P&gt;&lt;P&gt;        originx                    = l_originx&lt;/P&gt;&lt;P&gt;        leasing                    = l_leasing&lt;/P&gt;&lt;P&gt;        leasingx                   = l_leasingx&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        return                     = l_return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Value of sy-subrc is 0 but it returns l_return-type = 'E' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;thx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 11:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147697#M1367990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-04T11:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_FIXEDASSET_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147698#M1367991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the data element ANLN1 is connected with domain ANLN1. This is a CHAR field with 12 characters connected to conversion exit ALPHA. That means that numbers will get preceding leading zeroes for the internal storage and use. The BAPI expects the number to be in internal format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may call &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    input         = it_infile-anln1
  IMPORTING
    OUTPUT        = it_infile-anln1
          .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;(and also for ANLN2) before calling the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: A BAPI will almost always return SY-SUBRC = 0 which means technically everything worked. Errors are always reported in RETURN parameter - for some BAPIs a table storing all errors that have been recorded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 12:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147698#M1367991</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-09-04T12:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in BAPI_FIXEDASSET_CHANGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147699#M1367992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is solved.&lt;/P&gt;&lt;P&gt;Thx a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 07:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-bapi-fixedasset-change/m-p/6147699#M1367992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T07:24:17Z</dc:date>
    </item>
  </channel>
</rss>

