BAPI ABUMN  (bapi_***_acc_transfer_post,)

Dear friends,
We are trying to post an intracompany asset transfer using the bapi bapi_***_acc_transfer_post, nevertheless when we execute it the system comes up with the following error:
-Transaction type xxx cannot be used for activity retirement from intracompany transfer.
has anybody used this bapi to post intracompany transfers? I have been checking the related posts in this forum and the explanations were not so clear. I woul appreciate  your help. If you could write down the import parameters would be gorgeous.
Kind regards
Marc

Dear friends,
We are trying to post an intracompany asset transfer using the bapi bapi_***_acc_transfer_post, nevertheless when we execute it the system comes up with the following error:
-Transaction type xxx cannot be used for activity retirement from intracompany transfer.
has anybody used this bapi to post intracompany transfers? I have been checking the related posts in this forum and the explanations were not so clear. I woul appreciate  your help. If you could write down the import parameters would be gorgeous.
Kind regards
Marc

Similar Messages

  • Storing the output of BAPI for further use in Webdynpro application

    Hi,
    In my webdynpro application, a BAPI_A is called multiple times from a backend.
    All the previous outputs of the BAPI_A need to be stored in the webdynpro application as they serve as a complete set of input parameters for BAPI_B at the end.
    Can anybody shed light on this temporary storage mechanism of the outputs of the BAPI_A.
    Regards
    Meesum

    Hi Meesum,
    Your BAPI structure
    BAPI_A
    --Output (0..n)
    Field1
    Field2
    Field3
    Field4
    Value node structure
    vnBAPI_A (0..n)
    --vnResult (0..n)
    vaField1
    vaField2
    vaField3
    vaField4
    1. Declare objVnBAPI_A (between begin and end)
    2. Initialize in the vnBAPI_A in the wdDoInit()
    3. After each execution of the BAPI (BAPI_A), create the vnResult and populate the fields of vnResult (from the BAPI_A --> output)
    4. Add the vnResult object to objVnBAPI_A
    Hope this should help you.
    Regards,
    Santhosh.C

  • How to use / fill BAPI_ACC_***_TRANSFER_POST

    Good afternoon!!!
    I'm needing to make the transfer inside in the company, but I didn't get to use the BAPI_ACC_***_TRANSFER POST to do it. I tried to make SHDB, but there are many possibilities, then I will not can SHDB to do it. Someone could to help me to use the BAPI_ACC_***_TRANSFER_POST to make the transfer's document of the ABUMN transaction?
    Regards.
    Renato Motta

    Hi,
    please check BAPI: ABUMN .
    Regards,
    Orhan

  • I need some BAPI standard to make asset's transfer by ABUMN transaction

    Hello!
    I need to make the asset's transfer by ABUMN transaction, but I don't know any BAPI to this. Someone could say me if there is some BAPI to use in this case? I tried to use SHDB, but there are many possibilities of the transfer. In this case I could need to use some BAPI or function standard to make the asset's transfer. Someone could to help me?
    Regards.
    Renato Motta

    Check OSS [Note 216806 - New posting transactions and batch input|https://service.sap.com/sap/support/notes/216806]
    Regards,
    Raymond

  • BAPI is missing. How to get a BAPI in BOR?

    Hi,
    in my SAP BW 3.1 exits a BAPI names MDDataSetBW. I want to use this BAPI in a ABAP-Programm, which is exists on a R/3 Enterprise. Using CALL FUNCTION ' BAPI_<..>_<..> don´t work. Wenn im browsing through the BAPI-Explorer (TSC: BAPI) at R/3, i can´t found the BAPI. Browsing at SAP BW, BAPI exists.
    RFC connection through both systems is established, sm59 gives okay. Extracting Data from R/3 through DataSources and store them at the Data Warehouse also work. The systems know each other.
    Testing on SAP NetWeaver 7.0 AS the BAPI-Explorer and the BAPI exists, not not in R/3 Enterprise. Patchlevel is up to date. ALE ist enabled.
    Im running out of ideas. Anybody a idea, how kann i get access to the BAPI? whats wrong?
    Thanks for every answers.
    René

    try using this syntax.
    call function 'bapi....' destination 'destination name'.
    this destination name is which u have in SM59. RFC destination.
    ur BW server must be opened.
    Message was edited by:
            Kalpanashri Rajendran

  • Generic Table Control in ABUMN for multiple transfer of assets

    Hi Experts,
    Problem Description
    We are trying to use transaction ABUMN for multiple asset transfer.
    We need to transfer more than one assets to multiple assets by quantity
    and value.
    Our Efforts/Observation
    Instead of going ahead with BDC/LSMW, we tried using table control to utilize standard SAP functionality.
    For making this happen, we are trying to use the Generic Table control which is available in ABUMN once you click on "Multiple assets" button.
    However, even though we are making fields like
    EL7, EL8 etc available in the screen (by removing check from the "Invisible" check box), they are in display mode and are not giving me any option to select quantity and value that needs to be transferred from each asset.
    We need to assign these fields to some field like quantity/percentage so that they can be used.
    If you see, the column header is also blank.
    We need to transfer hundreds of assets, hence requesting you to please
    fix this urgently so that we can transfer assets and close the quarter.
    Thanks in advance for your help and support,
    Nitish Gupta
    +919867458892

    Hi Nitish,
    I'm sorry, transaction ABUMN will never get this functionality you requested.       
    For mass transfer, customers have the possibilities to use batch input on  transaction ABUM or BAPI.                                                                               
    Please refer customer to the following note :   216806  New posting transactions and batch input                                                                               
    regards Bernhard

  • Step by step to do BAPI in ABAP

    step by step to do BAPI in ABAP
    If using CatsDB table will be greatfull,
    Points will be rewarded
    thank you,
    Regards,
    Jagrut Shukla

    Hi,
        This is in general step ..
    <code>
    1     BAPI Browser      Tcode - BAPI
    2     BAPI Object Builder     Tcode - SWO1
    3     Naming Convention for BAPI's      "Naming Conventions:
        1) Business Object:  BUS0001 where 0001 is an active function group.
        2) Function Module: BAPI_<object name>_<methodName>
        3) Method Name    : Max 30 chars. Should start with capital letter. GetDetail
        4) Reference fields :  Structures. Should start with BAPI…"
    4     Steps for creating a BAPI     "Steps for Creating a BAPI:
        1) Create a Function Module in SE37 and assign it to an active Function Group.
             (Check Remote Enable in attributes section)
    2) Fill the Import (Input) Parameters for the RFC
    3) Fill the Export (Output) Parameters
             (BAPIRETURN IS MANDATORY)
    4) Fill the Table parameters, if any
    5) Write the “functionality” in the source code
    6) Activate and Release the Function Module"
    5     Attaching Methods to Business Object     "Attaching method to BO:
      1) Transaction - SWO1, create a Business Object.
        Object Type – Internal technical key of the BO in the BOR.
        Super Type – If we are using some existing parent node features
               Object Name – Descriptive Name (This is displayed in list of Objects)
               Name – Descriptive name to select Object Type.
               Description – Text max 40 char
               Program – ABAP prg generated, associated with the object type.
    2)  Go to Utilities ->API Methods -> Add method
    3) Add key fields and attributes, if any
    4) Generate the Object
    5) Select the Added Method, Edit ->Change Release Status -> Object Component -> To be Implemented
    6) Select Object Type, Edit ->Change Release Status -> Object Type -> To be Implemented
    7) Select the Added Method, Edit ->Change Release Status -> Object Component -> To be  Released
    8) Select Object Type, Edit ->Change Release Status -> Object Type -> To be Released"
    6     How to check BAPI Functions?
         Either in TFDIR table by specifying BAPI_* or from SE37 by specifying BAPI_*
    7     Difference between BAPI and RFC     BAPIs and RFCs both are remote function  
                modules. All BAPIs are RFCs , but all RFCs are not BAPIs . BAPI process a   
                 business object and handles a busienss function completely. RFC perform a 
                 function which process tables , files etc. but not a complete business function.
    </code>
    Reward if u find helpful.
    Regrads,
    Rajesh

  • BAPI_ SALESORDER_CHANGE in MY SAP ERP 2005- Issues

    Hi Gurus,
    We are trying to change a Sales order using the  BAPI : BAPI_ SALESORDER_CHANGE in a Zprogram .
    The program  works fine in SAP 4.5B version. But in MY SAP ERP 2005,<b> we get error with the BAPI.</b>
    <u>Scenario :</u> The BAPI is working when the Purchase Order number is not maintained in the Sales Order.
    It throws the Error "purchase order number in document number already exist" when the Purchase order number is there in the Sales Oder.
    We executed the BAPI from SE37 by passing the parameters in the program and we got the same error mentioned above. Could you please guide .
    Thanks in Advance,
    S.Roseline

    Applied an SAP note for the BAPI BAPI_SALESORDER_CHANGE.

  • BAPI for transfer between Co Codes

    Hi everyone,
    There are two defferent transactions for asset transfers ABUMN Transfer Within CoCode and ABT1N Intercompany Asset Transfer. Do you know if there are different BAPI are used also? If yes, could you tell me which ones?
    I found out following BAPIs:
    - BAPI_ACC_***_INTRA_TRANS_CHECK
    - BAPI_ACC_***_TRANSFER_CHECK,
    - BAPI_ACC_***_TRANSFER_POST,
    - BAPI_ACC_***_TRANS_ACQ_CHECK
    - BAPI_ACC_***_TRANS_ACQ_POST
    - BAPI_ACC_***_TRANS_RET_CHECK  
    Is it correct?
    What's the difference between BAPI_ACC_***_INTRA_TRANS_CHECK and BAPI_ACC_***_TRANSFER_CHECK?
    Thanks in advance,
    Natalya

    Hi,
    please check below links
    What are the BAPI function modules that exist in sap for SD and MM modules
    ABT1N - intercompany BDC  or BAPI
    Thanks,
    Sreehari

  • BAPI & BADI

    Hi SAP SD/ABAP Gurus!
         Can you please explain me what is BAPI & BADI and what is the difference between BAPI & BADI?
    please mail me at [email protected]
    Highly rewarded.
    Regards

    Hi,
    BAPI : BAPI basically works like a function module. the major difference being that it can work like a RFC. That means it can work from system to system. Mostly the name of a BAPI can be seen in se37 by just giving BAPI_* F4 and you will see a lot of BAPIS.
    BADI : BADI is a new concept and are also known as Business Addins. SE18 and SE19 are the two transactions which are used to make a BADI. Mostly BADIS are not made but selected from what is given in SAP. These are similar to user-exits but are method based. One can say it is an extension to the user exits. If one has an issue in which one has to change so existing things in SAP then BADI can be used. First one has to define it and then find out a suitable implementation for the issue concerned.
    Thanks
    Sadhu Kishore

  • FM ABAP - XI - BAPI

    Hi.
    Have a function mudule in ABAP that's calling a standard bapi.
    Depending on configuration we get back it calls the bapi localy or by calling XI to get information from an other system.
    Calling localy = no problem.
    But how do i setup the configuration in in XI when I perform the following in the functin module?
    CALL FUNCTION 'BAPI_****' DESTINATION dest
    dest = XI
    What do i need to do in XI to get this to work?
    BR
    Kalle

    hi,
    you need to create a whole flow in XI
    BAPI.request - XI - BAPI.response
    if you need to make it synchronous
    you need to develop all objects in ID and IR
    there is no other way
    Regards,
    Michal Krawczyk
    http://mypigenie.com XI/PI FAQ

  • NoClassDefFoundError when deploying webservice calling BAPI

    Hi,
    I need to develop a java webservice which is calling a BAPI. I use DCs for that. One DC contains the JARs (JCO, ...) the other one my class which calls the BAPI (I generated the proxy classes in the same DC).
    Everything looks fine but when I deploy my webservice I always get a NoClassDefFoundError for BAPI_..._Input. Can you tell me why it's not working and what is a solution for it? Honestly I don't understand why I get this error, as the BAPI_...Input is in the same DC.
    Thanks a lot in advance.
    Kind regards,
    Timo

    Hi Suresh,
    there's not really a error stack trace as the error occurs when i'm testing the webservice using the testpage.
    When testing the webservice I get the following response:
    HTTP/1.1 500 Internal Server Error
    Connection: close
    Server: SAP J2EE Engine/7.00
    Content-Type: text/xml; charset=UTF-8
    Set-Cookie: <value is hidden>
    Date: Fri, 20 Oct 2006 11:46:21 GMT
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input</faultstring><detail><ns1:java.lang.NoClassDefFoundError xmlns:ns1='http://sap-j2ee-engine/error'>bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input</ns1:java.lang.NoClassDefFoundError></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    So, it looks like it's the bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input which is missing.
    Kind regards,
    Timo

  • How bapi can be used in sd module.

    hi gurus
    can any one elobarate on Bapi what is the use of it.  how it will be use ful for the sd guys.
    thanks in advance

    Hi Nag,
    BAPI : BAPI basically works like a function module. the major difference being that it can work like a RFC. That means it can work from system to system. Mostly the name of a BAPI can be seen in se37 by just giving BAPI_* F4 and you will see a lot of BAPIS
    http://www.planetsap.com/SAP46B_BAPI_LIST.htm
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    BAPI_SALESORDER_CHANGE
    we have a scenario where our client uses a third party software for the plant. The orders generated there all get converted into an XML file. The XML file is read by a BAPI, to create sales order in SAP. This BAPI runs as a batch job at a scheduled time the orders get created.
    Incase of any order failing in SAP, we check the XML going to the BAPI and find the reason and make the necessary corrections.
    http://help.sap.com/saphelp_47x200/helpdata/en/5c/f3f0371bc15d73e10000009b38f8cf/content.htm
    Hope It Helps You..
    Regards..
    Praveen Kumar.D

  • Is there any BAPI for AS02?

    Hi Experts,
    I am guessing, the following idea may work for my problem, but, pls, let me give some info, abt the same.......
    1 - At the sales order creation time, each LINE ITEM creates the SubAsset, say,
    Line_ Item_1 -
    > creates SubAsset_1,
    Line_ Item_2 -
    > creates SubAsset_2, so on
    2 - if some reasons, if the user deletes Line_ Item_1, I need to delete that particlar SubAsset_1,
    so, pls. let me know that,
    1- If the user, deletes the item_1, then I wanna, to delete the created SubAsset_1, so then, I guess, SubAsset_2 shuld be modified as SubAsset_1
    2- Is it works out? makes sense?
    3- If so, Wht is the best method to delete a SubAsset from Asset Master? Is it AS02 BDC or Is there any BAPI or any other?
    thanq.

    thanq,
    1- If the user,for some reason,  deletes the item_1, then I must/wanna, to delete the created SubAsset_1, so then, Is the SubAsset_2 modified as SubAsset_1 in Asset related tables with BAPI_*CHANGE?
    2- Or in other words, Is it possible to DELETE the sub asset? if so, How?
    thanq
    Message was edited by:
            Srinivas

  • More then one BAPI execution in XI

    Hi People
      How to call more then one BAPI in a single scenario ( XI ).
    I need to execute 'BAPI_ xxxx ' and  'BAPI_TRANSATION_COMMIT'.  Since If i execute only 'BAPI_.XXX', data will not save in SAP, so I need to execute  'BAPI_TRANSATION_COMMIT'.
    Please reply as early as possible...
    Thanks & Regards
    shekar
    Edited by: raja shekar on May 28, 2008 11:26 AM

    Hi,
    Check des, they would help u definitely.
    How to use Commit RFC?
    COMMIT for Custom RFC
    Re: BAPI_TRANSACTION_COMMIT
    Thanks,
    Vijaya.

Maybe you are looking for