HOW TO DELETE PROFIT CENTER GROUP.

i am trying to delete profit center group using tcode KCH2 it is not permiting to delete it showing error "Group 2122 is still in use" how to delete group.
Moderator: Please, search SDN and avoid posting ijn CAPITAL letters

HI,
you can only delete the group if you ensure that it is not used anymore. in KCH2, use "Extras / Where-used List for group" functionality to identify where the group is used.
Best regards, Christian

Similar Messages

  • How to deleted profit center group from alternate hierarchy

    Hi All,
    I had created a alternate profit center hierarchy in tcode kch5. I want to delete one profit center group, but system is not allowing me to delete the same.
    I tried to delete the profit center group through tcode kch2 or kch3, but system is not allowing me to so, please help me know the procedure of the same.
    Is it possible to change position of profit center group in alternate hierarchy(kch5), please let me know the procedure of changing the position of the profit center group in alternate hierarchy
    Thanks & Regards,
    Prafful Kansal

    Please select the profit centers under the group and remove first than delete the group.
    Thanks
    Mohan

  • How to update profit center group?! Please help

    Hello All:
          We upgraded to ECC6.0 from 4.6C and I am getting an error below when I call some transaction that uses this profit center group:
    "Profit Center group XXXXXXXX not updated. The function is not supported for the selected object"
    Could anyone please tell me how to resolve this issue? All answers will be rewarded.
    Thanks.
    Mithun

    Thanks for the reply Rob. No, that is the only information I have! I just get a popup with that message!
    Thanks.
    Mithun

  • How to get profit center group and its description

    According to three tables(as below), i get profit center group, how to get its description?
    CEPC  (Profit Center Master Data Table)
    SETLEAF
    SETNODE
    PS:(Referrence to teh link fields in table)
    For Profit centre Group ( SETLEAF-SETNAME )
    Select BSEG-BUKRS / BSEG-PRCTR from BSEG.
    SELECT SINGLE SETNAME INTO WA_SETNAME
    FROM SETLEAF
    WHERE SETCALSS = '0106'
    AND SUBCLASS = BSEG-BUKRS
    AND VALFROM = BSEG-PRCTR
    i can get two records, why?

    Hi,
    I am not sure of the significance of this table...
    But looking at the table structure it is having LINEID as one of the key fields..
    So you can have more than one record for the same combination..
    Thanks,
    Naren

  • How to find profit center group for any profit center

    Hello,
    KCH3 is the transaction code.
    When you select ant profit center group and hit enter you will see the entire hierarchy, profit center groups and profit centers belonging to the group.
    Now my question is i have a report where i need to display the hierarchy of the profit center that is fetched, i.e. i am getting the profit centers from FLAGFLEXT (data base) table.
    Now i need to display the hierarchy from the top node till the profit center that is fetched in the report.
    Please suggest, BAPI_PROFITCENTERGRP_GETDETAIL only gives all the profit center groups in one internal table and all the profit centers in one internal table.
    I am looking for a place/ function module or a table that returns the relation between the profit center group and profit center.
    Thank you.

    Hi,
    In Table SETLEAF,
    1. Pass in field SETCLASS as '0106'.
    2. Pass in field SUBCLASS with controlling area.
    3. Pass Profit center in Field VALFROM.
    4. You will get Group name in Field SETNAME.
    Regards,
    Ashok.

  • Profit center Group

    Hi iam working on a report to list all open customer invoices. I need to list them with respect to profit center group. I have the profit center.Pls help me how to find profit center group for that profit center.Hierarchy is the top node.
    Thanks.

    hi
    good
    go through this link which ll give you clear idea about the profit center group.
    http://help.sap.com/bestpractices/industry/serviceindustries/v346c_us/BBLibrary/documentation/B30_BPP_04_E.doc
    go through these tables.
    CEPC Profit Center Master Data Table
    CEPCT Texts for Profit Center Master Data
    thanks
    mrutyun^

  • Report painter - profit center group

    Hi all,
    How do i make profit center group available in the selection screen before executing the report.
    or.
    I wanted profit center group report, while executing the report how to make profit center group as selection Criteria
    Pls it is urgent.,assured full pint.
    Thanks,
    Sujai C

    Hi.
    First of all, through transaction GS01 create a set ID for profit centers.
    Give table GLPCT, let the set type be the default (basic set) and give field name RPRCTR. Then define the range of profit centers you want. If you want all the profit centers give * in the "from value field".
    Then create a variable through transaction GS11. Give table and field as above, choose variable type set and at the default set field choose the set you created.
    Finally, at report painter go to Edit/General Data Selection and select profit center.
    Check both flags (for entering sets and variables) and give at the form field the variable you've made.
    Now the progit center group will be available in the selection screen with default value the set you've made.
    Regards

  • How to create master data source for Profit center group in source system

    Profit center group information is available in SAP(T-code:kch3). But, I want to have this information in BW too.
    Can anyone tell me how to create a datasource for Profit center group? And which SAP table is able to feed master data for this information?
    Many thanks
    rajatina.

    HI ,
    It looks lilke we need to use the FM like 'G_SET_LIST_SELECT' to get the Profit
    Here ais note from the forums to get profit center group from table
    From Table SETLEAF,  Field SETCLASS  =  '0106'. Field SUBCLASS with controlling area. Profit center in Field VALFROM.
    You will get Group name in Field SETNAME.
    Regards,
    Sathya

  • How to add the Profit center Group in the PA report KE33.

    Hi Frnds,
    How to add the Profit center Group in the PA report KE33.Iam not able to find PC group in the list to add to the Charateristics already added.

    Hi
    PC group is not available as a Char in COPA..
    if you want to do that, either create a Char Hierarchy in KES3 for the Char Profit Center
    OR
    Create a WW char in KEa5 and write a derivation rule using the method "Enhancement" .. Write ABAP Code in COPA0001 exit
    bt, Ajay M

  • How to find the profit center group for a profit center?

    How to find the profit center group for a profit center?

    Hi,
    try this also
    In order to pass the setid parameter of the FM, you have to concatenate the following things
    Setid + KOKRS (Controlling area) + Profit Center Group into one variable.
    In my example below, I have declared as constants and concatenating to gv_setid.
    gc_01016 is the set id for profit centers
    gc_kokrs is the controlling area
    gp_pprct is the Profit Center group entered in the selection screen.
    You will get KOKRS value from the cepc-kokrs.
    data :   gc_0106(4)   TYPE c VALUE '0106',
               gc_kokrs      LIKE cepc-kokrs VALUE 'ABCD'.
               gv_setid          LIKE sethier-setid,
               gt_set_values_1   LIKE setvalues OCCURS 0 WITH HEADER LINE.
      CONCATENATE gc_0106  gc_kokrs gp_pprct INTO gv_setid.
      CONDENSE gv_setid.
      CALL FUNCTION 'G_SET_TREE_IMPORT'
        EXPORTING
          client                    = sy-mandt
          fieldname                 = 'RPRCTR'
          langu                     = sy-langu
          setid                     = gv_setid
          tabname                   = 'GLPCT'
          no_table_buffering        = 'X'
        TABLES
          set_values                = gt_set_values_1
        EXCEPTIONS
          set_not_found             = 1
          illegal_field_replacement = 2
          illegal_table_replacement = 3
          OTHERS                    = 4.
    By using the above FM you will get the values into gt_set_values1 once sys-subrc value eq 0, it is internal table which consists of all the profit centers for the proft center group.
    Regards,
    Venkatesh

  • How to create a profit center group using MDG-F?

    Given that there is a controlling area CA created in ECC. under which there is a standard profit center hierarchy let us call it ABCD created. Under ABCD, there is a Profit Center Group PCG01 already created in ECC. Now what steps (or screens) I should go through on MDG-F if I want to create another profit center group PCG02 that should be placed under PCG01? Thanks for your help.

    Hi ,
    First of all you need to create Profit Center from Create Change Request by selecting the change request type of PCTR Single Processing.
    Complete the all approval of the Profit center. Once your PCTR gets activated , it will go & sits into MDG tables ONLY.
    You have to make a replication setup of Local replication for replicating this created PCTR via MDG to the ECC Back end so that you can see the same data in the CEPC table.
    Once you are done with this, use Collective Processing form Change Request of PFCG role where you can create your PCTRG & PCTRH . You can assign the PCTR to PCTRG & PCTRH accordingly.
    Hope this answers your all questions.
    Best Regards,
    Kaustubh

  • How to get the member of cost element group from Profit center group

    Hi Guys,
                  I need to get the member of cost element group from Profit center group like in Tcode KCH3 and the same from Account Group like in Tcode KDH3.
    Any Function Module available to get this data.
    Thank U for Ur time.
    Cheers
    Senthil

    I am closing this thread.

  • ERROR in profit center group creation...

    hai...i want to UPLOAD ALL THE LIST OF PROFIT CENTER DETAILS INTO SAP USING BDC SESSION METHOD..for that purpose i tried to create profit center using  TCODE -KE51, but profit center group is not available in my system...i tried to create profit center group seperately using transaction KCH1 and assigned  that number   on profit center creation screen(KE51)..but i got the error..PROFIT CENTER GROUP 1  CANNOT BE USED HERE....how to solve this error.????may be  is there any error in creation of profit center group hierarchy..???..

    HI
    Thanks for the support, but  I have already checked Ambiguity Check but there is no duplicae groups/profit centers are existed.
    I tried the same through KCH2 and also path (profit center hierarchy maintenance), but the same error is existed. I have checked with different groups also. But any group it is throwing the same error.
    Ex if i am giving group K123456 which is not existed. But the same error is throwing.
    Can anybody please suggest is there any programe for correction ?
    Thanks in advance
    Rao

  • Creation Of new profit center group

    Dear Experts,
    I would like to know who will create profit center group. What is the role of an abaper in creation of profit center group. How much time will it take to create a new profit center group.

    Hi,
    Certainly, not. It's not a major development, but a standard data maintenance. Even for reporting, standard ones, the creation of a new group does not mean additional development, as it will be automatically reflexed in the reports.
    Regards,
    Eli

  • Profit center and profit center group wise profit and loss account

    Hi
    My name is swetha i have one doubt in ecc 6 version.   i need profit & loss account profit center and profit center group wise is it available in sap ecc 6 . Could u please details such kind of informatiion how we will get the p&l report  in sap profit center group and profit center with transaction code.
    Regards
    Swetha

    Hi
    Please use report
    S_ALR_87009712 - Profit Center List: Plan/Actual
    Here you can enter the Profit Center Group for which you need the P&L .
    Also create a account group which should include all your PL accounts and use the same in the selection of the report.
    There are other reports you can try on the same concept.
    S_ALR_87009712 - Profit Center List: Plan/Actual
    S_ALR_87009726 - Profit Center Group: Plan/Actual/Variance by Origin
    S_ALR_87009734 - Profit Center Group: Plan/Plan/Variance
    S_ALR_87009717 - Profit Center Group: Quarterly Comparison of Actual Data
    Thanks

Maybe you are looking for

  • ITunes Has Stopped Working on program start

    Recently, whenever I open iTunes, I'm greeted with an app crash and window prompt of "iTunes has stopped working". Problem signature:   Problem Event Name:    APPCRASH   Application Name:    iTunes.exe   Application Version:    12.1.1.4   Application

  • DV7-2022TX shows 'failure security options' on black screen

    My computer starts up and looks like its working but when i go to start using it it's frozen. So I press ctrl+alt+del and then it brings up the message "failure security options" on a black screen and all i can do is a forced shut down. It doesn't do

  • IB Section Index Row Count option

    I was wondering what the option "Section Index Row Count" in Interface Builder does? There's no option to tell IB how many sections there are in a UITableViewController and I thought that was the purpose of the methods numberOfSectionsInTableView and

  • Import iMovie Project containing map animations

    How can i import my iMovie projects without losing map animations? Is there an addon, plugin or something like that?

  • Creating a JAR File for a program that depends on other JAR files

    Hi, I'm pretty new to this so it shouldn't be terribly hard to answer: I have a program which uses JGoodies. There are 2 JGoodies .jar files in the same directory as my program. So I compile it by doing: javac -extdirs . NameOfMyProgram.java First of