Cost center group language in report

Dear all,
In the Cost centers: Actual/Plan/Variance report (S_ALR_87013611), for one cost center group the description language of the accounts has changed from ES to FR. Unfortunately I am not able to understand why.
How can I switch the language to ES as before? This issue happens only in our Productive system. In Dev & Quality the language is correct.
Many thanks,
Annabelle

Hi,
How do you solve the problem?

Similar Messages

  • Display Cost Center Group Text

    Hi..
    I'm new to abap, and I am working for abap for hr module now. My question will be...
    How can I display a cost center group text in report? Is there a text table for it?
    I get the cost center value from table pa0001-kostl.
    I find the function BAPI_COSTCENTERGROUP_GETLIST by searching this forum. But, the parameters I can get is only for controllingareamask from pa0001-kokrs.
    any help would be grateful
    thanks

    Dear Andreas,
    here is the figure of my question,
    mycompany--Plant1--department1.1--division1.1.1
                                    --division1.1.2
                     --department1.2
                     --department1.3
             --Plant2--department2.1
                     --department2.2
                     --department2.3
    my company has two plants, each plant have departments, and each department has divisions which have their own cost center.
    I want to know which plant the division belongs to by using it cost center. The cost center group of the division will be the cost center of department right?
    please advise...
    Dear Bhavik,
    Thanks,.. but the FM is not return me anything.

  • Cost Center Group and Profit center Group

    Hi All,
    The Client is requested to have Cost Center Group in the CO reports. I have trying to analyse how to get Cost center group in the report or Info Provider.
    When i went to T-code KS03 in ECC ( Display Cost Center), i get the Hierarchy Area field called KHINR, which shows the Cost center grp. Upon discussing with Functional person, he has told that this Field lies in Table CSKS (Cost Center Master).
    Now i am thinking to enhance the Cost Center Attribute Dsrc. with this Field KHINR.
    I just want some suggestions or advice on how to bring Cost center grp and Profit center grp
    Thanks and Regards
    Edited by: Raihaan Khan on Dec 12, 2008 3:35 PM

    Hello Simon, Thanks again for all your FICO resolutions.
    Yes i truly agree that Cost Center Grp is CostCenter Hierarchy,, but i dont understand, y the Client has told that he needs the field KHINR in the Cost Center Report too.
    Actually he wants Cost Center Group wise report and NOT Cost center wise report.
    I have thght of extracting the Complete Std Hierarchy to 0COSTCENTER and then in the report , i can give a Cost Center Hierarchy Variable(probably a selection screen), such that the User can select the Nodes he want and then drill down the CostCenter Groups to see his respective Cost center accounting.
    Please opinionate on this
    Thanks

  • Report Painter: P&L on Cost Center Group,BA(WBS/Internal Order) wise

    Dear Experts, i require to create a report in report painter.
    The requirement is to display P&L account on cost center group wise; if cost center is not mentioned and WBS/internal order is mentioned it should be shown under the respective Business Area and if non of the above is mentioned it should be shown in a separate column (General). The total of each GL should match the trial balance amount.
    Please Guide Me.

    Hi,
    Its little bit complex to accommodate in report painter to in 1page.
    Coz. Cost Center information will get in different library in GRR1
    1AB Cost Centers: Variance Analysis FICTM 07.02.2013 CCSS 
    6O2 Internal Orders SAP 24.03.2000 RWCOOM
    better you can develop with ABAP report.
    Regd,
    Khan.

  • Report restricted to specific Cost Centers of a cost center group

    Dear Experts,
    can you tell me how to achieve the following goal:
    We want to have a report writer report restricted to one cost center group that can be chosen by the user, but only showing in the first column the cost centers starting with "1049" for example that are part of this group and in the second column the cost centers starting with "1039" that are part of the group and so on.
    As far as I know, if we insert a variable on cost center group, we cannot restrict the cost centers any further ... do you have an idea how to proceed?
    Thank you very much!!
    Thomas

    Try it with two sub groups in your main cost cente group, one for the first column, and on for the second column.

  • Function module for custom report for cost center group

    Hello all,
    I wonder, if there is any SAP function module for following query:
    We have got a custom program, which evaluates cost centers. We would like to evaluate a cost center group, like it is available within the report painter - the output screen is splitted into two parts, on the left part there is the cost centre group hierarchy and on the right side, there are the values for the node, which is selected within the hierarchy.
    Is there any standard function module od do we have to program it ourself?
    Thanks in advance

    Hi Peter,
    You have a BAPI which gives you the details of cost centre group, if this is what you are looking for:
    BAPI_COSTCENTERGROUP_GETLIST
    Regards,
    Eli

  • Cost center group report

    Can I run cost center report referencing two cost center groups and two cost element groups. I know we can do multiple selection for cost centers and cost elements but that will not help my cause.
    Lets say we have cost center groups A & B and cost element group 1& 2. We would like a report that shows us Sum of A1 + Sum of B2. This explains why we cant simply use multiple selction for cost center and cost element group. It will also give you an idea of what kind of output we are looking for.
    Any help in this regard will be highly appreciated and points duely assigned.
    Nik

    Hello nik,
            what is the cost center hirearchy you are using. If you are using alternative hierarchy then you can do this by selecting higher level of the A&B.
    regards,
    sankar

  • Get Name for CO Cost Center Group and BGD Processing

    Hi,
    I use these function modules to get the cost center group nodes in the CO hierarchy.
    If I pass it a value that is in two controlling areas
    if prompts another screen to pick which controlling area we want to look in.  My problem is when I try to run this report in the background it gets hung up on this screen waiting for input. any ideas on how to get around this.
    here is the reference code.
    thanks
    Please note that the following logic is parts of SAP example report
    RGSEX001.
    Get the internal Set-ID from the external name of the set
    Selection of sets can be restricted to a specific set class or
    to sets matching a specific table field.
    See documentation of function module G_SET_GET_ID_FROM_NAME
    If the set class, subclass and setname is known, function module
    G_SET_ENCRYPT_SETID should be used alternatively (see RGSEX020)
        CALL FUNCTION 'G_SET_GET_ID_FROM_NAME'
             EXPORTING
                  shortname = w_set
                  old_setid = w_setid
             IMPORTING
                  new_setid = w_setid.
    Read the complete hierarchy (set and all subsets)
        CALL FUNCTION 'G_SET_TREE_IMPORT'
             EXPORTING
                  setid              = w_setid  "Set-ID, not the Setname!!!
                  no_table_buffering = ' '
             TABLES
                  set_hierarchy      = it_hierarchy
                  set_values         = it_values.

    Hi!
    For reading cost center hierarchy you can try K_HIERARCHY_TABLES_READ.
    It returns near the same info as one you've mentioned, works well for single controlling area and I hope in case of ambiguity it will raise one of exceptions provided. Give it try.
    Regards,
    Maxim.

  • Why authorization for cost center groups does not worked ?

    hello all,
    I would like to give authorization for a CO report (S_ALR_87013625) based on authorization values : cost center groups.
    But, unfortunately, it doesn't work. I get a message : No authorization for x of x read records.
    Is it only possible to give authorization on standard hierarchy and cost center ?
    Please, help me
    Thanks and best regards

    hi,
    Run the su53 transaction.See what authorization was missing

  • Functional areas vs. cost center groups for cost of goods sales

    What are the benefits of using functional areas over cost center groups when building your p&l for cost absorbtion or visa versa?  Which of the two is recommended?

    Hi,
    1: a P&L statement does not only contain cost-center related postings, you can have different CO-objects (Internal order, WBS-Element,...)but all of them contain the functional area in its master record.
    The P&L reporting structure (created via report painter) can use account groups but restricted to one functional area for porper P&L structure creation.
    Best regards, Christian

  • Cost center Group & Assessment cycle

    We are running CC reports for CC groups X and Y - Report GR55, Report group 1000 - Run in both currencies Pesos and USD by running in both currency modes.
    Requirement:
    1) How can we see the net balance in CC reports after assessments out = 0 in both Pesos and USD currencies.
    2) Where we can see the link between Cost center Group and Assessment cycle.
    Thanks,
    Raju

    Hi,
    1) You will see the credit entries in the report after the assessment is run. Here, report should have configured in such a way, you can see both debit and credit entries.
    2) If you have assigned the KSB1 Actual cost line report to the report, you can doubte click and see from which cost centers the values have flown through assessment.
    Trust this helps much!
    Cheers!

  • TAble for cost center group in 3.0 F transaction.

    hi, 
    i need to develop a report to extract cost center data from r/3 in 3.0 F version.
    can u guys help me that which table has got entries for cost center group.
    waiting for  your replies,
    Regards,
    Rachana

    hi  ,
    I have checked in csks, cska, cskb, and cssk as well, but i didnt find a field which holds the cost center group information ..please help me as this is a bit urgent ..
    Thanks in advance , 
    Regards,
    RaAchana

  • Displaying only cost center groups

    Hi BW Gurus!
    There's a standard cost center group and cost center hierarchy in the source system that I was able to extract. My cost center infoobject (0COSTCENTER) had that hierarchy data. My question is, in the instance that I want to display only the cost center groups with its corresponding summation results, how will I able to go about it without having to display the whole hierarchy? Is that possible?
    Thanks in advance,
    Maan

    Hi Arun!
    Yes, the hierarchy would be cost center - cost center group.
    Thanks for the suggestions..
    1) The first option seems ideal with a structured hierarchy. The hierarchy I'm dealing with seems very complicated. The cost center group that I need to report on does not necessarily reside on level one of the hierarchy.
    2) It's quite embarrassing to ask but, I've really looked at the standard infoobjects and I haven't seen any that handles cost center group. Any ideas? Or, did you mean that I should create my own?
    Thank you so much again!
    Maan

  • Cost center group select option

    here is my code:
    declaration of select option.
    SELECT-OPTIONS s_khinr FOR csks_itab_group-khinr no intervals.
    at selection-screen on value-request for s_khinr-low.
    at selection-screen on value-request for s_khinr-high.
    Initialization
    initialization.
      perform build_group_option.
      delete adjacent duplicates from csks_itab_group comparing all fields.
    at initialization fir build my internal table called csks_itab_group, which gets the names for the coster center groups then I delect any duplicates.
    still does work, any ideas.
    thanks

    This works.......
    REPORT ZRICH_0001 .
    tables: csks.
    data: begin of itab occurs 0,
          khinr type csks-khinr,
          end of itab.
    SELECT-OPTIONS s_khinr FOR csks-khinr no intervals.
    initialization.
    perform build_group_option.
    sort itab ascending by khinr.
    delete adjacent duplicates from itab comparing all fields.
    at selection-screen on value-request for s_khinr-low.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'KHINR'
                dynprofield = 'S_KHINR'
                dynpprog    = sy-cprog
                dynpnr      = sy-dynnr
                value_org   = 'S'
           tables
                value_tab   = itab.
    at selection-screen on value-request for s_khinr-high.
    start-of-selection.
    form build_group_option.
    *** MAKE SURE YOU MODIFY THIS STATEMENT
    select khinr from csks into table itab
             where kokrs eq 'NSCO'.
    endform.
    Regards,
    Rich Heilman

  • Repot cost center groups,cost element groups and quantities

    Hi
    Is there any report displays only costcenter groups, costelement groups and quantities. No line items are required this is for management purpose.
    thanks in advance
    prasad

    Hi Sunitha,
    Thanks for your immd. reply
    But my requirement is not that
    I need cost center groups, cost element groups and quantities in the same report
    regards
    hariprasad reddy
    accenture - 9963411136

Maybe you are looking for