Need profit center in edit mode

Hi Gurus,
When I am doing J1IH, when values are entered to BED, ECS, HSEcs for additional excise, we can determine the GL accounts for these fields. But here I cannot see the profit center. After posting the document and displaying the accounting document, I can see the profit centre  in respect to all G/L accounts where it is a dummy profit center. Is it possible to enter the profit center before posting the document.?
Regards,
RP
Edited by: R P on Feb 5, 2010 5:39 AM

Hi
Since in the screen J1IH you are not able to input the profit centre, the same posting happens to a dummy profit centre and this is the standard function.  Since you dont want the posting to a dummy profit centre, you have to make a substitution/user exit rule for assigning the correct profit centre to your excise accounts based on plant/profit centre wise, etc.

Similar Messages

  • Profit Center Field (Display Mode) During Asset Postings

    We are using document splitting functionality with profit center mandatory for any kind of posting.
    Scenario-Asset purchase through PO:
    1.Purchase Order -created
    2.At goods receipt error is coming balancing filed is not filled (bcoz asset is not a material), for materials we are giving profit center. in the asset master i assigned cost center, still profit center is not deriving.
    Scenario-Asset Purchase from vendor
    purchasing asset directly from vendor through F-90, against asset line item we have to assign profit center. Cost center & profit center is coming in display mode. in the asset master i already maintained cost center, still profit is not deriving.
    I already done config for field status [asset account number (G067) andPosting Keys (70,75)]. I also checked note no.684659.
    how profit center will be derived for any kind of asset postings.
    Thanks
    Sai

    Hi
    Guess - Check settings in ACSET
    Thank You,

  • Need profit center in Vendor & customer Line items in reports FBL1N & FBL5N

    Hi,
    how to get profit center field in reports FBL1N and FBL5N.  Please help.
    Regards,
    Sumit Jain
    Moderator: Please, search SDN; it has been answered several times

    Hi,
    I have done the below to get this. (You can change the naming convention of function module as per your wish):-
    Step 1:-
    Create function module Z_GET_PRCTR as below:-
    Import:-
    BELNR     LIKE     BKPF-BELNR
    BUKRS     LIKE     BKPF-BUKRS
    BUZEI     LIKE     BSEG-BUZEI
    GJAHR     LIKE     BKPF-GJAHR
    Export:-
    PRCTR     LIKE     BSEG-PRCTR
    FUNCTION Z_GET_PRCTR.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(BELNR) LIKE  BKPF-BELNR
    *"     VALUE(BUKRS) LIKE  BKPF-BUKRS
    *"     VALUE(BUZEI) LIKE  BSEG-BUZEI
    *"     VALUE(GJAHR) LIKE  BKPF-GJAHR
    *"  EXPORTING
    *"     VALUE(PRCTR) LIKE  BSEG-PRCTR
    DATA: ZDOCLN LIKE FAGLFLEXA-DOCLN.
    CONCATENATE '000' BUZEI INTO ZDOCLN.
    SELECT SINGLE PRCTR FROM FAGLFLEXA INTO PRCTR WHERE RYEAR = GJAHR
                                    AND  DOCNR = BELNR
                                    AND  RLDNR = 'NL'
                                    AND  RBUKRS = BUKRS
                                    AND  DOCLN = ZDOCLN.
    CLEAR ZDOCLN.
    ENDFUNCTION.
    Step 2:-
    Then create the Function Modules as below:-
    Z_LINE_ITEMS_GET_PRCTR (Copy of SAMPLE_INTERFACE_00001650)
    FUNCTION Module Z_LINE_ITEMS_GET_PRCTR.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    *"  EXPORTING
    *"     VALUE(E_POSTAB) LIKE  RFPOS STRUCTURE  RFPOS
    Initialize Output by using the following line -
    E_POSTAB = I_POSTAB.
          E_POSTAB = I_POSTAB.                "<-- important
          IF I_POSTAB-PRCTR EQ SPACE.
              CALL FUNCTION 'Z_GET_PRCTR'
                   EXPORTING
                    BELNR           = I_POSTAB-BELNR
                    BUKRS           = I_POSTAB-BUKRS
                    BUZEI           = I_POSTAB-BUZEI
                    GJAHR           = I_POSTAB-GJAHR
               IMPORTING
                    PRCTR           = E_POSTAB-PRCTR
               EXCEPTIONS
                    OTHERS          = 1.
          ENDIF.
    ENDFUNCTION.
    Step3:-
    Transaction FIBF:-
    Settings -> Products -> of a Customer
    PRCTR     Profit Center in Line Item Display          Active
    Settings -> P/S Module -> of a Customer
    00001650     PRCTR                    Z_LINE_ITEMS_GET_PRCTR
    Step 4:-
    Create the layout for FBL*N with display of the profit center.
    Regards,
    Gaurav

  • Need Profit center report which give -

    Is there any profit center report which allowing multiple Profit centers selection with :
    -Profit Center #
    -Profit center Name
    -Profit center long text
    -Profit Center group
    -the related PC node showing the BU and the product category group.

    Hi,
    I recommend the PCA standard drill-down or interactive reports accessible via the follwoing menu path:
    Accounting --> Enterprise Controlling --> PCA --> Infosystem --> Reports for PCA
    There are several reports which allow entering profitcenter groups or profitcenters.
    Long Text is not possible. Makes also no sense to report on Long Text.
    Best regards,
    Andreas

  • Need profit center HIERARCHY FM

    Hello Experts,
       I know the profit center and profit center group. Could you tell me which function module i have to use to get the complete hierarchy?
    Regards,
    Amit

    Hi,
    <i>(i_name is the entered profit center group name)</i>
    Get the internal name of the entered profit center hierarchy.
    CALL FUNCTION 'G_SET_LIST_SELECT'
           EXPORTING
                SETCLASS      = '0106'
                SHORTNAME     = I_NAME
                KOKRS         = 'MIT '
                KTOPL         = 'HEUS'
           TABLES
                MATCHING_SETS = T_SETLIST.
      IF T_SETLIST[] IS INITIAL.
        MESSAGE E002(SY) WITH 'Profit Center group does not exist'.
        EXIT.
      ELSE.
        READ TABLE T_SETLIST INDEX 1.
      ENDIF.
    <i>
    Get the entered profit center hierarchy info.</i>
    CALL FUNCTION 'G_SET_TREE_IMPORT'
           EXPORTING
                SETID                     = T_SETLIST-SETNAME
           TABLES
                SET_HIERARCHY             = T_SETHIER
                SET_VALUES                = T_SETVALUES
           EXCEPTIONS
                SET_NOT_FOUND             = 1
                ILLEGAL_FIELD_REPLACEMENT = 2
                ILLEGAL_TABLE_REPLACEMENT = 3
                OTHERS                    = 4.
      IF SY-SUBRC <> 0.
        MESSAGE E002(SY) WITH 'Profit Center group does not exist'.
        EXIT.
      ENDIF.
    Regards
    Sudheer

  • Need Game Center score edit!

    Hi
    I gave my iphone to one of my friend to update my iOS to iOS 5... But after I got it back, and played with Fruit Ninja, I made a score: 3361 in Arcade mode. I asked my friend why this happened and he said because he was joking with me and he put a hacked version of fruit ninja on my phone. I gave him my iphone back, and he fixed my game, but the Game Center saved my score. :S I remember my last best score: It was 1186 exactly. (I was like OH MY GOD when I made that, and I really want to share it to my friends, but now, this hacked game missed up my real score and now I have a hacked score that I will never be able to beat down.
    I need an apple guy to edit my score manualy.
    (I deleted fruit ninja, and delete it from game center, than install it again, but my score is still in game center, so it doesnt forget them even if I delete the game from it)
    HELP PLEASE :S
    Apple id: [email protected]
    Fruit Ninja - Arcade Mode - Score: 3361
    Last real score: 1186

    "(I deleted fruit ninja, and delete it from game center, than install it again, but my score is still in game center, so it doesnt forget them even if I delete the game from it)"

  • How can we change the field confirmed work of SAP PPM from edit to not edit mode ? I need it into non edit mode for time recording with ChaRM

    Hello everyone,
    Do someone meet this issue ? Do you know if it has a link with customization of ppm or customization of ITSM ?
    Many thanks in advance for your replies !

    It seems that I've solved this issue. To get it work:
    1. Select checkbox Time Recording and Travel Expenses via CATS for project type. Path: SPRO —> SAP Customizing Implementation Guide —> SAP Portfolio and Project Management —> Project Management —> Structure => Define Project Types
    2. Run/schedule a synchronization with the report DPR_CATS_CPR_TRANSF (Transfer of CATS Itemizations to Project Management Application).
    Time Recording from a Request for Change to a PPM ProjectTask - Working with Projects - SAP Library
    Regards,
    Alex

  • Grey out profit center when line item is entered in VA01

    hi all,
    i have to set profit center in display mode when line item is entered in sales order processing, please tell me the exist where i can put my code.
    please reply
    with regards,
    bala

    hi bala,
    Please check this,
    u can create enhance point in that routine.
    first click on enhancement button (shift+F4) then
    use menu path edit->enhancement operation->show implicit enhancement operation
    after that it start showing line like that in USEREXIT_PRICING_PREPARE_TKOMP
    -> """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
    right click on the line and enhancement implimentation and create, it will create enhancement point at that particular place.
    use this coding in ur enhancement spot
    IF  (   SCREEN-GROUP2  = 'LOO'
       AND SCREEN-NAME    = 'VBAP-PRCTR' ).
      SCREEN-INPUT = 0.
    ENDIF.
    it will solve ur problem.
    let me know, if solved
    Yogesh

  • Profit Center Substitution for Migrated line item

    Dear Expert,
    we migrated the data on feb 2014. past records having the default profit center value in each line item, after the migration we are not using the default profit center , we blocked that through some validation, but some situation, for clearing vendor or customer or gl, the migrated line item having default profit
    center with disabled mode to change. so its throwing the validation error, we cant able to unblock the validation also. we need to write a substitution for this to replace automatically . Eg :
    Default Profit center is : 38000
    it should be replace with to 2038100001
    like wise we have multiple company codes.
    i try to write the prerequisite, herewith i have attached the screen shot, i am getting the error for this, anyone can explain this situation ?
    Regards
    Prince

    Hi
    Please, check these notes
    SAP Note 173798 - User exit for PCA substitution
    SAP Note 1532865 - FAQ: Profit center in the billing document
    SAP Note 150959 - Profit center is incorrect in production order
    SAP Note 530578 - Special stocks in PCA
    SAP Note 594507 - PC with valuated special stock incorrect
    and related notes
    I hope this helps you
    Regards
    Eduardo

  • Profit Center in Vendor Line Item (T.Code:MIRO or F-02)

    Hi Friends,
    We are using ECC 6 but Document Splitting is not activated.
    We need Profit Center in Vendor Line Item (MIRO or F-02). How we can make this settings.
    Thanks
    Harani

    You can use  a substitution for populating the profit center in the vendor line. You can also use the user exits.
    Standard way in new GL is to use the Document Splitting featuire to populate the profit center in the vendor line based on other lines.
    If you are using BADI_ACC_DOCUMENT_POST, here you can fill the profit center.
    Regards,
    SDNer

  • Profit center field in FIBLFFP- free form payment

    Hi,
    We need profit center field in the screen of FIBLFFP as it is not present currently in the t code FIBLFFP. We needed this field as New G/l has been implemented and document splitting is active based on the profit center but we have not marked mandatory check for profit center in the current customizing settings. As a consequence for some of the posted transctions involving multiple profit centers we could not see the profit centers in some of the line items in General ledger view. Thus we want to have profit center field in the screen of FIBLFFP so that mandatory check for profit center can be made.
    We are using ECC 6.0, any help will be greatly appreciated.
    Puneet

    Hi,
    Have you got any solution to adding cost center or profit center in T-Code FIBLFFP?
    Regards,
    Abhinav Sethi

  • Vendor balance profit center wise

    Dear friends
    my client need profit center wise vendor report but its not in the standard report fbl5n can any body help me to get the solution

    Hi Lancy, USe T. Code S_ALR_87013346 and see it meets your requirements.
    -- Shivaji

  • No line item in Profit center

    Hello Experts,
    I have a question regarding the scenario "FIN_PCA --> Profit Center Update" in New GL.
    I have assigned this scenario to my leading ledger (0L) and also to non-leading ledger.
    When I did the posting to the primary cost element which is assigned to Co.Cd and co.cd assigned to both leading and non leadign ledger, both cost center and profit center are picked and posting went fine. But the problem is am unable to see this line item in  the profit center (T.code - ke5z),  where as the same line item is available in cost center. The same line item in the table FAGLFLEXA shows the both cost center and profit center to which it is posted.
    I am not sure if I am missing any configuration step. I have assigned the profit center in the cost center master data and also the profit center is activated.
    Any help in this regard will be duly rewarded and appreciated.
    Regards,
    Sriram

    Hi Sriram
    If you are saying that you are able to view the data in FAGLFLEXA, then the data should also be seen in these reports.May be the selection criteria entered for the reports are not correct,
    You have the following selection
    Currency Type - 10
    Company Code -
    Ledger -
    Fiscal Year
    Period
    Period
    Execute the report, the data entered by you should appear.
    Further coming to the 1KEF, you are activating the actual documents to flow to profit center accounting. Without this configuration, data in the table GLPCA, GLPCT and data in the report KE5Z would not happen. But you also need to do the configuration under SPRO->CONTROLLING->PROFIT CENTER ACCOUNTING also should be done.
    But in ECC 6.0 you dont need profit center accounting, New GL with Document splitting takes care of all the requirements.
    Regards,
    Suraj

  • OKKP Profit center issue

    In OKKP T code what is the impact, if we select Profit center option.
    Generally we have selected Projects and Cost objects. But are in CRM Implementation process, in that scenario below error we are getting.
    Account-based PCA not active in year 2011 in controlling area XXXX (Notification I KM 029).
    Error occurred during determination of profit center (Notification E IAOM 039)
    Error occurred during creation of internal order (Notification E IAOM 018)
    If we select Profit center options in OKKP issue will be resolved because we did same in sandbox. But any major impacts, please let me know.
    Note: We have implemented New GL.

    No In oke5 we dont have 2011 fiscal year .
    Please suggest any impacts if we select in OKKP.
    This problem in ECC 5.0 ( New gl is there)
    But we have ecc 6.0 Also. There in okkp we have selected Profit center.
    Edited by: sumathi lakshmi on Nov 21, 2011 11:06 AM

  • Need Profit centre field as mandatory field in the sales order

    Dear All,
    Normally Profit center data maintained in the material master, same data will get coipied to the sales order while creating sales order in VA01 transaction.
    My requirement is if profit center data is not maintained/available in the sales order system should give the error message
    For this I need Profit center field as mandatory field in the sales order(VA01).
    Can you please give possibilities ASAP.
    Give the SHD0 maintenance step by step.
    Regards,
    Murali.

    Hi Murali
    I beleive that you are talking about the Profit centre field not maintined in sales order hence not picked in delivery and billing and there is an FI posting error  (GL account error) because of that
    Profit centre is maintained in MMR and the same flows thro the sales cycle and i am quite sure if maintained in MMR it will be picked automatically and no need to make it mandatory in sales order( as the purpose is already solved)
    But there is no standard option in SAP like (even if Account assignment category of the material is not maintained in MMR it can be given in VF02 and the document can be released for accounting) to give the Profit centre in the billing and release the same
    Profit centre field field is picked from masters and flows in the entire flow and that field is greyed out (like no option of inserting it inbetween)
    As told by others incompletion log in sales doc type will take care for future orders and for the already created orders the standard option is cancel billing, reverse delivery and open the sales order and give   Profit centre field and process it (if only a few orders are there)
    But if the already created orders are many then from the FI Area  you need to go for development ( we also faced this issue as profit center not maintained in MMRs and hence accounting got hit and there were tons of billing docs and our FI consultant made some development to open it and solve it) FI consultant should be able to do this for already created orders
    Instead of making Profit centre field as mandatory field in the sales order better make it a mandatory entry in MMR
    Regards
    Raja

Maybe you are looking for

  • How do I remove NaN values from an array?

    I'm trying to test if the values in an array are less than 0.001. All of them are...BUT the problem is that some of the elements in the array are NaN. I'd like to do one of two things: 1. Remove the NaN elements from the array and set them to zero to

  • Can I partition my HD for Time Machine?

    Hi all, I just bought a drive intended for use with Time Machine. However, I would like to know, if its possible to partition the drive first and use only one half for Time Machine? Another thing, do I have to format the drive to Mac OS Extended jour

  • How find out which user is using which company code?

    Hi Gurus, I am having more than 500 users in Production System.I need to find out which user is using which company code?I can get the roles and users separately from two different SAP tables. Is it possible to get it from a single table or Tcode? Be

  • Is there a way to recover deleted files from months ago?

    Is there a way to recover deleted files from months ago?

  • Squid and Oracle Apps

    Hello, I hope I put this in a right forum. I'd put in the Linux (Non OEL) forum but still not solved yet. I'm trying to setup squid in Fedora 13 and get a problem with Oracle Apps. I'd setup so that only certain user can request http service by setup