Profit Centre inheritance with different segment

Hello,
If we enter two line journal one in P&L and the other Balance sheet. If we enter different segments on each line the inheretance for the profit centre refuse to work and we have to enter manually.
Please help.

The inheritance only works when there's no account assignment given on the line
item which inherit the value from offsetting accounts or manually given value is
unique on the account (See SAP Note 1085921).

Similar Messages

  • Error: java.util.map can not be inherited with different arguments

    Hi,
    I am getting following error while building the source code.
    C:\venus\src\com\martquest\messaging\msgio\MqMessageIOObjectCarrier.java:36: java.util.Map cannot be inherited with different arguments: <> and <java.lang.Object,java.lang.Object>
    [javac] public class MqMessageIOObjectCarrier extends Properties implements IMqMessageIOObjectCarrier
    What should I do to resolve this issue?
    Thanks
    Prachi

    Hi,
    I am getting following error while building the
    source code.whose source code? If it's yours, you'd better look at where you are defining and using Map. The error code tells you exactly what's wrong.

  • FF7B - Cash management Profit centre in the line item

    Hi,
    We are facing one problem at our end.
    We have upgraded our system to ECC 6 with new gl activated.
    Also activation of cash management (lequidity forecast) exist since 4.6C .
    Now with New GL activation in place and When we run FF7B -  ( Transaction to check the lequidity forecast ) it shows the summary details but when we drill-down to a line item level and copy profit centre as well as segment field from the layout for the line items the fields are appearing blank.
    Is anybody have the idea how to populate or update the profit centre as well as segement field in the same line item data in future and also for the past data.
    Thanks & Regards
    Mahesh

    this is available in Enhancement Pack 5.

  • Profit Centre in F-38 and F-55

    Hi
    Good day to you.
    In Statistical Posting in Vendor and Customer (T Codes F-38 and F-55), Profit Centre field is not available.
    We tried to achieve Posting to Profit Centre Field in F-38 by substituting the value entered in Assignment Field (ZUONR) into Profit Centre.
    The following is what we did:
    1. First we said If Company Code = "XXXX" then Substitute Profit Centre Field with value in Assignment Field.
       It worked fine for entries through TCode F-02 as well as F-38 (meaning the values in Assignment Field was substituted in Profit Centre Field.
    But since we wanted to restrict this Substitution to only the Transactions posted through F-38, the Prerequisite was changed to
    2. If Company Code = "XXXX" and Transaction Code = F-38, then Substitute Profit Centre Field with value in Assignment Field
    and posted a Transaction through F-02, Profit Centre Field is not substituted with Value in ZUONR.
    But strangely even for Transactions through Transaction Code F-38, Profit Centre Field is not substituted with Value in ZUONR.
    If anybody could throw light on why this prerequisite is not working and how to get around it.
    I would be really very grateful for all assistance in resolving this matter.
    Regards
    Siddique

    Do a test with the simulation on Substitutions
    From menu: Substitution / Simulate
    An other option is:
    Extras and use from there the trace.
    perhaps it is little type error in your substitution

  • Profit centre report drill down total

    Hi
    I am executing S_ALR_87009722 proft centre report from period 0 to 1. The balance of a bank account is  76,729.18.
    When I drill down to actual line items it's showing the break-ups amounting to 3,320.17; which is only the break up for period 1. Shouldn't this show the break-up of the balance as at the report date?
    We need to see the break-up for 76,729.18 (Balance as at end of period 1).
    The Profit centre currency is different to company code currency and the transaction currency.
    Any assistance is appreciated.
    Thanks & Rgds
    Nadini

    Some things you might to check:
    Actuals/ Plan values?
    Same version?
    Has somebody changed report recently?
    Have you run line item transactions individually and compared?

  • Transfer Price of Profit Centre

    I am trying to activate the Transfer price setting for the Profit Centre.  We have one controlling area with currency INR.  I have made the settings for Profit Centre account with currency type 20 (controlling area currency-INR) with valuation view (Profit Centre valuation).  However when I try to execute 8KEP for Multiple valuation, I get the following error. I have maintained the C+V Profile for both Legal valuation & Profit Centre valuation with Currency type 10 (Company code currency).
    No PCA valuation is defined in company code 1000
    Message no. FAGL_LEDGER_CUST140
    Diagnosis
    No PCA valuation has been defined in company code 1000.
    System Response
    If classic General Ledger Accounting is active, the system only checks the Customizing settings of (classic) Profit Center Accounting.
    If New General Ledger Accounting is active, the system first checks the Customizing settings of (classic) Profit Center Accounting. If (classic) Profit Center Accounting is not active, the system only checks the Customizing settings of New General Ledger Accounting. In all company codes of controlling area 1000, the PCA valuation must then be set in the currency specified in the currency and valuation profile.

    This is a BUG in std SAP ..there is a SAP note to resolve the error...
    ROMY

  • Two locatization Company ( UK/CHINA) profit centre not same )

    I dopn't know why our locatization company ( UK. \ CHINA ) company profilt cntre inside feature not same.  pls advice how checka and change.

    UK uses version A and China uses version B. Yes, the profit centre feature is different between this 2 version. Version B is a bit more detail as they have multidimension function. I don't think there is way to change them. However, I believe they standardized this feature in version 8.81 for all localizations.

  • Deletion of Profit Centre

    Isn't it possible to delete a profit centre ?  While I am trying to delete a profit centre (after removing the segment also), system is saying that "profit centre scenarion is active" (or) " the facility is not available to the profit centre object".  I have not posted any data to the Profit Centre which is to be deleted.

    Hi,
    If you are activated profit center accounting in FI, we can't delete the profit center, Because profit center accounting is used as scenrio update in New GL.
    but the we can lock the profit center for postings in the master data.
    Regards
    Srinu

  • Multiple inherited with generics classes

    Hello all, here is my generic observer/ subject code.
    package jstock;
    * @author yccheok
    public interface Observer<S, A> {
        public void update(S subject, A arg);
    public class Subject<S, A> {
        public void attach(Observer<S, A> observer) {
            observers.add(observer);
        void notify(S subject, A arg) {
            for (Observer<S, A> obs : observers) {
                obs.update(subject, arg);
        private List<Observer<S, A>> observers = new CopyOnWriteArrayList<Observer<S, A>>();
    }However, when I try to implements more than one class (single class only is ok), I get the following error :
    /home/yccheok/Projects/jstock/src/org/yccheok/jstock/gui/MainFrame.java:40: org.yccheok.jstock.engine.Observer cannot be inherited with different arguments: <org.yccheok.jstock.engine.RealTimeStockMonitor,java.util.List<org.yccheok.jstock.engine.Stock>> and <org.yccheok.jstock.engine.StockHistoryMonitor,org.yccheok.jstock.engine.StockHistoryServer>
    public class MainFrame extends javax.swing.JFrame implements
    Here is the code which I am implementing the generic classes.
    public class MainFrame extends javax.swing.JFrame implements
    org.yccheok.jstock.engine.Observer<RealTimeStockMonitor, java.util.List<org.yccheok.jstock.engine.Stock>>,
    org.yccheok.jstock.engine.Observer<StockHistoryMonitor, StockHistoryServer>
    May I know how I can avoid the error message?
    Thank you.
    cheok

    However, when I try to implements more than one classMore than one interface, you mean.
    May I know how I can avoid the error message?You can't implement a generic interface more than once.
    http://angelikalanger.com/GenericsFAQ/FAQSections/ProgrammingIdioms.html#Can%20a%20class%20implement%20different%20instantiations%20of%20the%20same%20parameterized%20interface?

  • No Default Profiit Centre on the Different Cash Journal

    Hi Friends,
    Can you please tell me why it does not default to profit centre on the
    different Cash Journal. I understand that for
    the "Cash Payments" entries but the "Cash Receipt" entries, should it
    not default to the Profit centre of the Cash Journal that I am working
    on.
    The above question is asked by my client.
    Please suggest friends.
    Regards
    Naveen.

    thx issue is solved.
    Naveen.

  • Segment derivation from profit centre

    Hi gurus,
    Is there any enhancement available by which I can derive the segment for a partcular entry. I mean I want to have multiple segments for a single profit centre for which assignment of segment in the profit centre master is not possible. i am in a project where the client has such a scneario. For example it has same customer for two different prduct lines. Now say it has received payment from teh customer on adhoc basis. Now if I want to clear this amount with two invoices of two different segments but same profit centres then how system will derive the segment.
    Is there any enhancement, derivation rule or anything which can address this requirement.
    Please help.
    Regards.

    Hello Sharmistha,
    You can use this BADI :  FAGL_DERIVE_SEGMENT .You will find this in Financial global settings->tools->customer enhancements->Business Addins->Derive segment.
    Or else you can try and see if FI Substitutions  will work for you or not and assign it to your company code in OBBH.
    Thanks,
    Sai.

  • Material Code with Different profit Centers in One Plant

    Hi Experts,
    There is one requirement in my project that given in detailed below please:
    Material code                     Plant                       Profit Center
    MSR009                            2011                       2011
                                                                            2012
                                                                            2013
    one material code, one plant and 3 profit center,. the material should trigger with different profit center from sales order to revenue booking..
    So is it possible to map that configuration in SAP, if yes please guide me
    Thanks and regards
    Madhu

    Hi,
    Profit centre is trigured through
    Material master
    Company code + Cost element
    When you create sales order it id derived form material master if you maintained in material master
    Else at the time of invoice creation and account posting it is derived from company code + cost element combination(Which is mentianed in OKB9 by FICO people)
    kapil

  • Business Area, Profit Centre and Segment

    Hi,
    In my current business scenario shall I use Business Area, Profit Centre and Segment all together at a time or if I use Business Area and Profit Centre, Segment configuration is not required there. Kindly guide me these 3 activities and its exact purposes in the business.
    With regards,
    Samrat

    Hi ,
    We are using  ECC 6. In our business scenario profit centre is there. Under Document splitting there is a Business Area and Profit centre in config area.. Should we mention Segment field under document splitting. If we mention segment under Document Splittng inspite of Business Area, what are the problems may arrises ? Or if we mention all 3 (Business Area, Profit Centre and Segment field) in document splitting what may effect in other areas.
    Kindly guide me.
    With Regards,
    Samrat
    Edited by: Samrat Roy on Nov 2, 2008 4:42 PM

  • Urgent:Profit centre differing from SO to material master

    Hi SAP Gurus
    May i know where from Profit centre gets populated in the SO(Line item level-A/c assignment Tab-Profit centre field).
    To my understanding it gets populated from material master.
    But i have a sales order wherein the PC has PC$$$$ but when i checked the material master data ,i could find PC##### in the sales general plant view.
    Why it is differing?
    What i need to check further?
    Regards
    Sush
    Edited by: Sushma Gopichetty Laxman rao on Oct 8, 2008 3:49 PM

    Hello Sushma,
    May i know where from Profit centre gets populated in the
    SO(Line item level-A/c assignment Tab-Profit centre field).
    To my understanding it gets populated from material master.
    But i have a sales order wherein the PC has PC$$$$ but when
    i checked the material master data ,i could find PC##### in the sales general plant view.
    Why it is differing?
    What i need to check further?
    As you have cited that the profit Center set in Material Master record is different to the value available at Sales Order, please check in following points:-
    1:- Check the Change History log of the particular Sales Order.
    2:- Check whether there are any User exit being used which is altering the value of Profit Center of the Sales Order with the help of Technical consultant.
    Kindly share you observation based upon these above pointers.
    Regards,
    Sarthak

  • How to change Field SEGMENT in Profit Centre Master

    Dear Experts,
    We have wrongly created a profit centre with wrong segment in the master and we have done some transactions with the same profit centre. Now we want to correct the SEGMENT field . But the field is greyed out when using KSE2 t code.
    Please advise how can we change the segment field.
    Regards,
    Alok

    Hi
    Please go through the below mentioned links
    Modify segment in Profit Center
    Segment in document posting
    Hope it may help you to solve your problem
    Regards
    Praveen P C

Maybe you are looking for