Regarding Cost Element Group

Hi all,
I have following scenario.
I have account number and i want to find out it's cost element group.
In t-code KAH3 when i enter cost element group i get all the account number in that group.
But the problem is that i have account number and i want to find out in which cost element group this
account number belongs.
Is there is any fuction module from which i can get cost element group from account number or from which table i can fetch cost element group depending upon the account number.
Thanks in advance.
  sachin

Hi Sachin ,
I dont think there is any way to see cost center group from cost center because we never assign any cost center to a particular group in the masters.
If you want to see the cost center groups and cost center hierarchy the go to tcode-OKEON
Regards
Deepa

Similar Messages

  • How do I migrate Cost Element Groups in a batch ?

    I want to migrate Cost Element Groups from 4.7 to ECC6. We've been exporting/importing them individually, but is there a faster way to grab multiple groups and move them to the new environment ?
    One thing of note is that the Chart of Accounts is changing between 4.7 and ECC6 and named differently.
    Edited by: Joe Malloy on Feb 19, 2008 9:35 PM

    Hi ,
    You can go on createing the
    Controlling -Cost Element AccountingCost Elements--
    Automatic Creation of Primary and Secondary Cost Elements--Make Default Settings
    Create Batch Input Session
    Execute Batch Input Session
    BY do this activite u can do the mass process of creating the cost elements.
    Hope this is clear know assign points
    With Regards
    Krishna Singareddy

  • Sender Cost Element Group role in Assessment Cost Element Cycle

    Hello,
    We have an assessment cycle as below:-
    Assessment Cost Element - 6000000
    Sender Rule - Fixed Amount
    Receiver Rule - Variable Portions
    Sender Cost Center - 1000
    Sender Cost Element Group - ABCD
    Receiver Order Group - XYZS
    Sender Values - 2,00,000 USD - Cost Center 1000
    Cost Element Group in Receiver Tracing Factor tab - EFGH,
    When I see the line item report of sender cost center 1000, I am able to see the total value as 2.00,000 USD credited, but I am not sure about the role of Sender cost element group ABCD in this situation.
    Also what is the role of receiver cost element group EFGH?
    Please advise.
    Thanks
    Tapan

    Hi Tapan,
    When you have selected in sender rule fixed amount then the system will transfer that amount to the receiver cost center specified irrespective of the total amount of cost element group existing in the sender cost center. There is no significance of cost element group mentioned in the sender rule then.
    The role of the receiver cost element group in the tracing factor is used to apportion the amount of the sender according to the expenses existing on the orders in your case.
    Regards,
    Divraj

  • How to created an cost element group structure from P&L FSV

    Hi All,
    My client has changed his financial statement version and I have to change the cost element group structure according to the new profit and lost structure of this new FSV.
    Do you know any transaction to do this automatically?. For example the creation of the sets' structure can be done by FSE5, is there any similar for cost element group structure?.
    Many thanks in advance!

    Hi NIketa
    Whats the detailed error message? Can you paste that here?
    Also, check the following, which may resolve your issue
    1. If you are settling to the Top most WBS, i.e. to the project itself, do not do that... Settle it to a lower level WBS, atleast one level lower than the project...
    2. Check if the status of that WBS is REL (released) and
    3. The flag for "acct asst elem." is checked in the WBS element
    Regards
    Ajay M

  • Delete Cost element group

    Hi Gurus,
    I would like delete a cost element group by KAH2. When I try to delete it, the program tells me that is being used in a report.
    I use the feature "Extras -> Where-Used list for group" to find the report in which I am using the cost element group.
    I go to modify the report painter by GRR2 to see in what line is using this cost element group, but I can`t find any line of the report, or in General options of this report, where is using this cost element group.
    It seems that the report is not using this cost element group, however I can not erase, because it always brings me to this report.
    Someone can help me?
    Thank you very much.

    Hi
    You  can remove the cost elements from Cost Element Group just select the cost element Group(Tcode:KAH2) then select the cost element that time the cost element becomes in red colour then right click on it & click on remove (F5).
    Then you can reassign the cost element if required
    Please check & confirm the same
    Hope this will solve your problem
    Regards
    Praveen PC

  • Cost element groups and conrtolling area.

    Dear Experts,
    Is there any possible way I can find out which all cost element groups are coming under a controlling area?
    In KAH3 when i press F4 i dont have the selection parameter as controlling area.
    If not stadard transaction any table?
    regards
    Paul

    Hello,
    When you are working under a controlling area, your controlling area will be set. Otherwise, set your controlling area in OKKS. You cannot work parallely under two controlling areas without setting controlling area.
    Obviously, you will see the cost element groups created under that controlling area. When you press F4 on cost element groups, you must be getting controlling area and must have been greyed out.
    Regards,
    Ravi

  • CO - Cost element group

    Hi,
    We use the tcode KAH1 to create Cost element groups. Here we can organize the cost elements (G\L) as a hierarchy.
    My task is to get the transport table(s) that contains this hierarchy.
    Can somebody help me with that?
    Best regards,
    Mohamad.

    Hi,
    You can all teh tables given below acc to ur req:
    COKA CO Object- Control Data for Cost Elements
    COSP CO Object- Cost Totals for External Postings
    COSS CO Object- Cost Totals for Internal Postings
    CRCO Assignment of Work Center to Cost Center
    CSKA Cost Elements (Data Dependent on Chart of Accounts)
    CSKB** Cost Elements (Data Dependent on Controlling Area)
    CSLA Activity master.
    To fetch the cost element from a given cost element group.You can use code given below:
    Cost Element group can be viewed from field SETCLASS of table SETLEAF.
    To Fetch the relevant cost element from a cost element
    group, we can use FM: 'K_HIERARCHY_TABLE_READ'.
    Sample code for this purpose:
    Call Function module to fetch values corresponding to a
    Cost Element group
    CALL FUNCTION 'K_HIERARCHY_TABLES_READ'
    EXPORTING
    e_class = p_c_class
    e_setid = p_v_setid
    e_kokrs = p_kokrs
    TABLES
    t_nodes = p_it_cenodes
    t_values = p_it_cevalues
    CHANGING
    c_info = v_info
    c_overwrite = v_overwrite
    EXCEPTIONS
    no_controlling_area = 1
    no_chart_of_account = 2
    different_controlling_areas = 3
    different_chart_of_accounts = 4
    set_not_found = 5
    illegal_field_replacement = 6
    illegal_table_replacement = 7
    fm_raise = 8
    convert_error = 9
    no_overwrite_standard_hier = 10
    no_bukrs_for_kokrs = 11
    OTHERS = 12.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    In this FM:
    Export Parameters: p_c_class = (SETLEAF-SETCLASS) i.e '0102' for cost element group.
    p_v_setid= The first four characters is the setclass ('0102'), the next four characters is the controlling area,the remaining characters is the cost element group.
    p_kokrs = Controlling area.
    Tables: p_it_cenodes = TYPE STANDARD TABLE OF ty_seth_node_line.
    p_it_cevalues = TYPE STANDARD TABLE OF ty_seth_val_line.
    Get the cost element in table p_it_cevalues
    Please reward points if you find it helpful.

  • Highest cost element group

    Hi,
    What is the easiest way to get the highest level of a cost element group from a cost element. I know how to get all the cost elements from a cost element group but I want to do it the other was. Is there a functional Module or a BAPI or a method for?
    kind regards
    Maarten

    Hi,
    using tables SETNODE and SETLEAF repeatedly you will know the highest CCGroup.and also using the following FM:(starting with TREEVSELECT)
    TREEV_SELECT_NODES
    Regards,
    Anji

  • Fixed Cost Element Group

    Hi,
    In the Cost Center Actual/Actual Compariosn report I want "COST ELEMENT GROUP" to be fixed to 1000 when ever the report is executing.
    how can i do it?
    Thnaks
    Best Regards
    Gayani

    Hi Gayani,
    Another way to set default values in running report is by using User setting t-code RPC0.
    Execute the RPC0, then on Basic Data tab, you can define any parameter such as:
    - Report Object:  Cost Center Group or cost center value
    - Cost Element: Cost Element Group or Cost element value
    You can also define default value for Planning report, Reporting Period, Report currency, and other setting.
    This setting apply for all SAP standard report.
    Hope this will help you
    Best regards,
    Irhasni

  • Cost Element and Cost element group

    Could You tell me how to chech which Cost Element Group given Cost Element belongs to? Greetings. P.

    Hello
    With Transaction code KAH3 you can able to view the cost element group.
    give your controlling area and cost element group you can easily able to find out the cost element included in concern group.
    If the above answer resove your query kindly provide the marks
    thanks and regards
    Mahesh

  • Cost Element Group - Track Changes?

    Hi - Is there any way of tracking changes made to Cost Element groups? Thx.

    Hello,
    Go to KAH2 and
    Select the cost element group
    Then
    Go to ==> Change documents
    This will give you the list of changes made to the cost element group.
    Regards,
    Ravi

  • Cost Element Group & Cost Element

    Hi Friends,
    Can you please tell me how cost element groups are linked with individual cost elements(Primary and Secondary).
    Is there any standard cost element groups are there. Please let me know.
    Priya

    Hi,
    Cost element groups, like any other group for master data, is used for reporting purpose. By creating a group you unite certain objects and make it possible to present it as one entity in the reporting or use it in allocation processes. There is no such a thing as standard group, as the user chooses for himself how he wants uniting the elements.
    Regards,
    Eli

  • Cost Element Group Setup

    Hi
    How i can setup cost element groups with note pad files
    thanks
    Reddy786

    Hello,
    The system provides a functionality with which you can export and import the groups using text file. However, if you have something in a text file then create a few groups and export the data in KAH2 to find out the format of the text file and then design your file according and then import in KAH2.
    You can find the functionality in top menu > Extras in kah2.
    Kind Regards // Shaubhik

  • Cost Element Group Delete

    Dear Buddy
    Please can any one tell me the procedure to delete the Cost Element Group
    Thanks In advance
    rgds
    BV

    Hi,
    As suggested, go to KAH2, select the group (with a select button), then 'Delete' icon appears and you can delete it. Before this you can check if this group is used by clicking 'where used' button.
    Regards,
    Eli

  • Cost element group - Table name

    Hi Guru,
    Can any body knew cost element group - Table name
    Regards,
    Bharathi.S

    Hi,
    It's stored in SETNODE and SETLEAF tables (class '0102').
    Regards,
    Eli

Maybe you are looking for

  • Data collection in SEM from ECC 5.0

    Hi experts I need have the information online in my consolidation system, the following is my plan a) I want to use real time data transfer from FI to EC CS a) and use the extractor 3EC_CS_1 from ECC to in SEM BCS what happend with calculation of ret

  • Any applicable\recommended Group Policy settings (Local & Domain) for configuring windows 8.1 "gold master image" for collection

    Happy Friday everybody - I'm working on implementing Microsoft RDS 2012\VDI for the folks here at work.  I've read - online - a lot of articles on VDI and RDS 2012 - and have a working model that is working somewhat satisfactorily.  I haven't seen mu

  • Error during background processing which is created by Std.program RFBIBL00

    Hi Gurus,      I am using standard program RFBIBL00 to generate batch session for the Tcode FB01.      My BDC is working fine , if i choose  foreground or display error only option in SM35.But when i process the same session in       background it is

  • Kde3 packages: "non existant prefix '' for kdelibs3"

    I have no ide what happend but today I'm getting this error for all packages for kde3: checking whether make sets $(MAKE)... yes checking for kde-config... /opt/kde/bin/kde-config configure: error: /opt/kde/bin/kde-config --prefix outputed the non ex

  • Lyrics not displaying

    I have a 4th generation, 20GB iPod with color display. I've entered my lyrics properly into iTunes and synced my iPod. (even tried to format the iPod and re-sync) I cannot see the lyrics screen when I press the centre button (4 times) - after the alb