Multiple Account Assignment in PO

Dear,
All Experts.
I want to keep multiuple account assignmen in PO, however I think it is not possible as I see in Item Level only one option is there.
I want to maintain WBS & Internal Order Display OR Mandatory field in PO. My real account assignment will be Cost Center.
1 ) How can I achieve this ? 
2 ) Can I distribute the cost between two cost objects ? Like as WBS & Cost Center ?
E.g :- I am buying Rs 1000/- Material Rs 700  should be booked to WBS & Rs 300 should be booked to Cost center.
Is it possible ?
3 ) Can we settle the cost center ? If I booked the cost over cost center and transfer to WBS.....
Experts help will be appreciated.
Regards,
Sharvari Joshi.

Hi Sharvari
Yes, it is possible to choose multiple account assignments in PO
For this, your system needs to be atleast on EhP3 or above... AND you need to switch on relevant business functions..
For EhP4, the business function is LOG_MM_MAA_1... Similarly, there will be some function for EhP3 also.. As soon as you go to IMG, the 1st node in IMG belongs to business functions / enterprise extensions...
For more details, Refer link http://help.sap.com/erp2005_ehp_04_sp/helpdata/en/42/fbded750e61febe10000000a422035/frameset.htm
Go to Bus Func in SAP ERP > Logistics > Mat Management > Multi Account assignment
Regards
Ajay M

Similar Messages

  • Down payment with multiple account assignment PO

    Dear Experts,
    While posting down payment request through transaction F -47 with
    reference to purchase order we are getting below given error.
    In that purchase order we have given
    multiple account assignment i.e. multiple cost centers (e.g. Cost center A  50% cost center B 10% Cost Center  C 40% i.e. distribution by %)
    but
    system is flagging message
    Item 00010 of purch. document 4500024875 contains no suitable account
    assignment
    Message no. ME717
    What will be the possible cause?
    regards,
    Abhijit

    Hi,
    In the request f-27 tr.code give the purchase order which item you want to give ie., for above said example 10 is a line item of 4500024875 - purchase order and beside you have to mention
    10(lineitem) 4500024875 (purchase order) 2009 (year)
    and system will take that request against the above purchase order.
    Regards,
    satish

  • GR and GR Non Val indicator in R/3 PO for multiple account assigned SC's

    Hi,
    We are on SRM 3.0(EBP 4.0) and R/3 4.7.
    We have implemented the BBP_CREATE_PO_BACK badi for setting or clearing the GR and IR indicators under certian conditions.
    But for Multiple account assigned SC's we get an error message "06181 With non-valuated GR, please also enter GR i ndicator ".
    We have tried implementing note# 872000, but this has not solved the issue.
    The PO's get created only if we force the GR indicator when transferring the data into R/3.
    It seems clear that while creating the PO the system is encountering the GR Non Val indicator but not the GR indicator, so its throwing the error message (we get the same error message when we create the PO from R/3 with GRnon val indicator checked and GR ind unchecked).
    The proposed solution is that in the same BADI, along with clearing the GR indicator, we will also clear the GR non val indicator.
    This can solve the issue if the indicators are transferred as it is from EBP.
    But can anyone tell me if these indicators are also checked/changed in any FM/program in R/3 before the PO is created?
    Is there any customizing setting which is affecting this particular behaviour?
    Regards,
    Srivatsan

    Hi Srivatsan ?
    In ECC, you have a configuration point :
    Materials Management->Account Assignment->Maintain Account Assignment Categories
    Here you can untick the indicator you want by account assignment category;
    Kind regards,
    Yann

  • ERROR WHILE POSTING MIRO FOR MULTIPLE ACCOUNT ASSIGNMENT (ASSET)

    Hi Guys,
    We created  a PO for asset with multiple account assignment. And we immediately do IR instead of GR.
    While doing IR it is giving error
    1) Quantity delivered is zero - Warning message
    2) Account 245350 requires a Transaction Type or is Invalid - Error message
    what may be the problem. how can we eliminate and post it
    Regards
    palani

    Hi,
    I would assume the G/L account you used was not properly set up.  Did you get the same problem if you try to change to another G/L account?  Perhaps, get your FI specialist to look into this G/L account-related error and verify it.
    Cheers,
    HT

  • 'BAPI_PO_CREATE1'  Multiple account assignment is not possible for AFS item

    'BAPI_PO_CREATE1'  -> This BAPI works perfectly without the  'account assignment' option . But  for purchase requisitions which have account assignments  BAPI returns the error  - E|8W |185   |Multiple account assignment is not possible for AFS items.
    Can somebody please help me to get this error resoleve .
    My coding I have done like below.
    DATA: pohead  TYPE bapimepoheader.
    DATA: poheadx TYPE bapimepoheaderx.
    CONSTANTS : c_x VALUE 'X'.
    DATA: exp_head TYPE bapimepoheader.
    DATA: return  TYPE TABLE OF bapiret2 WITH HEADER LINE.
    DATA: poitem  TYPE TABLE OF bapimepoitem WITH HEADER LINE.
    DATA: poitemx TYPE TABLE OF bapimepoitemx WITH HEADER LINE.
    DATA: posched  TYPE TABLE OF bapimeposchedule WITH HEADER LINE.
    DATA: poschedx TYPE TABLE OF bapimeposchedulx WITH HEADER LINE.
    DATA: POACCOUNT  TYPE TABLE OF BAPIMEPOACCOUNT WITH HEADER LINE.
    DATA: POACCOUNTX TYPE TABLE OF BAPIMEPOACCOUNTx WITH HEADER LINE.
      pohead-comp_code = '1000'.   "IEQ1 plant. "'1000'.
      pohead-doc_type   = 'NB'     .
      pohead-creat_date = sy-datum   .
      pohead-vendor = EKKO-LIFNR. "'0000500004'.
      pohead-purch_org = purch_org.
      pohead-pur_group = purch_grp.
      pohead-langu      = sy-langu   .
      pohead-doc_date   = sy-datum.
      poheadx-comp_code  = c_x.
      poheadx-doc_type   = c_x.
      poheadx-creat_date = c_x.
      poheadx-vendor     = c_x.
      poheadx-langu      = c_x.
      poheadx-purch_org  = c_x.
      poheadx-pur_group  = c_x.
      poheadx-doc_date   = c_x.
      poitem-po_item    = iLineItem.      "1.
      poitem-material   = req_item-MATERIAL.   " '000000000040000234'.
      poitem-plant      = req_item-PLANT.
      poitem-quantity   = req_item-QUANTITY.
      poitem-net_price  = NET_PRICE.
      poitem-price_unit = PRICE_UNIT.
      poitem-shipping   = 'Z1'.
      poitem-preq_no    = req_item-PREQ_NO.
      poitem-preq_item  = req_item-PREQ_ITEM.
      poitem-acctasscat = 'K'.
      APPEND poitem.
      poitemx-po_item    = iLineItem. "1.
      poitemx-po_itemx   = c_x.
      poitemx-material   = c_x.
      poitemx-plant      = c_x .
      poitemx-quantity   = c_x .
      poitemx-tax_code   = c_x .
      poitemx-item_cat   = c_x .
      poitemx-acctasscat = c_x .
      poitemx-net_price  = c_x.
      poitemx-price_unit = c_x.
      poitemx-shipping   = c_x.
      poitemx-preq_no    = c_x.
      poitemx-preq_item  = c_x.
      poitemx-acctasscat = c_x.
      APPEND poitemx.
      POACCOUNT-PO_ITEM = iLineItem.
      POACCOUNT-SERIAL_NO = iLineItem.
      POACCOUNT-GL_ACCOUNT = '0000211010'.
      POACCOUNT-SD_DOC = '0001001056'.       
      POACCOUNT-ITM_NUMBER = '000100'.       
      POACCOUNT-CO_AREA = '1000'.
      APPEND POACCOUNT.
      POACCOUNTX-PO_ITEM = '00001'.
      POACCOUNTX-SERIAL_NO = '01'." '01'.
      POACCOUNTX-PO_ITEMX = 'X'.
      POACCOUNTX-SERIAL_NOX = 'X'.
      POACCOUNTX-GL_ACCOUNT = 'X'.
      POACCOUNTX-SD_DOC = 'X'.
      POACCOUNTX-ITM_NUMBER = 'X'.
      APPEND POACCOUNTX.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader  = pohead
          poheaderx = poheadx
        IMPORTING
        exppurchaseorder = ex_po_number
        expheader        = exp_head
        TABLES
          return    = return
          poitem    = poitem
          poitemx   = poitemx
          POACCOUNT = POACCOUNT
          POACCOUNTX = POACCOUNTX.

    I  found the answer

  • Urgent plz...Error: Multiple Account assignment in  BAPI_REQUISITION_CREATE

    Hi All,
    I'm using BAPI_REQUISITION_CREATE to create the PR . The PR is created successfully with service lines. The service lines for PR item has to be assigned to different account assignment. My problem is that account assignment is not getting assigned to the service line for multiple account assignment cases, instead the account assignment is blank for the sevice line.
    Here is part of my code.
    For Account Assignment
    t_requisitionaccoun-preq_item = '00010'.
    t_requisitionaccoun-serial_no = '01'.
    t_requisitionaccoun-g_l_acct = '0000630010'.
    t_requisitionaccoun-cost_ctr = '0801112560'.
    append t_requisitionaccoun
    t_requisitionaccoun-preq_item = '00010'.
    t_requisitionaccoun-serial_no = '02'.
    t_requisitionaccoun-cost_ctr = '0801111710'
    t_requisitionaccoun-g_l_acct = '0000610090'.
    append t_requisitionaccoun
    t_requisitionaccoun-preq_item = '00020'.
    t_requisitionaccoun-serial_no = '01'.
    t_requisitionaccoun-cost_ctr = '0801111710'
    t_requisitionaccoun-g_l_acct = '0000610090'.
    append t_requisitionaccoun
    For Service account Assignment
    *<b>PR item 10</b>
    Service item 1
    t_requisitionsrvaccass-pckg_no = '0000000002'.
    t_requisitionsrvaccass-line_no = 2. " line 1 is the header for service
    t_requisitionsrvaccass-serno_line = '01'.
    t_requisitionsrvaccass-quantity = '10'
    t_requisitionsrvaccass-serial_no = '01'
    APPEND t_requisitionsrvaccass.
    Service item 2
    t_requisitionsrvaccass-pckg_no = '0000000002'.
    t_requisitionsrvaccass-line_no = 3.
    t_requisitionsrvaccass-serno_line = '01'.
    t_requisitionsrvaccass-quantity = '10'
    t_requisitionsrvaccass-serial_no = '02'
    APPEND t_requisitionsrvaccass.
    *<b>PR item 20</b>
    Service item 1
    t_requisitionsrvaccass-pckg_no = '0000000004'.
    t_requisitionsrvaccass-line_no = 2. " line 1 is the header for service
    t_requisitionsrvaccass-serno_line = '01'.
    t_requisitionsrvaccass-quantity = '10'
    t_requisitionsrvaccass-serial_no = '01'
    APPEND t_requisitionsrvaccass.
    With this code, what I get is the blank account assignment for PR item 10 and correctly filled account assignment for PR item 20.
    Does anyone done this before and can give me some help. Thanks.

    Hi, can you send me an example of this BAPI.
    I have the same requeriment, i'm new with bapis
    thanks

  • PO with hundreds of multiple account assignment lines on service line level

    Hi, experts,
    I want to create a external service PO with multiple account assignment.
    However, in the service line item level, when I click on the multiple account assignment, I could only enter 97 lines. But I need to create around 1000 account assignment lines for a single service line.
    Is it possible to extend the no. of account assignment lines inside the service line level? May I know how to do so?
    Thanks & regards,
    James

    I'm facing a similar error. 
    What I think it's happening is that for technical reasons the program involved only delivers 99 line items... To make things worse, When you try to create an invoice for that full item you are going to get an error bc the invoice reserves line 99 for unplanned account assignments.
    The suggestion from SAP is to create further items with 98 account assignment items or less.
    Have a look at these notes: 486808, 651784
    Regards,
    Nelson
    PS: Please rewards points for helpful answers

  • Multiple Account Assignment details for Service PRs

    Hi,
           I have developed a RFC for creating PRs. For multiple service PRs, multiple services are getting created but account assignment details getting created only for the first service line item. Iu2019m using BAPI_REQUISISTION_CREATE. Please provide me a solution.
    Regards,
    N.Senthil

    hi all,
          the issue has been resolved by passing the below mentioned values.
          wa_item_data-distrib = '1'.      "FOR MULTIPLE ACCOUNT ASSIGNMENT based on the quanlity
          wa_item_data-part_inv = '1'.     "FOR MULTIPLE ACCOUNT ASSIGNMENT
    solution got from
    http://wiki.sdn.sap.com/wiki/display/ABAP/BAPI_REQUISITION_CREATE
    http://www.sapnet.ru/viewtopic.php?p=9306
    Regards,
    N.Senthil

  • MIGO in case of multiple account assignment.

    Hi,
    I have created PO with multiple account assignment. AAC is P.
    While doing MIGO, FI document is not getting generated.
    Can anyone plz explain how multiple account assignment functionality works?
    Regards
    Nilesh

    Hi
    Its a standard practice that if there is multiple account assignment, the proportion will not be appearing at the time of MIGO. It will get updated only at the time of Invoice verification.
    Regards,
    Lakshmanan Krishnan

  • GR Printing For Single Line Item With Multiple Account Assignment.

    Hi All,
    There is PO for projects (Account Assignment -P - Network) in which in a single item consist of multiple account assignment.
    Noe while entering the GR I select "Collective Slip" option but when the GR is posted system automatically select option "Individual slip" and seprate line item are printed for each account assignment.
    The printing program is standard SAPM07DR. The SAP version is 4.7. Can anyone tell what is ther any setting in configuration or is it problem in program or smart form
    Thanks & Regards,
    Omkar

    hi
    please check your form and routine used to print.

  • Multiple Account Assignment Distribution by Percentage in EBP

    Hi Gurus,
    We are in SRM 4 SP13  and ECC 4.6C ,Classic Scenario.The SC creates a PR in the backend and from that  PO subsequently.
    When we are creating a SC with Multiple Account Assignment  and Distribution by Percentage to different cost centres   the PR created  with
    Distribution :  Distribution by percentage  and
    Partial Invoice : Distribute in Sequence. This is for materials
    But for Services it is created as
    Distribution :  Distribution by percentage  and
    Partial Invoice :Distribute Proportionally.
    For services Partial Invoice is working fine and for materials it is Picking "Distribute in Sequence"
    Is this a standard behaviour  or any thing to be changed .Please let me know.
    Thanks in Advance.
    Rajesh

    Hi there,
    Standard SRM Hardcodes the partial invoice indicator to Progressive when          
    sending POs to SAP in the Classice Scenario:                                                                               
    SPOOL_PO_READ_BAPI_EXPORTS hard codes the value of po_items-part_inv              
    to 1 that is equivalent to "Progressive fill-up" in R/3 POs & REQ.                                                                               
    It is not possible to create from EBP to backend some PO-documents with           
    multiple account assignment and partial invoice indicator = 2 (which is           
    proportional distribution because there is no possibility to set this             
    indicator on the account assignment creen in EBP and theris no Badi               
    to do it so far. This is a missing functionality from SAP.                                                                               
    You still could use LIV with partial invoice indicator= 1 and then you            
    can change to partial invoice propotional in backend manually.                    
    This is not comfortable but it is possible so far.                                
    You can see in the following code from the mentioned Function how Service and material documents are treated differently
    ======================================                                                                               
    set distr. indicator only for the dummy item for services         
    for material items and the service lines                          
    it is derived from distribution type in EBP                       
        IF next > 1.                                                    
          IF po_items-item_cat = '9' OR                                 
             po_items-item_cat = '1' .                                  
            po_items-distrib = '2'.    "prozentuale Verteilung          
          ENDIF.                                                        
          po_items-part_inv = '1'.      <<<<       Hard Coded to "1"    
          MODIFY po_items INDEX h_index.                                
        ELSE.                                                           
          CLEAR po_items-distrib.    "prozentuale Verteilung            
          MODIFY po_items INDEX h_index.                                
        ENDIF.                                                          
      ENDLOOP.                                                                               
    CHECK NOT po_items[] IS INITIAL.                                                                               
    ======================================         
    Or possibly use Badi BBP_CREATE_PO_BACK
    Hope this points you in the right direction.
    Regards,
    Matthew

  • Multiple account assignment for asset

    Hi,
    I had created PO with multiple account assignment for asset. PO is created with one line item having 5 qty and in multiple account assignment 5 assets are entered with qty distribution.
    I have issue with commitment distribution for all the account assignment. when i post migo(GR) the value is posting for only first one asset not for all.
    So in the purchase order for the remaining account assignment commitment remain left.
    Reagrds,
    Umesh
    Edited by: Umesh Agrawal on May 15, 2009 6:43 AM

    Hi,
    1st check in OME9 t.code for account assignment A, the selection of 2(Multiple account ***)in field ID: AcctAssgt Scrn and Distribution field as 1.
    Then during PO creation for single line item  & in Item details TAB, in account assignment segment, you enter qty with asset number (A1) with G/L account for 1st Line and for 2nd line keep  qty. with asset number(A1) with  G/L account ( different G/L Account) OR enter  qty with asset number (A1) with G/L account for 1st Line and for 2nd line keep  qty. with another asset number(A2) with  G/L account (different G/L Account)
    ####Example-1: in account assignment segment     , if you have
    G/L account----
    Asset
    12345u2026u2026u2026u2026u2026u2026u2026u2026A1
    12346u2026u2026u2026u2026u2026u2026u2026u2026A2
    12347u2026u2026u2026u2026u2026u2026u2026u2026A3
    12348u2026u2026u2026u2026u2026u2026u2026u2026A4
    Having a concept that GR is non-valuated and accounting entries in invoice (without tax) are:
    Vendor A/C: Cr
    G/L account (12345): Dr
    G/L account (12346): Dr
    G/L account (12347): Dr
    G/L account (12348 ):Dr
    #####Example-2: in account assignment segment     , if you have
    G/L account----
    Asset
    12345u2026u2026u2026u2026u2026u2026u2026u2026A1
    12345u2026u2026u2026u2026u2026u2026u2026u2026A2
    12345u2026u2026u2026u2026u2026u2026u2026u2026A3
    12345u2026u2026u2026u2026u2026u2026u2026u2026A4
    Having a concept that GR is non-valuated and accounting entries in invoice (without tax) are:
    Vendor A/C: Cr
    G/L account (12345): Dr
    Regards,
    Biju K

  • Multiple account assignment

    Hi
      For PO with multiple account assignment how can we post an invoice with a different amount than PO.
      thank you

    Hi
    Try this one.
    http://help.sap.com/saphelp_46c/helpdata/en/75/ee0de955c811d189900000e8322d00/frameset.htm

  • Multiple account assignment category for one line item in PO

    Dear Experts,
    We are on SRM 5.0 ECS
    One line item of a PO has multiple account assignment category with the cost distribution for
    1. Cost Center - 50%
    2. Order          - 50%
    Is it possible?
    As per my understanding one line item in a PO can have only one account assignment category
    Regards
    Mick

    Hi,
    Yes it is possible by Po line item.
    Just go to transaction bbp_poc through the web interface.
    Select your PO
    Select your line item PO.
    goto the account assignment tab (item overview)
    you get a cost distribution field in percentage
    then you get a cost distribution button : click it and you get several lines where now you can split your 100% in as many lines as you want.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Multiple account assignment and copy of po line item quantity to x lines

    Hi,
    I am wandering if it is possible to automate the copy of the first line presented for 10pc in multiple account assignment  screen on PO line item level to 10 lines with quantity 1 in the same multiple account assignment screen. This is of course related to the second step we want to examine which is the creation of Assets for these 10 multiple account assignment lines
    Looking forward to your proposals
    Edited by: David Reynaers on May 19, 2011 5:09 PM
    Edited by: David Reynaers on May 19, 2011 5:23 PM

    Hi David,
    First keep the PO line item Qty to 1 , then select multiple account assignment the first line with QTY 1 will be defaulted
    Select the first line and choose copy just beside copy icon the new icon will appear "insert account assignment item"
    Select on right side you have two options "Insert Once" , "Insert several times" select several time system will default Pop up
    Insert number of times 9 , Now change the line item Qty. to 10
    Thanks
    Diwakar

  • Multiple account assignment for limited PO

    Hi experts,
    Currently need to create a limit PO (item category B) with acct assignment category (P project).
    however, i need to maintain 2 project codes under the "WBS element" field.
    using limit PO, i can only maintain 1 project code.
    Appreciate if anyone can advise where can i configure (or is it possible) to have such implementation for PO creation. Thanks.
    Regards,
    JL

    Hi
    I have also checked that multiple account assignment is not possible for Limit PO's ( Item category B)
    But You can post to Multiple Account assignment objects at the time of Invoice Verification.
    Thanks & Regards
    Kishore

Maybe you are looking for

  • Can't create mcafee plug-in object: TypeError: Components.classes[cid] is undefined

    I updated to Firefox 4.0 and ever since then, I get this message when I try to open Firefox: can't create mcafee plug-in object: TypeError: Components.classes[cid] is undefined I have a Mac and have McAfee protection for Mac. This problem did not hap

  • Logic keep changing midi presets

    this started happening after ML upgrade, if i leave logic open and do somwthing eltse on the computer, when i go back to  logic it has changed  the presets on my tracks, it states that it is the preset i had but plays back a totaly diferent one?

  • Slapd segfaulting - triggered by WGM's Computer account view

    I am running Server 10.4.8(PPC). I have been attempting to add another fileserver (Linux, Samba 3.x) to the domain managed by OSX. At some point, despite only running 'net ads join' on the Linux box and the following on the OSX server, an invalid rec

  • Rearranging project window?

    Other than moving projects into a folder I can't seem to rearrange the order of projects. I'm getting a long list in my project library and have begun making folders to cut down on clutter but other than move the timelines into the folders I can't do

  • INSTANCE TERMINATED AUTOMATICALLY

    i am using Oracle 10.2.0.1.0 in Windows XP My database terminated automatically then again i restart my instance its work fine and it take too much time to execute procedures I got some error from alert log file those are below please any one help me