How to post an Acquisition Transaction?

Hi,
I have already configured the consolidation of investments in SEM-BCS, however when i want to run the consolidation of investments, the system is saying "There is no consolidation of investments detected" hence i believe i need to post the acquisition transaction first so that this process can run.
The acquisition transaction to be posted is whereby a Subsidiary from a group is purchased by another subsidiary under the same group as follows :-
Before Acquisition :-
Group G1 = Subsid S1 + Subsid S2 + Subsid S3
After Acquisition of S2 by S3 :-
Group G1 = Subsid S1 + Subsid S3
Whereby Subsid S3 will contain Subsid S2 under it.
My question is, how do i post this transaction in SEM-BCS?
1) Do i have to post this in R3 using a journal and then the SEM-BCS will pickup this from R3? Or there is a special transaction screen in SEM BCS where i can post this kind of diversiture transaction directly into SEM BCS?
2) If i were to post this using a journal in R3, do i have to assign the trading partner values on the GL accounts so that the system knows this is a transaction involving inter-companies acquisitions?
Thanks in advance.

The posting of the acquisition depends on the COI configuration for location of values. If it uses totals, then an antry in the source ledger or posting level 01 or 10 in BCS to record the acquisitions should suffice. If the location of values for acquisitions is set to use additional financial data (AFD) then it must be posted in BCS via the AFD task.
Further, if the acquisition is to be posted in the source GL it is important to have the subsidiary as the trading partner on the investment account. The mapping normally transfers this as the investee for the investment account. It may be necessary for you to also update the mappings to ensure this is the case.
For acquisition, it is also important that the cons group master data has the same correspoonding period as the period of first consolidation for the subsidiaries being acquired. Otherwise you will get a message telling you that the period of first consolidation is incorrect or something of that nature.

Similar Messages

  • How to post a acquisition entry in Dep area 30 (for Non Leading ledger)

    How to post a acquisition entry in Dep area 30 (for Non Leading ledger N1)
    In our scenario, following configuring is being set up:
    1 Book depreciation IAS/IFRS 1 0L
    30 LOCAL 3 N1
    51 Property Tax 0
    60 DELTA 6 N1

    Hi Saurabh,
    Create a new custom transaction type by coping existing TTYPE 100 and restrict the transaction type which allow posting for dep.area 30 and do posting in FB01L by selecting ledger group.
    Regards,
    Mukthar

  • How to post Asset acquisition by using BAPI_ACC_DOCUMENT_POST

    Hello All,
    Can we use the bapi BAPI_ACC_DOCUMENT_POST to post ASSET ACQUISITION?
    I have posted ASSET ACQUISITION by using the transaction code F-90 successfully and the values are updated in asset aswell. but, I could not generate the same result by using the bapi BAPI_ACC_DOCUMENT_POST.
    Can anybody please suggest me how should I use this bapi to post Asset acquisition?
    Thanks in advance for your help.
    Regards,
    Vijay

    hi,
    BADI AC_DOCUMENT is available in the system.
    This badi is called whenever the account document is posted in the system.
    With the help of this badi, i guess you can change the t.code value.
    regards,
    Vinod.

  • FEBA - How to post two or more transactions at the same time?

    Hi,
        one of our banks sends the statemets with many lines that belongs to the same transaction. We have to post partially one line, and afterwards the other line. Any of you know how to post two lines at the same time from the bank statement?
    Thank you in advance,
    Miguel

    Hi,
    I'm sorry for replying so late.
    The solution I reached was to change the a few things in the standard.
    Now I have a new "context menu item". I select two or more transactions and I right-click the mouse. I select that "context menu item" and the next part of the code adds the total amount of the transactions to look for the correct post for the first transaction. Once posted automatically, the next transaction is posted automatically by the system.
    I hope you understand my English. I've problem with technical FI terms.
    Here you are the code:
    First I added a new contextual menu item:
    CL_FEBAN_ALV_GRID=============CCIMP
    call method e_object->add_function
        EXPORTING
            fcode = 'BS_POST_ITEMS'
            text = text-002.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        call method e_object->add_function
            EXPORTING
                fcode = 'ZBS_POST_ITEMS'
                text = text-Z02.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        call method e_object->add_function
            EXPORTING
                fcode = 'BS_KILL_ADVICE'
                text = text-004.
    CL_FEBAN_ALV_GRID=============CCIMP
    when 'BS_POST_ITEMS'.
        call method cl_feban_propagator=>raise_event
            EXPORTING
                i_event = 'POST_ITEMS'
                i_ref_to_item = l_ref_to_item.
    *{ INSERT DHTK904078 2
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZBS_POST_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'ZPOST_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'BS_LOCK_ITEMS'.
            call method cl_feban_propagator=>raise_event
                EXPORTING
                    i_event = 'LOCK_ITEMS'
                    i_ref_to_item = l_ref_to_item.
    CL_FEBAN_PROPAGATOR===========CM001
        when 'POST_ITEMS'.
            raise event post_items
                exporting i_ref_to_item = i_ref_to_item.
    *{ INSERT DHTK904078 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        when 'ZPOST_ITEMS'.
            data: zvalor(1) value '' .
                export zvalor from 'X' to memory ID 'ZFEBA01'.
                raise event post_items
                    exporting i_ref_to_item = i_ref_to_item.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        when 'LOCK_ITEMS'.
            raise event lock_items
                exporting i_ref_to_item = i_ref_to_item.
    Now, I proceed to calculate the total amount of the selected transactions to look for the correct one to post.
    LNEW_FEBAF01
    *     user parameter
            l_feban_position type c.
            field-symbols: <items> type item_tab_type.
    *{ INSERT DHTK904077 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zvalor(1) value '',
            zkwbtr type kwbtr,
            kwb type kwbtr.
        import zvalor to zvalor from memory ID 'ZFEBA01'.
        if ( zvalor is not initial ).
            if not i_ref_to_item is initial.
                assign i_ref_to_item->* to <items>.
                loop at <items> into h_item.
                    select single kwbtr
                        into kwb
                        from febep
                        where kukey = h_item-kukey and
                            esnum = h_item-esnum.
                            zkwbtr = zkwbtr + kwb.
                endloop.
            endif.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
        refresh g_picked_items.
        if not i_ref_to_item is initial.
            assign i_ref_to_item->* to <items>.
            loop at <items> into h_item.
                move-corresponding h_item to h_picked_items.
                append h_picked_items to g_picked_items.
            endloop.
        endif.
        submit rfebbu00 and return
            user sy-uname
            with anwnd = r_doc->*-anwnd
            with s_kukey in s_kukey
            with s_esnum in s_esnum
            with buber = g_posting_area
            with mregel = '1'
            with function = 'C'
            with mode = g_mode
            with p_bupro = g_bupro.
    *{ INSERT DHTK904077 2
    *--> Miguel Estu00E9vez - 17/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        if ( zkwbtr is not initial ).
            select single kwbtr
                into kwb
                from febep
                where kukey = h_kukey-low and
                    esnum = h_esnum-low.
                    zkwbtr = zkwbtr - kwb.
            export zkwbtr from zkwbtr to memory ID 'ZKWBTR'.
        endif.
    *<-- Miguel Estu00E9vez - 17/06/2008
    *} INSERT
        refresh s_kukey.
        refresh s_esnum.
        clear h_kukey.
        clear h_esnum.
    endloop. "loop over all picked items
    call function 'CUSTOMIZED_MESSAGE'
        EXPORTING
            i_arbgb = 'NEW_FEBA'
            i_dtype = '-'
            i_msgnr = '110'.
    RFEBBU00
    * original transaction currency provided and posting area = 2.
            ftclear-selvon = febep-fwbtr. "INSERT - mpEURO
        ENDIF. "INSERT - mpEURO
        CONDENSE ftclear-selvon NO-GAPS.
    *{ INSERT DHTK903977 1
    *--> Miguel Estu00E9vez - 16/06/2008
    * RIPI 24/04/2008 - Conciliaciones
    * Permitir conciliar mu00E1s de un apunte a la vez
        data: zkwbtr type kwbtr.
        import zkwbtr to zkwbtr from memory ID 'ZKWBTR'.
        if ( zkwbtr is not initial ).
            ftclear-selvon = zkwbtr.
            clear zkwbtr.
        endif.
    *<-- Miguel Estu00E9vez - 16/06/2008
    *} INSERT
    APPEND ftclear.
    ** Begin of comment C5053248
    * perform druck_buzei_ftclear using ftclear-agkon.

  • How to post an Idoc (INVOICE02) for non-po Invoice (MIRO transaction)

    Hi,
    I want to Post an Idoc for non-po vendor Invoice through MIRO transaction. I want to use INVOICE02 basic type. In the line item we need to enter G/L account , Cost center and line item amount. But I am not able to enter the same in the INVOICE02 Idoc. It will be nice if you please let me know how to post non-po Idoc through MIRO transaction.
    Thanks
    Rama
    Edited by: Rama Sengupta on Nov 25, 2009 3:57 PM

    Hi Raja,
    Check this out.
    Inbound IDocs are triggered by either external systems (edi, wms etc) or can be triggered by inhouse applications in SAP to post a application document.
    1. EDI_DATA_INCOMING can create a IDoc from a file on the OS layer. It just needs a IDoc flat file containing control and data records, it will create an Idoc from it if the control record successfully matches a inbound partner profile parameters.
    2. IDOC_INBOUND_ASYNCHRONOUS can be triggered by external/internal programs to creae IDoc withing SAP, whereas IDOC_INBOUND_SYNCHRONOUS can be used by inhouse SAP programs to create inbound Idoc.
    3. WE19 can create and post an existing inbound Idoc to application
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • How to post credit memo for  a customer usin F-27 transaction using IDOC .

    Can somebdy please advise as  to how to post credit memo for  a customer using F-27 transaction using IDOC ?
    Thanks in anticipation ,
    Ambar patil .

    Hi,
            https://websmp207.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700001305932005E
    https://websmp201.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000051812008E
    Thanks,
    Mansoor

  • How SAP posts transactions

    Hi,
    I need to understand how SAP posts transactions (posting logic) that ultimately end up in the trial balance (FMUSFGA table).  I figure developers will probably know this.
    I need to know the fields (and tables) that together govern how SAP posts transactions.  If there are transactions that are used to configure automatic posting processes to the G/L in SAP, I need to know the transaction codes.  If there is a process document that describes this in detail, could someone send it to me?  << Personal information removed >>.
    Thanks,
    Kevin
    Moderator message - Cross post locked
    Edited by: Rob Burbank on Dec 2, 2009 9:44 AM

    An update function module has been called for posting the document, it is  POST_DOCUMENT
    Mode of the update is synchronous
    program name : SAPMF05A
    Include name : MF05AFF0_FCODE_BEARBEITUNG
    if you analyze the source code in the Function Module POST_DOCUMENT, append statements are being used for updating the database.
    Edited by: jeevitha krishnaraj on Mar 23, 2010 12:24 PM

  • Document Splitting problem while posting asset acquisition using F-90

    Hi,
    We are using ECC 6.0 with document splitting functionality and are facing problem while posting asset acquisition using F-90.
    The transaction entry details are as below:
    Document Type - KR
    Vendor Line Item PKey - 31
    Amount - 10000
    Asset Line Item with PKey - 70, Transaction Type - 100
    Amount - 10000
    The Document Splitting Rule - 0000000012 is used and the Field Status Group for the Vendor Reconciliation Account and Asset Reconciliation account have Cost Center, Profit Center and Segment as "Optional" field.
    The Balance Sheet Item - Asset Reconciliation Account has been created as
    Secondary Cost Element - 90.
    The Profit Center and Segment field have been made mandatory and zero balancing is also set in the settings for Document Splitting.
    While posting asset acquisition using F-90, we are getting the error message - "Balancing Field "Profit Center" in line item 001 not filled"
    The first line refers to the Vendor Line item.
    Please let me know how to overcome this error.
    Regards,
    Ramanand

    Please follow the below path and do config :-
    IMG>FA>Asset Accounting>Integration with the General Ledger>Additional Account Assignment Objects>Specify Account Assignment Types for Account Assignment Objects
    here you have to put KOSTL (Cost center) for both against APC and Dep run for each Dep area.
    Thanks
    Pyare

  • How to post  xpenses in asset accounting

    hi,
    how do i post freight expenses to an asset account and at the same time credit the vendor who has provided the freight. can i do it in abzon ?
    what i think is
                <b>Asset A/c
                to expenses a/c</b>  in abzon (giving expense a/c as offsetting a/c)
                <b>Expense A/c
                to vendor A/c</b>   in fb60
    tell me if it is correct, or there is any other procedure and correct me if accounting entries are wrong

    Hi,
    As per generally accepted accounting procedures, any expenses incidental to bringing the asset to use need to be capitalised, which means that they need to be added to the value of Asset Account.
    The accounting entry can be
    Dr Asset
    Cr Clearing A/c
    On invoice
    Dr Clearing A/c
    Cr Vendor
    On payment of freight to vendor
    Dr Vendor
    Cr Bank
    Please check the relevance to the issue in context. you can post to the asset with an appropriate acquisition transaction type.
    Rgds.

  • Duplicate Posting - Asset Acquisition

    Hi Gurus
    We are on 4.7 in a Production Environment.
    In fiscal year 2007 we had acquired 150 assets. During that time, we had wrongly posted acquisition twice for all the 150 assets. We have already closed the fiscal years for 2007 & 2008. Our company then went through a corporate split & we were existing as a separate legal entity from fiscal year 2008 beginning. During the beginning of the year, we uploaded the assets using transaction AS91 & also uploaded the GL balances. Now, we have found out about the duplicate posting. Our management wants to reverse the duplicate entries as on 31st March 2008 without disturbing the balances of the previous years.
    Pls advise how to achieve this. Also, what accounting entries will be passed in this case.
    Regards

    Hi
    To Reverse the Duplicate Entries posted use the Transaction ABSO - Miscellaneous and give the transaction type 160 and give one adjustment account.
    Regards
    Venkat

  • How to test a new transaction type in Asset Accounting?

    Hello everybody,
    I need to explain how to test if the creation of a new transaction type in Asset Accounting was correct.
    In other words, under what condition what should be the expected result.
    The requirement was:
    Create 2 new transaction types in asset accounting in order to book various business transactions:
    -     Create a new transaction type in asset accounting in order to book the credit memo.
    -     Create a new transaction type in asset accounting in order to book the scrapping cost.
    And we make it throught AO73 transaction - Define Transaction Types for Acquisitions u2013 and OAYA transaction - Limit Transaction Types to Depreciation Areas u2013
    Many thanks in advance,
    Alvaro

    Hi Alvaro,
    I think best is you test a posting with the standard transaction typ delivered by SAP first. For example for credit memo in the aqcuisition year the standard tty is 105. If you post with this transaction type you then can check the document and you will see what line items are posted in which way.
    To create your own transaction type:
    You can check the customizing in the standard transaction type and then you could copy it to your own transaction type and give it your own name, and which you may then want to limit to certain depreciation areas via OAYA as you rightly pointed out.
    For retirement by scrapping I would suggest the same: make a posting using the standard delivered transaction types and then check the document to see how the system posts. The make the required admustments in your own created transaction type copied from the standard transaction type.
    I hope this helps,
    Kind regards,
    Brigitte

  • Data inconsistency: posting with restricted transaction type (FAA_POST047)

    Hi colleagues!
    I have the following error:
    Data inconsistency: posting with restricted transaction type
    Message no. FAA_POST047
    Diagnosis
    You are trying to post in company code 1000 with transaction type 130 in ledger group 0N. According to table TABWA, this transaction type is limited. Nonetheless, according to your entries, you want to post to area 11.
    System Response
    Using limited transaction types is obsolete and would lead to an inconsistent posting in this situation. The system rejects the posting.
    Procedure
    Use a transaction type that is not limited. And, if possible, choose the ledger group and/or depreciation area on the initial screen.
    According to specific accounting we shouldn't post to one of the depr. area, so most of the tr.types are restricted to post to all areas except this one.
    Because of this, posting from MM with acc.assignment 'A' is impossible - I have this error.
    Any ideas how to solve?
    Thanks in advance

    Hi Anton
    This looks like your transaction type -130 is limited to post only in ledger group-0N as per the transaction type configuration. Due to which system is unable to post all the ledgers and hence this lead to inconsistency.
    Please verify the transaction type 130- in configuration T code - OAYA and see if it is restricted by depreciation area (eventually allow to post only ledger group- 0N.
    Tcode - OAYA (Limit Transaction Types to Depreciation Areas)
    please verify and let us know the update. hope this helps
    Best Regards
    Jomon

  • How to post gain/loss on exchange rate from Money Market

    Dear Sap Expert,
         I need your kindly help about posting gain/loss in Treasury with money market type.
         My scenario use the product type 55A  - Interest rate instrument  and transaciton type = 200 borrowing in Foreign currency transaction as the transaction as belows,
    Date                   Flow Type     Name                       Amouunt      currency     Exchange rate         Amt.Local currency
    19.10.2011         1105             Borrowing               10,000            USD               30.00                       300,000
    30.10.2011         1120             Final repayment       10,000            USD               30.00                      300,000
        For the normally the system generate current exchange rate from the configuration .After that I try to change the Exchange rate manually in Flow type 1120 from 30.00 to be 31.00  then  the Amt.in Local currency changed to be 310,000 and the flow type gain/loss from exchange rate does not generate ( In Loan Management I can do it)
        On 19.10.2011 I use t-code TBB1 to post the borrowing transaction (1105)
        On 30.10.2011 I use T-code TBB1 to post the Payment transaction but the gain/loss account does not happen.
        For my question Can the system post  document for flow tpe 1120 (on 30.10.2011) with exchange rate realized gain/Loss automatically? or how should I do to make it correctly.
    Thank you very much for your suggestion.
    PK

    Hi,
    your customizing for Derived Business Transactions requires DBT_B flows in your PMP in order to post realized gains/losses.
    Regards,
    Lorenz

  • How to Post a a debit and credit in background? Reclassificaton

    Hi Gurus,
    I have a question regarding how to post a debit and credit in background? In fact I create an internal table and displayed in ALV grid where there are the amounts in local and transaction currency which are atypical. And after I have to post them for a reclassification because those amounts are not correct depending it is a vendor or customer.
    I would like to know if there is a function that I can use. I found a bapi 'AcctngGLPosting' but to be honnest I don't know how to use it. There is no example.
    Ayone could please help me?
    Thanks in advance.
    Regards,
    Mohamed.

    Hi,
    Check this for a example for BAPI_ACC_GL_POSTING_POST
    [http://www.sapfans.com/forums/viewtopic.php?p=546963&sid=6f418d93956fdc91bdb5e7544a9d77ef]
    Regards,
    Vik

  • How to post a reduction of Investment support creted by ABIF?

    Hi All,
    in 2010 for an asset Iu2019ve posted an Investment support, by t.code ABIF.
    In 2011 a part of that Investment support has been revoked.
    Could anyone tell me how to post this reduction? Which t.code? Which transaction type?
    My investment support measure is u201CZIu201D. For this measure, SAP has created the tree follows transactions type:
    - IZI
    - JZI
    - KZI
    My SAP release is 6.0
    Thanks for your help.
    G.

    Hi : )
    I know this thread is quite old, but I recently had the same problem and was able to change an automatically created transaction Type eg. I, J and K using transaction AO73_INV.
    This allowed me to copy transaction type K and I was able to conigure my own transaction type for investment support which now allows posting of investment support refund without the retirement of the asset and reduces the amorisation as expected.
    Hope this helps : )
    Tanja

Maybe you are looking for

  • T43 bios problem when trying to update OS

    I need help fast please.  I know this probably isn't the smartest thing ever but my T43 is currently running XP Pro and I am trying to upgrade to Windows 8.1  I have checked everywhere and it all says that the computer will handle running it. However

  • How to remove the old context files after upgrade to R12.1.1

    Hi, I upgraded 11.5.9 (DB 9.2.0.4) to 12.1.1 (DB 11.2.0.2). In the Applications Manager under AutoConfig menu, I noticed that I have 4 context files: 2 for DB Tier and 2 for Apps Tier. Apparently two of them are old from the 11i system. How can delet

  • Java.io.IOException:

    Hi, I use Jdeveloper10g to create an ADF application which can call papi-client of BPM standalone. I add the code copied from http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/papi/index.html?t=modules/papi_ws/configuration/t_Launching_PAPI_WS_

  • Logic of BSX = GBB, PRD etc in FI-MM integration

    Hi all, I like to have your input on the below logic Can we say that valuation class 3000 assigned in BSX should equal to all the offsetting setting account assigned to same valuation class in OBYC (GBB, PRD Etc.) BSX = GBB , PRD etc. I am asking thi

  • Presenting characteristic only at one level

    I have a query where the result set is presented as a hierarchy - at the state level, then district level and then at the office level. One of the characters displayed is the office manager. I have to show this value only at the office level and not