Valuation field not updated in Profit Center view

Good morning Gurus,
I am facing a big problem in KE24 report. As I've checked here, one of my valuation fields related to Raw Materials (VVM01) is only being updated in Legal View from CO. Even I check it in CE1SA01 table (my table for CO documents), the value is not updated there for Profit Center view. I've check all exits that we have here, but the problem is not there. Derivation rules for the field are not customized, so I don't know where is the problem.
Anyone have already faced this problem? Could you please help me? Points will be awarded.
Many thanks in advance,
Diogo Patriota.

Issue has been resolved.1
Issue has been resolved

Similar Messages

  • Asset acquisition value is not updated in Profit center as well as segment

    Dear All,
    I procured an asset through MM, (MIGO and MIRO). the acquisition value is updated in the asset master as well as GL account. but no value is updated in the profit center and related segment.
    I did the following (using ECC 6, document spiltting activated)
    1. Asset master data created and cost center assigned. Profit center is assigned in the Cost center and Segment is assigned in the profit center master data.
    1. me21n - po created
    2. MIGO - done
    3. MIRO - done.
    Can any one help me to solve this issue
    Looking forward your valuable reply
    Thanks in advance
    regards
    Govan

    Hi
    Please check whether cost center is suppressed field for the respective GL Account. Also it seems that you have not made profit cneter as mandatory field. Goto IMG> Financial Accounting (New) > General Ledger Accounting (New) > Business Transactions > Document Splitting > Define Document Splitting Characteristics for General Ledger Accounting . Here you can make the mandatory field as per requirement.
    Warm Regards

  • 3KEH Balance Sheet Values not updated in Profit Center

    Hello Peofit Center experts
    I have Assigned Profit Center for few balance Sheet Accounts in 3KEH.But values are not updated in respective Profit Centers.
    I have to do any configuration settings for transfer Balance Sheet accounts to Profit center or Assignment 3KEH is enough.
    Please guide me
    Thanks
    Kameshwar Rao

    Issue has been resolved.1
    Issue has been resolved

  • Sales order change BAPI not updating items Profit center

    Dear ,
    I am facing the problem in using the BAPI for Item 's profit centre  in blank space.
    I write down the below code <but it's not at all updating the profite centre .
    please ccorrect the code if any required'
    TYPES: BEGIN OF file_data ,
           vbeln TYPE vbap-vbeln, " order numner
           posnr TYPE vbap-posnr, " orderitem
           profit_ctr TYPE vbap-prctr, " [profite centre
          END OF file_data.
    DATA: t_data TYPE STANDARD TABLE OF file_data .
    DATA : wa_data LIKE LINE OF t_data.
    DATA: t_data_item TYPE STANDARD TABLE OF file_data .
    DATA : wa_data_item LIKE LINE OF   t_data_item.
    **DATA: t_data_item TYPE file_data OCCURS 0.
    *DATA: return TYPE STANDARD TABLE OF bapiret2.
    *DATA: wa_return LIKE LINE OF return.
    DATA: wait LIKE bapita-wait VALUE 'X'.
    DATA: s_order_header_in LIKE bapisdh1.
    DATA: s_order_header_inx LIKE bapisdh1x.
    DATA: BEGIN OF i_order_item_in OCCURS 0.
            INCLUDE STRUCTURE bapisditm.
    DATA: END OF i_order_item_in.
    DATA: BEGIN OF i_order_item_inx OCCURS 0.
            INCLUDE STRUCTURE bapisditmx.
    DATA: END OF i_order_item_inx.
    DATA: BEGIN OF it_return OCCURS 0.
            INCLUDE STRUCTURE bapiret2.
    DATA: END OF it_return.
    ***********************selection
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    "ctu_mode  TYPE ctu_mode  DEFAULT 'N'.
    SELECTION-SCREEN END OF BLOCK b1.
    *********assign file
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file
        EXCEPTIONS
          OTHERS    = 1.
      DATA:  it_text TYPE truxs_t_text_data .
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_field_seperator    = 'X'
          i_line_header        = 'X'
          i_tab_raw_data       = it_text
          i_filename           = file
        TABLES
          i_tab_converted_data = t_data[] " Your internal table of structure of Excel sheet
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      t_data_item[] =  t_data[].
      DELETE ADJACENT DUPLICATES FROM t_data COMPARING vbeln.
    Header update indicator
      s_order_header_inx-updateflag = 'U'.
    Line items
      REFRESH: i_order_item_in, i_order_item_inx.
      LOOP AT t_data INTO wa_data.
        LOOP AT t_data_item INTO wa_data_item WHERE vbeln = wa_data-vbeln. .
          i_order_item_in-itm_number = wa_data_item-posnr.
          i_order_item_in-profit_ctr = wa_data_item-profit_ctr.
          i_order_item_inx-itm_number = wa_data_item-posnr.
          i_order_item_inx-updateflag = 'U'.
          i_order_item_inx-profit_ctr = 'X'.
          APPEND: i_order_item_in, i_order_item_inx.
        ENDLOOP.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = wa_data-vbeln
          IMPORTING
            output = wa_data-vbeln.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument     = wa_data-vbeln
            order_header_in   = s_order_header_in
            order_header_inx  = s_order_header_inx
            behave_when_error = 'P'
          TABLES
            return            = it_return
            order_item_in     = i_order_item_in
            order_item_inx    = i_order_item_inx.

    i already used same But it's not working
    s_order_header_inx-updateflag = 'U'.
    Line items
      REFRESH: i_order_item_in, i_order_item_inx.
      LOOP AT t_data INTO wa_data.
        LOOP AT t_data_item INTO wa_data_item WHERE vbeln = wa_data-vbeln. .
    BAPISDITM
          i_order_item_in-itm_number = wa_data_item-posnr.
          i_order_item_in-profit_ctr = wa_data_item-profit_ctr.
    BAPISDITMX
          i_order_item_inx-itm_number = wa_data_item-posnr.
          i_order_item_inx-updateflag = 'U'.
          i_order_item_inx-profit_ctr = 'X'.
          APPEND: i_order_item_in, i_order_item_inx.
        ENDLOOP.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = wa_data-vbeln
          IMPORTING
            output = wa_data-vbeln.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument     = wa_data-vbeln
            order_header_in   = s_order_header_in
            order_header_inx  = s_order_header_inx
            behave_when_error = 'P'
          TABLES
            return            = it_return
            order_item_in     = i_order_item_in
            order_item_inx    = i_order_item_inx.

  • Segment field is not shown in profit center master data

    Hi,
      When i activated New GL ,but the segment field is not shown in profit center master data. How can i make the field shown ?
    Thanks.

    After activating the New GL have you defined the segment? First define the segment under Enterprise Structure and in Fin.Acctg Global settings(New)-Legers-Display scenarios for General Ledger Accounting, you need to create new entries for FIN_PCA & FIN_SEG.
    Hope this helps you.

  • Vendor field not updated in CRM pricing condition table

    Hi,
    We have maintained condition table with Material and Vendor fields in ECC and table is active
    After replicating this table from ECC to CRM, vendor field not updated in table and it is inactive.
    There is any mapping settings required to update vendor field in CRM table from ECC.
    Please help me out to solve this issue
    Regards
    kishore kumar

    hi,  the data field of vendor is a standard one or custimizing one?
    I remeber there is a data mapping setting in CRM, for condition field.   If you want to mapping a ERP standard field to a CRM custmizing one, you need to setting your rule in it.  Maybe you can find it in SM30 view.
    I can't login a CRM system now, so sorry for not offer your the view name.

  • Function Module to Update the Profit Center in Profit Segment of SO?

    Hi,
           I am updating the profit center with help of user exit in the sales order at the time of saving it. But my problem is it doesnt appear in the Profit Segment in the Account Assignment.
           So if i go to the change mode of a Sales Order do some change and save it, the profit center get determined automatically. Now if one goes into the display mode of the same order and goes into Account Assignment of a particular item we can see that the Profit Center in the Profit Segment pop-up is not updated.
          My question here is, is there a function module to derive/update the profit segment so all the details get updated in the user exit used to update the profit center?

    Hi Deepika,
    Did you find any way to update the discount pricing in camapign.
    Thanks,
    Satya

  • Sharepoint 2013 Active Directory Import- Manager field not updating

    Hi,
      SharePoint 2013 Active directory import  -Manager field not updating
    Concern/Issue-
     We are using SharePoint and configured the Active Directory Import .First import it seems everything is working fine and OOB Organization chart  built using User profile data is coming out right.
    Now the user is moved from one Organization Unit to Another.
    Now our Manager field is not Updating .There is change in AD manager attribute but not reflecting in the SharePoint User profile.
    Manger field is mapped to "manager" attribute in SharePoint.
    We tried removing the user and Re-Import using Incremental import but no luck.
    Thanks for help in advance
    Sachin

    Moving a user from one OU to another in AD won't normally change the Manager attribute in AD.  You would need to edit the user's organization settings to change the manager value in AD.  I've also seen these changes not be picked up unless something
    other than just the manager field in AD changing.  Try changing something like Office location and see if the manager change is picked up by AD Import.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Restricting Creation/Update of Profit Center Master Data through KE51/KE52

    Hi,
    I have a scenario where profit center master data is maintained in MDM which acts as central repository and the master data is syndicated from MDM to ECC through PRCMAS IDoc. Business requirement is that since MDM is acting as central repository creation/update for profit center through transactions KE51/KE52 should be restricted in ECC. I know that through roles we can restrict user to create profit centers but is there any way/configuration steps which we can perform to restrict user to create profit centers through transaction and I also want to know if that process would affect the creation/updation of master data through PRCMAS IDoc.
    Thanks,
    Amit

    Hi,
    As I told you can go forward using SetID but for that you have to create the SET than assign it to a table and also have to cutomize a standard FM.
    Meanwhile I will tell you a easy way you can opt for Transaction Variant usinh SHD0 where dont give the option to save so that no user can create any Profit Centre and than assign that Tcode to the users.
    Its a simple way hope it helps you.
    Thanks
    Arbind

  • Segment field missing while creating profit center master data in SAP ECC6.

    Hi,
    I am working on ECC6.0 IDES. When I create profit center master I dont see the field for Segment on the profit center master.
    Is there any setting which needs to be activated to see the the field for Segment on profit center master.
    Regards,
    Raghav

    HI Raghavendra,
    Check if the segmentation scenario is available for general ledger at the following path
    Financial Accounting (New)>Ledgers> Fields > Customer Fields > Display Scenarios for General Ledger Accounting
    Regards
    Sach!n
    Edited by: Sachin Bhutani on Mar 26, 2009 11:23 AM

  • Customer payment amount is not reflected in Profit center trail balance

    Dear All,
    One accounting document customer payment
    PK: 40  Gl 121222  inr 100.00      Profit center : p2010              
    PK : 15  CUSTOMER   inr 100.00
    the above amount  rs 100.00 is not reflecting in Profit center Trail balance F.5D.
    Please help me on this issue.
    Best Regards,
    Venkat.

    For AR and AP, you need to prediocally execute 1KEK - Transferring Payables/Receivables .

  • Accounting error : Posting not possible for profit center XYZ In company Z

    HI folks,
    Do any of you have come accross this error in passing of billing doc to accounting " Posting not possible for profit center 153 in company code Z134. Kindly let me know what could be the possiblity and the solutions
    Thanks,
    Kamal

    Hi,
    Might just be better off to take the guidance from your FI guys. Pl. check if all the assignments are made correctly, like the material is linked with a profit center and this profit center to a cost center and finally to the controlling area. Also check if the currency of the profit center is the same as the controlling area currency.
    Regards
    Sadhu Kishore

  • Bank Posting not being updated in Profit Center - ECC 6.0

    My client has implemented ECC 6.0.Profit Center Accounting is also implemented.
    The query is when I do a posting to the bank account system does not create a PC Doc. Can anybody help me with this.

    Dear,
    If you need to update Bank accounts in PC, you may try with 3KEH to maintain the GL under Profict center. I think PCA is updated in your Controlling Area.
    Regards,
    Dharma Rao. Yekula

  • Validity From Field is not available in Profit Center Display KE53 or Change KE52

    Hello Experts,
    In profit center display or change in F4 help i am not able find the Validity From Date option, in this below snap shot validity To option is there but validity From Date
    option is not showing, can any one tell me how to get Validity from Filed.
    Thanks in Advance
    AIM

    Hi,
    Any suggestions regarding the below mentioned issue?
    Thanks &Regards,
    Prasad

  • FBL1N - fields not updated

    MODERATOR:  All points have been UNASSIGNED and the thread LOCKED.  Please do not share email addresses or links to SAP copyrighted information on these forums.  If you have some information, please consider posting it to the [Wiki|https://wiki.sdn.sap.com/wiki/display/ERPFI/Home] rather than sharing via email.  Than you for your assistance.
    Hi SAP Gurus,
    I am creating a vendor invoice through MIRO by reference of PO. But in vendor line items report FBL1N, purchasing document field, profit center and plant field are not getting updated.
    Kindly help as this is an urgent requirement.
    Regards,
    Anant

    MODERATOR:  All points have been UNASSIGNED and the thread LOCKED.  Please do not share email addresses or links to SAP copyrighted information on these forums.  If you have some information, please consider posting it to the [Wiki|https://wiki.sdn.sap.com/wiki/display/ERPFI/Home] rather than sharing via email.  Than you for your assistance.
    Hi Prasad,
    It was very helpful. Thanks so much. Points assigned.
    Regards,
    Anant
    Edited by: Anant Saraogi on Feb 23, 2008 9:46 AM

Maybe you are looking for

  • Can a pc user have an iCloud?

    My husband just got an iphone 5 but has a pc computer.  Can he access the family iCloud from his pc? He has an iTunes account and the phone was synching to that, however, we'd like him to have our iCloud on his phone to keep up with the family calend

  • Upgrade to Lion on multiple computers

    Hello, I would like to ask whether there is some announced feature about installation of Mac OS X Lion on multiple computers with different accounts. I've read that if I have more computers and using the same ID, I can install just one copy of Lion o

  • HP psc 1350v paper jam error/ feed issue

    My printer is not feeding the paper through it when I print or try to copy something. I have some electronics experience, I have inspected the pickup rollers while printing & it is not turning.  Any help would be much appreciated. Thanks. Jim  

  • What is the easiest way to use a video clip as the DVD's menu and have titles?

    Ok, I"m using Ppro CS4, and I have a clip that i would like to be the title screen when the DVD starts.  I then want to click on something like Play movie that will play the movie. I want the Menu to be the actual video clip playing in the background

  • Presets confusion (6 clips on one DVD)

    I've finished editing my first FCP 5.0.4 DVD anamorphic Pal project – 6 totally separate clips totalling 113 minutes. About to use Compressor 2.0.1 for the first time (one of the DVD Best Quality settings). My six clips are around 10, 22, 26, 23, 15