Profit Center Help

Hi all,
We are interested in using profit centers We are on SAP Business One 2007A PL 47.  I am looking for documentation or a How To Guide on explanation of profit centers, revenue/expense account, COGS Profit center (how it is used and reported). I have read the Online Help, but I am looking for more detail documentation.
I have seen previous posts on the forum with a link what appears to be documentation, but when i click on the link it says I do not have permission. I have a S log on ID.
Thanks for any help.

Hi,
If you are a customer, you may search under Customer Support Portal - Documentation.
Thanks,
Gordon

Similar Messages

  • Profit Center not getting uploaded through BAPI for MM01. Pls help

    Hello all,
                  I am getting an errror while uploading a file through BAPI for MM01 , The error says
    Error:
    Profit center 1000/sslcommon does not exist
    for material: AC2
    *& Report  ZBAPI_DUMMY
    REPORT  ZBAPI_MM01.
    *& Report  ZBAPI2
    TABLES
    FLAGS *
    DATA: F_STOP. " Flag used to stop processing
    DATA DECLARATIONS *
    DATA : V_EMPTY TYPE I, " No. of empty records
    V_TOTAL TYPE I. " Total no. of records.
    STRUCTURES & INTERNAL TABLES
    *--- BAPI structures
    DATA: BAPI_HEAD LIKE BAPIMATHEAD,  " Header Segment with Control
    BAPI_MAKT LIKE BAPI_MAKT, " Material Description
    BAPI_MARA1 LIKE BAPI_MARA, " Client Data
    BAPI_MARAX LIKE BAPI_MARAX, " Checkbox Structure for BAPI_MARA
    BAPI_MARC1 LIKE BAPI_MARC, " Plant View
    BAPI_MARCX LIKE BAPI_MARCX, " Checkbox Structure for BAPI_MARC
    BAPI_MBEW1 LIKE BAPI_MBEW, " Accounting View
    BAPI_MBEWX LIKE BAPI_MBEWX, " Checkbox Structure for BAPI_MBEW
    BAPI_RETURN LIKE BAPIRET2, " Return Parameter
    BAPI_MARDL LIKE BAPI_MARD,
    BAPI_MARDX LIKE BAPI_MARDX.
    *--- Internal table to hold excel file data
    DATA: IT_INTERN TYPE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
    *--- Internal table to hold Matetrial descriptions
    DATA: BEGIN OF IT_MAKT OCCURS 100.
            INCLUDE STRUCTURE BAPI_MAKT.
    DATA: END OF IT_MAKT.
    *--- Internal to hold the records in the text file
    DATA : BEGIN OF IT_DATA OCCURS 100,
    WERKS(4), " Plant
    MTART(4), " Material type
    MATNR(18), " Material number
    MATKL(9) , " Material group
    MBRSH(1), " Industry sector
    MEINS(3), " Base unit of measure
    SPART(2), " Division
    EKGRP(3), " Purchasing group
    PRCTR(10), " Profit Center
    VPRSV(1), " Price control indicator
    BKLAS(4), "Valuation Class
    *stprs(12), " Standard price
    PEINH(3), " Price unit
    SPRAS(2), " Language key
    MAKTX(40), " Material description
    LGORT(4) , " storage location
    DISMM(2) , "MRP TYPE
    VERPR(23), " Moving Average Price
    MTVFP(2) , " Availability Check
    DISLS(2) , "Lot Size
    DISPO(3) , "MRP Controller
    BESKZ(1) , "Procurment Type
    FHORI(3) , "SCHEDMARGIN KEY
    PERKZ(1) , "Period Indicator
    END OF IT_DATA.
    SELECTION SCREEN. *
    SELECTION-SCREEN BEGIN OF BLOCK SCR1 WITH FRAME TITLE TEXT-111.
    PARAMETER : P_FILE TYPE RLGRAP-FILENAME OBLIGATORY  " Input File
    PARAMETER : P_MAX(4) OBLIGATORY DEFAULT '100'. " no.of recs in a session
    PARAMETERS: P_HEADER TYPE I DEFAULT 0. " Header Lines
    PARAMETERS: P_BEGCOL TYPE I DEFAULT 1 NO-DISPLAY,
    P_BEGROW TYPE I DEFAULT 2 NO-DISPLAY,
    P_ENDCOL TYPE I DEFAULT 100 NO-DISPLAY,
    P_ENDROW TYPE I DEFAULT 32000 NO-DISPLAY.
    SELECTION-SCREEN END OF BLOCK SCR1.
    AT SELECTION-SCREEN *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
    *--- Validating file
      PERFORM VALIDATE_FILE USING P_FILE.
    START-OF-SELECTION
    START-OF-SELECTION.
    *--- Perform to convert the Excel data into an internal table
      PERFORM CONVERT_XLS_ITAB.
      IF NOT IT_DATA[] IS INITIAL.
    *--- Perform to delete Header lines
        PERFORM DELETE_HEADER_EMPTY_RECS.
      ENDIF.
    END OF SELECTION. *
    END-OF-SELECTION.
    *--- Perform to upload Material Master data
      PERFORM UPLOAD_MATMAS.
    Form : validate_input_file
    Description : To provide F4 help for file if read from PC
    FORM VALIDATE_FILE USING F_FILE TYPE RLGRAP-FILENAME.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        CHANGING
          FILE_NAME     = F_FILE
        EXCEPTIONS
          MASK_TOO_LONG = 1
          OTHERS        = 2.
      IF SY-SUBRC <> 0.
        MESSAGE S010(ZLKPL_MSGCLASS). " 'Error in getting filename'.
      ENDIF.
    ENDFORM. " validate_input_file
    *& Form CONVER_XLS_ITAB
    text
    FORM CONVERT_XLS_ITAB.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME    = P_FILE
          I_BEGIN_COL = P_BEGCOL
          I_BEGIN_ROW = P_BEGROW
          I_END_COL   = P_ENDCOL
          I_END_ROW   = P_ENDROW
        TABLES
          INTERN      = IT_INTERN.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *--- Perform to move the data into an internal data
      PERFORM MOVE_DATA.
    ENDFORM. " CONVERT_XLS_ITAB
    *& Form MOVE_DATA
    text
    FORM MOVE_DATA.
      DATA : LV_INDEX TYPE I.
      FIELD-SYMBOLS <FS>  .
    *--- Sorting the internal table
      SORT IT_INTERN BY ROW COL.
      CLEAR IT_INTERN.
      LOOP AT IT_INTERN.
        MOVE IT_INTERN-COL TO LV_INDEX.
    *--- Assigning the each record to an internal table row
        ASSIGN COMPONENT LV_INDEX OF STRUCTURE IT_DATA TO <FS> .
    *--- Asigning the field value to a field symbol
        MOVE IT_INTERN-VALUE TO <FS> .
        AT END OF ROW.
          APPEND IT_DATA.
          CLEAR IT_DATA.
        ENDAT.
      ENDLOOP.
    ENDFORM. " MOVE_DATA
    *& Form DELETE_HEADER_EMPTY_RECS
    To delete the Header and empty records
    FORM DELETE_HEADER_EMPTY_RECS.
      DATA: LV_TABIX LIKE SY-TABIX.
      IF NOT P_HEADER IS INITIAL.
        LOOP AT IT_DATA.
          IF P_HEADER > 0 AND NOT IT_DATA IS INITIAL.
            DELETE IT_DATA FROM 1 TO P_HEADER.
    P_HEADER = 0.
            EXIT.
          ENDIF.
        ENDLOOP.
      ENDIF.
      CLEAR IT_DATA.
    *--- To delete the empty lines from internal table
      LOOP AT IT_DATA.
        LV_TABIX = SY-TABIX.
        IF IT_DATA IS INITIAL.
          V_EMPTY = V_EMPTY + 1.
          DELETE IT_DATA INDEX LV_TABIX..
        ENDIF.
      ENDLOOP.
      CLEAR IT_DATA.
    *--- Total no of recs in file
      DESCRIBE TABLE IT_DATA LINES V_TOTAL.
      IF V_TOTAL = 0.
        MESSAGE I013(ZLKPL_MSGCLASS). " No records in the file
        F_STOP = 'X'.
        STOP.
      ENDIF.
    ENDFORM. " DELETE_HEADER_EMPTY_RECS
    *& Form UPLOAD_MATMAS
    to upload Material Master data
    FORM UPLOAD_MATMAS .
      LOOP AT IT_DATA.
    Header
        BAPI_HEAD-MATERIAL = IT_DATA-MATNR.
        BAPI_HEAD-IND_SECTOR = IT_DATA-MBRSH.
        BAPI_HEAD-MATL_TYPE = IT_DATA-MTART.
        BAPI_HEAD-BASIC_VIEW = 'X'.
        BAPI_HEAD-PURCHASE_VIEW = 'X'.
        BAPI_HEAD-ACCOUNT_VIEW = 'X'.
        BAPI_HEAD-storage_view ='X'.
        bapi_head-mrp_view = 'X'.
        bapi_head-COST_view ='X'.
    Material Description
        REFRESH IT_MAKT.
        IT_MAKT-LANGU = IT_DATA-SPRAS.
        IT_MAKT-MATL_DESC = IT_DATA-MAKTX.
        APPEND IT_MAKT.
    Client Data - Basic
        BAPI_MARA1-MATL_GROUP = IT_DATA-MATKL.
        BAPI_MARA1-BASE_UOM = IT_DATA-MEINS.
       bapi_mara1-unit_of_wt = it_data-gewei.
        BAPI_MARA1-DIVISION = IT_DATA-SPART.
        BAPI_MARAX-MATL_GROUP = 'X'.
        BAPI_MARAX-BASE_UOM = 'X'.
        BAPI_MARAX-UNIT_OF_WT = 'X'.
        BAPI_MARAX-DIVISION = 'X'.
    Plant - Purchasing
        BAPI_MARC1-PLANT = IT_DATA-WERKS.
        BAPI_MARC1-PUR_GROUP = IT_DATA-EKGRP.
        BAPI_MARC1-PROFIT_CTR = IT_DATA-PRCTR.
        BAPI_MARC1-MRP_TYPE = IT_DATA-DISMM.
        BAPI_MARC1-AVAILCHECK = IT_DATA-MTVFP.
        BAPI_MARC1-LOTSIZEKEY = IT_DATA-DISLS.
        BAPI_MARC1-MRP_CTRLER = IT_DATA-DISPO.
        BAPI_MARC1-PROC_TYPE = IT_DATA-BESKZ.
        BAPI_MARC1-SM_KEY = IT_DATA-FHORI.
        BAPI_MARC1-PERIOD_IND = IT_DATA-PERKZ.
        BAPI_MARCX-PLANT = IT_DATA-WERKS.
        BAPI_MARCX-PUR_GROUP = 'X'.
        BAPI_MARCX-AVAILCHECK = 'X'.
        BAPI_MARCX-PROFIT_CTR = 'X'.
        BAPI_MARCX-MRP_TYPE = 'X'.
        BAPI_MARCX-MRP_CTRLER = 'X'.
        BAPI_MARCX-SM_KEY = 'X'.
        BAPI_MARCX-LOTSIZEKEY = 'X'.
       Storage Location.
        BAPI_MARDL-PLANT     = IT_DATA-WERKS.
        BAPI_MARDL-STGE_LOC = IT_DATA-LGORT.
        BAPI_MARDX-PLANT    = IT_DATA-WERKS.
        BAPI_MARDX-STGE_LOC = IT_DATA-LGORT.
    Accounting
        BAPI_MBEW1-VAL_AREA = IT_DATA-WERKS.
        BAPI_MBEW1-PRICE_CTRL = IT_DATA-VPRSV.
        BAPI_MBEW1-VAL_CLASS = IT_DATA-BKLAS.
        BAPI_MBEW1-MOVING_PR = IT_DATA-VERPR.
       bapi_mbew1-std_price = it_data-stprs.
        BAPI_MBEW1-PRICE_UNIT = IT_DATA-PEINH.
        BAPI_MBEWX-VAL_AREA = IT_DATA-WERKS.
        BAPI_MBEWX-PRICE_CTRL = 'X'.
        BAPI_MBEWX-STD_PRICE = 'X'.
        BAPI_MBEWX-PRICE_UNIT = 'X'.
        BAPI_MBEWX-MOVING_PR = 'X'.
    *--- BAPI to create material
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
        EXPORTING
        HEADDATA = BAPI_HEAD
        CLIENTDATA = BAPI_MARA1
        CLIENTDATAX = BAPI_MARAX
        PLANTDATA = BAPI_MARC1
        PLANTDATAX = BAPI_MARCX
    FORECASTPARAMETERS =
    FORECASTPARAMETERSX =
    PLANNINGDATA =
    PLANNINGDATAX =
    STORAGELOCATIONDATA = BAPI_MARDL
    STORAGELOCATIONDATAX = BAPI_MARDX
    VALUATIONDATA = BAPI_MBEW1
    VALUATIONDATAX = BAPI_MBEWX
    WAREHOUSENUMBERDATA =
    WAREHOUSENUMBERDATAX =
    SALESDATA = BAPI_MVKE1
    SALESDATAX = BAPI_MVKEX
    STORAGETYPEDATA =
    STORAGETYPEDATAX =
        IMPORTING
        RETURN = BAPI_RETURN
        TABLES
        MATERIALDESCRIPTION = IT_MAKT
    UNITSOFMEASURE =
    UNITSOFMEASUREX =
    INTERNATIONALARTNOS =
    MATERIALLONGTEXT =
    TAXCLASSIFICATIONS =
    RETURNMESSAGES =
    PRTDATA =
    PRTDATAX =
    EXTENSIONIN =
    EXTENSIONINX =
        IF BAPI_RETURN-TYPE = 'E'.
          WRITE:/ 'Error:' ,BAPI_RETURN-MESSAGE ,'for material:' ,
    IT_DATA-MATNR.
        ELSEIF BAPI_RETURN-TYPE = 'S'.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT          =
         IMPORTING
           RETURN        = BAPI_RETURN
          WRITE: 'Successfully created material' ,IT_DATA-MATNR.
        ENDIF.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT          =
        IMPORTING
          RETURN        = BAPI_RETURN
      ENDLOOP.
    ENDFORM. " UPLOAD_MATMAS

    the Profit center 1000/sslcommon  not created. first create the profit center and then upload your data.check tcode KE52 for created profit centers...

  • HELP!! - HOW TO MAKE SEGMENT MANDATORY IN PROFIT CENTER

    HELLO,
    WE ARE IMPLEMENTING CONTROLLING, FINANCIAL AND NEW GENERAL LEDGER, I NEED TO KNOW HOW TO MAKE THAT THE FIELD SEGMENT IS MANDATORY IN THE PROFIT CENTER CREATION PROCESS,
    COULD YOU HELP ME WITH THIS??
    THANKS IN ADVANCE.

    Hello again and thanks a lot for your quick answers,
    but what i can not understand very well is why I do not have this problem in another client, since i am not be able to create a cost centre without filling in the corresponding profit centre and I can not create a profit centre without filling in the corrresponding segment.
    However in the client where i need to customize this, by default this fields are not mandatory, so there must be a customizing table or whatever to change this fields. I know the transaction OKEG, i do not know if this problem can be related to this issue.
    So, i need to know the customizing tables to change the fields status in cost centre and profit centre. I am sure that this issue there must be related with the activation of New General Ledger, because the method that we are using is the inheritance by segment...
    Any comments will be appreciated.
    Thank you.

  • Profit center reporting - need help

    hello ,
        how do we assing b/s accoutn to profit cneters ( profit center = plant ) and how can we capture plant wise positng to b/s acc, like bank or tax accounts to profit centers in order to generae complete plant b/s and p/l statmens.
    i am really stuck at this point and trying to find a way how the same accoutns gave be captued on different profit cneters for diffneret plants and how do we identify the profit cneter fot that account ( for e/g bank account or a/p account ) based on the plant.
    please let me know .
    thanks very much

    Hi,
    For assigning a default Profit Centers to Balance Sheet accounts you can use Transaction code 3KEH. But this will facilitate to take only one Profit Center for one Balance Sheet account.
    For Bank and Cash accounts, I have seen Business Practices like assigning it to a Corporate Head Quarters Profit Center. Later if required they can do some allocation functionality at month end.
    Setting up a derivation rule to split the amount based on Plant is also not feasible, because the amount posted to a Balance Sheet account cannot be divided. In case Inventory / Receivables / Payables / Fixed Assets we can use the standard SAP functionality in PCA.
    In case if you working on ECC 6.0 version along with New GL functionality, there are more options there and you can use Profit Center Accounting along with Segment accounting.
    Thanks
    Murali.

  • 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

  • No Profit Center defaulted to posted FI doc-HELP!

    Hi Gurus,
    An FI doc was posted w/o Profit Center,  because we found-out that posting comes first before config.  
    Therefore when we view KE5T,  said posted doc didn't take effect.
    Currently the pd. for the posted doc was already closed.  How can we correct said posted doc in order to indicate the Profit center and so that it will take effect as well in KE5T?
    Please advise.
    Thanks!
    Eve

    Hi,
    You may try to run 1KE8 transaction. Try it in test mode first for the specific FI document, to see if PCA document is created. If not, only forced intervention in the tables could correct your situation or standard reversal process as it was suggested.
    Regards,
    Eli

  • Help on fox used to one/all profit center/cost center of one company code

    Hi experts,
    I have a fox formula witch is to be applied in diferent situations:
    1. To one cost center
    2. To all cost centers of one company code
    3. To one profit center
    4. To all profit centers of one company code
    I'm using the following variables:
    ZIPROFCE (1st profit center selected in query)
    ZIPROFC2 (number of profit centers selected in query)
    ZICOSTCE (1st cost center selected in query)
    ZICOSTC2 (number of profit centers selected in query)
    The formula is actually like below, guess it is not worrking because I can't have an integer number accepted by chars 0profit_ctr and 0costcentr. I am thinking of adding another char in the infocube witch is integer (without master data), and it would do the job. Is there other way out, so I can mantain actual aggregation levels and filters?
    DATA PERIOD TYPE 0FISCPER3.
    DATA PER_P TYPE 0FISCPER3.
    DATA PCENTER TYPE 0PROFIT_CTR.
    DATA PCENTER1 TYPE 0PROFIT_CTR.
    DATA PCENTER2 TYPE 0PROFIT_CTR.
    DATA CCENTER TYPE 0COSTCENTER.
    DATA CCENTER1 TYPE 0COSTCENTER.
    DATA CCENTER2 TYPE 0COSTCENTER.
    DATA PLANPER TYPE F.
    PCENTER1 = VARV (ZIPROFCE).
    PCENTER2 = VARV (ZIPROFC2).
    CCENTER1 = VARV (ZICOSTCE).
    CCENTER2 = VARV (ZICOSTC2).
    PLANPER = VARV (ZEPLANPE).
    PER_P = VARV (ZEPLAPER).
    *IF CCENTER2 = 1.
    CCENTER = CCENTER1.
    *ENDIF.
    IF PCENTER2 = 1.
    CCENTER = #.
    PCENTER = PCENTER1.
    ELSEIF PCENTER2 > 1.
    CCENTER = #.
    ENDIF.
    FOREACH CCENTER, PCENTER.
    PERIOD = PER_P.
    DO.
    IF  { ZCOMPROM, CCENTER,  013, PCENTER } <> 0.
      { 0AMOUNT,  CCENTER, PERIOD, PCENTER} = { ZCOMPROM,  CCENTER, 013, PCENTER } / PLANPER.
    ENDIF.
    PERIOD = PERIOD + 001.
    IF PERIOD = 013.
    EXIT.
    ENDIF.
    ENDDO.
    ENDFOR.
    Tanks in Advance,
    João Anastácio

    Hello João,
    you are making it more complicated than it is:
    Fields to be changed: Key figure, period
    DATA PERIOD TYPE 0FISCPER3.
    DATA PLANPER TYPE F.
    PLANPER = VARV (ZEPLANPE).
    PERIOD = VARV (ZEPLAPER).
    IF { ZCOMPROM, 013 } > 0.
    { 0AMOUNT, PERIOD} = { ZCOMPROM, 013 } / PLANPER.
    ENDIF.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Help needed for Restricting roles by maintaining values at Profit center

    Hi,
    My client uses the restriction at Company Code and Cost Center but we were using a * for full authorization to maintain the Profit Center. Now the situation has arisen where we need to maintain a particular Role at Profit Center level. We are creating a new role and maintaining the value of it. But there are a few other Roles where the Profit Center was not maintained and a * (which is already there) will give access to the Profit Center which is actually meant for the new Role.
    The Profit Center has values of around 2500 which is going to be difficult to be maintained. Is there any other method where in we can restrict the Roles at Profit Center level by giving some ranges and if it is please let me know the format?
    Regards
    Shakeel

    Hi
    There are two methods that you can maintain:
    1. Using the Company Code
    2. Using the Company Code simultaneously with Profit Center
    The approach that we are following is like that: We have created a excel file which contains the segegrated list of Profit Centers according to Company Code.
    Now if you provide the range of Company code ( that can be achieved in authorization fields) the profit center related will automaically be associated by giving *.
    We can give the range of profit center at two levels....one at the Organizational Level which would give acess to all the authorization objects present in the Role.
    Other is give the range at the Authorization Object Level...that would give access to that particular Authorization Object or the Tcodes related to that.
    Check out this thread also
    How to assign profit center or cost center authorizations ?

  • How to look at a report for Profit Center ?

    Dear All ,
    Good Morning ,
                                   I need a report which can show a details of posting for all types  of doc. types for ex. ---> " DZ " = Payment from customer , " AB " = Adjustment .Here User's requirement is to see the posting made for these different doc types in a profit center.Is there ne t. code for this ?
    regards
    sap11
    Edited by: sap11 on Jun 26, 2008 10:40 AM

    Hello,
    I think there is no standard report in SAP as per your req.
    You have to make some modification in SAP with the help of ABAP team .
    Your requirement is like to FBO3 to display the documents,you have to add the one selection criteria in  general section in T code FB03 the extra selection criteria would be profit center as per your requirement.
    Hope it will helps you.
    Regards
    Ravi

  • Error While deleting the Profit Center

    Hi I am getting the below error while  deleting the Profit center. Please help me how to fix this issue...
    Profit center Scenario was activated in New GL Accounting
    what configurations do i need to change to fix this error? Kindly advise me..
    Thanks
    Kishore

    Dear,
    while deleting  the profit center we have to requrie follow the steps
    1) OBR1 - Reset Transaction data
    2)OBR2 - Reset the master data
    3)OKKS - Set Controlling Area
    4)OKC3 - Delete Transcation Data
    5) KL14 - Delete Activity Types
    6)OKE5 - Profit center De - Active
    7)OKE1 - Profit center Transcation data delete
    8)OKE2 - profit center delete
    if if you follow above steps easily we can make the delete the profitcenter and we donot have to activate profitcenter
    i hope solve you r problem
    With regards /G chandu

  • Using BADI for changing the Profit Center in FI Document during MIRO

    Hi,
    We have an requirement of changing the profit center in FI/CO Document while doing MIRO which is different than the one which is posted at the time MIGO.The system is not allowing us to do this and the field profit center during MIRO is not changeble mode and the business requirement is to change this through any SAP enhancements or program.
    How can I do this ?
    Is there is any standard BADI or User Exit is available for this.
    Pleease help me in this and will give valuable points.

    Hey,
    Use the BADI INVOICE_UPDATE and try with this. Otherwise you try to create Enhancement point to implement your code.
    Note: Inside BADI we can't change the runtime value. So, try to use enhancement point.
    Rewert back for any clarification.
    Regards,
    Saravanan M

  • Error in Creation of Profit Center

    Hi Experts,
    When  I am trying to activate Dummy Profit Center I am getting this error
    "A profit center scenario is active in new General Ledger Accounting
    Message no. FAGL_LEDGER_CUST155".
    anyone pl assist me reg this..
    Thanks in advance,
    Regards,
    Balaji Bhonsle

    Please, follow this link:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/47/fc23f9a0af6673e10000000a42189c/frameset.htm

  • How to change Profit Center

    Dear PS Gurus,
    Kindly help me out on this.
    My Query:-
    I am trying to create a PO using the T-code ME58. When i am selecting the PR and adopting it i get a message as "Profit Center was set to 9999". However i want to post the data to profit center 1300.To do so the system is asking me to to assign the PSG, cost center or other object to that profit center as well.
    Diagnosis by the System
    You entered profit center 1300 or transferred it from a previous transaction, such as material receipt from an external order. However, the system derived the profit center 9999 from the account assignments.
    Kindluy suggest as to where i should go and change the profit center so that i dont get the error message while creating the PO.
    Points will be rewarded.
    Regards,
    Gokul

    Dear NAG,
    As suggested i checked the Proift Center in t-code OKB9. I found the details as follows:
    CoCd - 1000 (IDES AG)
    Profit Center - 9000 (IDES Portugal)
    Cost Center - This field is blank
    Cost Element - 800000
    I checked the profit center in the material master also and found that the profit center 1300 is assigned, which is fine. Also i checked the profit center in my project. There too the same profit center has been assigned.
    I changed the profit center from 9000 to 1300 in t-code OKB9, and tried making the PO.But still i am getting the same error.I have checked the entire list of profit centers assigned to CoCd 1000 in t-code OKB9 but nowhere i could find the profit center 9999 assigned. I am confused as to from where the system i picking up this profit center (9999). When i checked the details of the profit center 9999 it was found that it is a Dummy profit center but i dont know where it is assigned and from where the system is picking this Profit center.
    Request you/anyone to knidly help me out in solving this issue. For your information i am trying this example in IDES.
    Please help me out.
    Thanks & BEst Regards,
    Gokul

  • Actual data flow of AR and AP line Items in profit center accounting

    Hi all,
    I was trying to configure profit center accounting.
    1.I was not able to transfer accounts receivable and payable balances.Can any body help on this.
    2.Also values are not flowing into customer  and vendor reports in PCA
    Regards
    Pratiksha

    Thank you So much that was useful one.
    Can you please tell me the values from customer and vendor flow into Profit centers.In reports like S_ALR_87013345 - Profit Centers: Customers (Transferred Periodically)  values are not being posted
    Waiting for  answer
    Thanks

  • Profit Center population in the Vendor and Customer Line items

    hello
    our client is asking for  getting profit center in the vendor and customer line items  where in the view FBL5n and fbl1n we are not getting the profit center populated - in the new gl i understand that there is a standard report based on the gl account.
    but our business is not satisfied with the report and expecting report at profit center level.
    Can any one suggest any way of doing this.
    regards,
    Vijay

    Dear Vijay,
    Let me provide you my view of solutioning for this. This is an enahcement that needs to be done
    1. You can get the profit center from the given vendor and customer line item at the time of posting, using an enahcement you will be able to capture it.
    2. Existing the profit center field is not populated in the BSIK,BSAK,BSID and BSAD tables
    3. Hence, in the same enhancement once you capture the profit center , you can write the code that profit center is updated in these tables also.
    4. This will help you to do the vendor line item wise selection in the FBL1N,  FBL5N profit center wise.
    Constraints of this solution:
    The only constraint remains where in the for a given document if there are multiple profit center, then the system will do the splitting profit center wise for a vendor line item, which will not populate the profit center in those tables as there is only one field available in the bsid etc.. tables.
    This basically would be the one the soltuion where in as seeen from the end user ther eis no change in the front end interface , the way they are doing always they can do.
    You need to also take care the % of document splitting means cross profit center postings /cross document splitting charactericstics postings and the volume involved in this. so that you can suggest this to your client.
    Regards,
    Bharathi.

Maybe you are looking for