Different Profit center

Hi Friends,
I have created a debit memo request and tried billing it. But the system fails to create accounting documents. I verified and found that the system is determining a different Profit center and copying the one in the material.
Could you tell me the areas in the config to check this.
Many Thanks
Kumar

Check this thread
[Profit center priority in the RV(Account) document    |Re: Profit center priority in the RV(Account) document]
thanks
G. Lakshmipathi

Similar Messages

  • Need cost of materials of plant to be posted to different profit center

    hi,
    when we create a maintenance order in plant maintenance module, profit center is getting defaulted from the cost center assigned to main work center, all the material costs are psoted to this profit center, but my requirement is cost of materials of specific plant should be posted to different profit center. is there any way i can do this.
    thanks

    Dear Monica,
    One way is to maintain the entries in a ztable for material and cost center relation and implement a proper BAdi/Enhancement.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • Post billing invoice with different profit center for specific cond. type

    Hi Expert,
    I have requirement where for each item in the sales order, when the user create the billing document, the accounting document generated need to use one specific profit center on specific condition type.
    For example, my order profit center in the account assignment is PC1 (derived from material) and it has 2 condition type, Z1 and Z2.
    Currently for this condition type will be posted to 2 different GL account. (Configured in account determination)
    Going forward, the plan is to use same GL account for Z1 and Z2 but specific for Z2 should use different profit center (not taken from account assignment profit center).
    Is this possible and if it is may I know the best way to achieve it?
    Thank you before.

    Hi
    First of all check with the Controlling team wheather profit center can be assigned to the Z2 condition type only.If it is not possible then you assign a new subroutine to Z2 condition type with the help of ABAP team
    Regards
    Srinath

  • Different profit center in Project definiton and  WBS

    Hi,
    Our client facing a problem for closing the project due to  different profit center. In Project definition  the assigned on profit center and WBS they assigned another different profit center . There is not data posted or planed .
    SAP won't allow me to change the Profit Center because it says the project is released.
    Now they try to  close the project but it showing error like different profit center in project definition and  wbs.
    Could you please anybody help to solve this issue?
    Thanks.
    V.K

    From the error message It seems there is a validation using Field exit. Ask your abaper to debug. Then would be able to know the logic behind it.
    Venkat

  • MIRO has a different Profit Center thatn MIGO

    Hi Guys,
    We have a PO , whose account assignment has a Sales Order and the Profit center is being picked from this Sales order while the MIGO document is posted.
    However, when the system is posting the MIRO transaction, the system is picking up a different profit center. I can see a different Profit center in the line items in the MIRO document.
    Why does the system pick a different profit center for MIRO ? Also, when i see the MIRO document, all the items are highlighted in yellow..What does that suggest?
    Any ideas why there is a discrepancy in the Profit Center assignment in the MIGO and MIRO documents?
    Thanks a lot.
    Srikanth.

    Hi
    in OBBH, there is no substitution , but i could find one substitution in GGB1.
    It says, if sales office = xxxx, then use this PC.
    I have analysed that , in MIRO doc, the PC is correct as per the Sales order, but when FI document is posted, the PC is different.
    Is it that the Substitution will be triggered when the FI doc is posted??
    Any clues..
    Thanks
    Srikanth.

  • Issue to different profit center from comman storage location

    Dear All,
    I have two plants and attached to two different profit center but have the comman one storage location.
    i want that if i issue material from different plants ....that must go to the storage profit center attched to that plant irrespective comman storage location.
    Now How to map in SAP ?
    Please guide with full solution !
    Regards,
    Pardeep Malik

    Hi,
    Storage locations are at the plant level, although it can have the identical key, still its attached to different plants (haveing common or different PCs), hence I dont see any bottleneck to map the issues from one plant to another having different PCs.
    Regards
    Merwyn

  • Two different profit center generated after material movement 201

    Hi there:
    Here is my issue:
    After I did movement 201,then I went to mb03 to look at material document, then I click accounting document found that there are two different profit center appeared in two items, first line item is that credit inventory account 20208100, I don't know where does profit center come from in first item? Second item is that debit material consumption 60100000, cost center shows correct which is the one when I populated while doing movement 201, and profit center shows correct, since cost center belongs to it.

    Hi Please see my reply as below:
    This behaviour seems correct... I think your Profit center in Mat master is different than the Profit center of the cost center to which material was issued
    Yes,because profit center in material master is blank in which plant to issue
    Inventory account will always be credited with the PC assigned in Mat master
    Considering the profit center of mat master is blank, so what default value does it be reflected to inventory account?
    Consumption account (If it is created as Cost element) will always be debited with PC of the Cost Center to which material is issued
    It was not created as cost element, based on your theory, it will be debited with PC of the material master, but PC of material master of specify plant is blank, so what default value does it be reflected to inventory consumption account?
    Consumption account (If it is not created as Cost element) will always be debited with PC of the Material master
    Thanks

  • Different profit center in Billing document

    Dear All,
    We have created a Credit memo for a service order.
    In the sales order, a profit has been maintained. But in the Invoice, it is determined different Profit Center in the profit center document.
    What may be the reason for this.
    Regards,
    Mullairaja

    - check profit center in MMR & compare with the one determined in Sales order ( it should be same)
    - Check  in the G/L account,  some billing documents / Credit notes demand for CO objects. Profit center can be determined from the Cost center which is assigned to your G/L account
    Check with FI consultants in Profit center derivation rules.
    regards,
    Reazuddin MD

  • Different Profit Center in GR and Invoice Document

    Hi,
    I have a query in the Purchase order cycle.
    The Profit Center Accounting document has a different Profit Center in the Goods Receipt Document and Invoice Receipt Document. I found that in the case of GR it picks up the Profit Center from Material Master, whereas in the Invoice document it picks up from the Sales Order (MTO Scenario). Hence there is a mismatch.
    Please advise on how i can have a same Profit Center. Where do i need to make necessary corrections.
    Thanks in Advance,
    Safi

    Hi
    in general  sales order picks profit center from  material master   so  same profit center is possible  when  doing GR /IR   Plz chek it
    thanks
    MvNr

  • Sales Order with different Profit Center

    Hi All Experts,
       In material master, i was created profit center PBB2K for part A but it is showing different profit center when sales order created
       Please kindly advise why different profit center show in sales order?
       Thanks
    Regards,
    shirley

    Hi ,
    check 0KEM for any sales order substitution for profit center.
    In genreral the material master profit center defaults to profit center , But at sales order you can change the profit center other wise check 0KEM
    If helpful asign points.
    regards
    Prabhat

  • Customer balance transfer to different profit center

    hi
    i want to transfer the balance of one customer to another, when i am posting the balance it is not asking for any profit center and that balance is going in dummy profit center. how to post the entry .please guide.
    Thanks

    Dear
    Since the customer is created at client level, you need to have/operate a clearing GL to transfer the balance from one customer account to another so that the profit center is inherited to cutomer account from the clearing account.
    Customer A/c Dr
    Clearing A/c (with profit center)
    Clearing A/c Dr (with profit center)
    Customer A/c Cr
    Or you can do trnasfer posting with clearing.
    Regards

  • Transfer pricing within different profit center

    Hi Friends,
    I will like to know that after configuration of transfer pricing. What are we going to do in AKE5 i.e. in the receiver profit center are we defining the WIP. Also are we going to assign WIP i.e. in Profit center 2 every time after the production order completed. For e.g. I am giving the scenario.
    Profit center 1                               Profit center 2                                 Profit center 3
    Raw material + profit -
    >WIPprofit   -> Finished goodprofit
    Regards
    Anand

    Hi Anand
    I may be of a little help here.  From what I know is that transfer pricing is mainly done with the material ledger, but do not activate it unless you are very sure that you want it.
    A Production order is generally created with a BOM (Bill of material) and if necessary routing.  The order collects costs such as raw materials and overhead costs such a activities from cost centre accounting.  This order can then be settled to stock of semi-finished stock. 
    If this then moves with additional cost it is probably the material ledger that you need.  (but be sure about this)
    The semi-finished product is then included in the BOM of the finished product and is used in the product costing.  When it is confirmed it can be settled to finished goods stock.
    That is as far as I know.  I hope it gives some where to start.
    Kind regards
    Dawn

  • Cost elements Assign to different profit center

    Hi All,
    I have 3 costelements are, these cost elements i have to assign to profit center.
    Where i have to assign these things, i mean which transaction code i have to use.
    Thanks
    Rams
    09833624515

    Dear,
    Use transaction OKB9 to assgin cost elements to a profit center.
    One cost element can be assgined to one profit center only.
    Regards,
    Chintan Joshi

  • Different profit center in MM03 or RV60SBAT

    Hello,
    I have the need to insert different profit centers for the same material.
    Each profit is linked to a particular document type (contract Type) and the system has to select profit on the strength of contract type.
    Can I manage it in MM03 transaction or in invoicing program (RV60SBAT)?
    Thanks in advance

    From the error message It seems there is a validation using Field exit. Ask your abaper to debug. Then would be able to know the logic behind it.
    Venkat

  • F110 - Automatic Payment Program (APP) - Profit Center wise

    Has anyone worked on plant wise/profit center wise payments before? We have done necessary enhancement to populate profit center in vendor line item at the time of posting invoice. We are doing profit center wise proposal run in F110 by using additional selection criteria in F110.
    However, the problem arises when different profit centers want to make payment to same vendor. In such cases when one profit center has created the proposal for the vendor, F110 locks the vendor for any other payment proposal by making an entry in REGUS table. Hence, when the other profit center creates proposal in F110, the vendor is shown as locked. The lock is released only after the payment run.
    All the profit center will run proposal at the same time and after that payment run will be carried out by central treasury. Hence, I cannot schdule the payment run of different profit center at different time.
    Is there any work around? Is it possible that same vendor can be contained in different proposals of different profit centers?
    We were thinking of doing an enhancement to delete the entries from REGUS table after proposal run. Would it be right way?

    It is standard behaviour in F110 for locking vendor.
    Try luck to use same paying company code for all your profit center company codes.  Keep update

Maybe you are looking for

  • Update rule from attribute

    Hi, my problem may be simple to solve, but I dont know too much ABAP so need some help. I want to populate Cost Center in my cube by mapping it to Responsible Cost Center (attribute of Order Number). How can I do that? Thanks, Frank

  • Playlist not sorted correctly on iPhone

    I have a playlist that is sorted by time descending with about 570 songs in it. Since upgrading to OS3 the playlist on the iPhone is sorted by last date played, not the sorting in iTunes on my MacBook. I tried a re-sync this morning with no change -

  • Mathing record with partner code else all recoreds shown in '+'

    SELECT t.dnd_id, t.dnd_no, t.dnd_size, t.dnd_type, t.dnd_iso_code, t.dnd_carrier, t.dnd_pool_code, t.dnd_hub, t.dnd_booking_no, (SELECT agt_area_agt_code FROM tab_mdl_agent_cont_area WHERE agt_area_hub_code = t.dnd_hub) vwagtcode, t.dnd_bl_no, t.dnd_

  • Quick selection tool vs clipping path

    what is better to silhouette an image? a quick selection tool with follow up detailing or a clipping path?

  • Error loadin external files in FL3.1 in s60

    Hi I used mobile packager for s60 and FL3.1 has a cery good performance but unfortunately my swf file couldn't load other movies located in storage card/others folder I used this command loadMovieNum("file:///e:/others/myapp.swf", this); also tried l