F107: how to valuate by Profit Center

When I post a revaluation for Customer Open Items via transaction F107, the profit center is determined based on the 3KEH settings.  However I would like to use the profit center from the original open item. Is this possible?
Thanks in advance

Hi, Cristiano.
Thank you for your useful advice
Do you know smth about new special functions (see attach file)?
Regards,
Tatyana

Similar Messages

  • Valuations default profit center, how to obtain the original profit center?

    Hi Experts,
    Currently our valuations are being booked; they book the BS Account vs Unrealized Exchange Gain or Loss.
    The Profit Center for that BS Account is being determined automatically by the 3KEH table. Is there any way to derive the profit center from the Original Line Item?
    Example Entry
    PK     Account     Amount     Profit Ctr     
    40     10403494     549.21     OO6376DDD      BS Account - How to obtain the profit center from the original postin?
    50     37300104     549.21-     OO6376AAA  Exch Gain/Loss
    Thanks.

    Hi.
    '2. I know its going to be reversed the next month, our concern is that the amount that is going to the default profit center then will be allocated via cycle based on SKF so reflecting the data in profit centers that are not the ones that were originally affected.'-actually you can exclude adjustment account from sender while allocating,but it's better to substitute with right PC.
    '3. any logic on how substitution might work?' in fibf you can use process 1120
    'will it bring performance issues?'-no
    '1. How can this be worked via Doc Split for Unrealized? Do you have any example.'-it's not clear a question
    Edited by: alex ice on Apr 14, 2011 11:12 PM

  • How to change the Profit Center in Sales Order

    Hi Gurus,
    Previously they setted the profit center (YB999) in sales order, now i want to change the profit center and need to give the amount into this profit center 100500.
    So, could you guide me how to change the profit center in sales order.
    Thank you for your replies.....
    Thanks & Regards,
    Chandrababu.B
    Edited by: Chandrababu Naidu on May 25, 2011 12:44 PM

    Hi
    If this SO is processed partially - i.e. transactions happened - You cant change it
    You can use ABAP and change it in Debug mode, but not advisable... Better to short close the SO and open a new SO for Balance qty
    br, Ajay M
    Edited by: Ajay Maheshwari on May 25, 2011 5:10 PM

  • How to Possibal in Profit Center Mandatory in AR Invoice

    Dear Experts,
    How to Possibal in Profit Center Mandatory in AR Invoice through SP_Transaction _Notification ??
    I have write the code below
    <If @object_type = '13' and (@transaction_type = 'A')
    begin
    IF EXISTS (SELECT DOCENTRY FROM inv1 WHERE (ocrcode is null or ocrcode2 is null or ocrcode3 is null or ocrcode4 is null) AND DOCENTRY= @list_of_cols_val_tab_del)
    begin
    set @error = 1
    set @error_message = 'Please enter a Profit Center before Save'
    end
    end>
    Dixit Patel

    Hi Dixit Patel,
    Try this,
    IF @object_type = '13' AND @transaction_type IN ('A', 'U')
    BEGIN
    IF EXISTS (SELECT T1.DocEntry FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE (T1.OcrCode IS NULL OR T1.OcrCode = ' ') AND T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Set @error =1
    set @error_message = 'Please enter a Profit Center before Save'
    SELECT @error , @error_message
    END
    END
    OR
    IF @object_type = '13' AND @transaction_type IN ('A', 'U')
    BEGIN
    IF EXISTS (SELECT T1.DocEntry FROM OINV T0 INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE (T1.OcrCode IS NULL OR T1.OcrCode2 IS NULL OR T1.OcrCode3 IS NULL OR T1.OcrCode4 IS NULL)
    AND T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Set @error =1
    set @error_message = 'Please enter a Profit Center before Save'
    SELECT @error , @error_message
    END
    END
    Regards,
    Madhan.

  • How to make the Profit Center Field Mandatory in Cost center Master Data

    Dear All,
    Please let me know how to make the Profit Center Field mandatory in Cost Center Master Data as well as my Internal Order Master Data?
    Thanks in advance!
    Regards,
    Rajeswari Shankar.

    Hi Rajeswari,
    You can modify message number KS096 to "Error" via OBA5. Thus, the users would no be able to save a cost center without entering a profit center. (Depending on your release you can make KS096 modifiable by implementing note 486781.) 
    Concerning the internal orders (transaction KO01), you can run KOT2 and set Profit center field as required entry in "change field selection" section.
    Regards,
    Greta

  • 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 Check the Profit Center - Sales Group - Sales District for a BP

    Hi,
    How to Check the Profit Center - Sales Group - Sales District for a Business Partner?
    I am not able to identify which Profit center - Sales Group- Sales District was assigned to a Business Partner. Please provide me some inputs to check this.
    thanks
    Yadayya

    Hi
    Pls check these tables for data or prepare a z report with abapers.
    GLPCA u2013 PCA line items
    VBKD u2013 sales district
    TVKGR u2013 Sales group
    BUT000 u2013 Business Partner
    Regards
    Sridhara Rao D

  • How to unlock a profit center

    Hi All,
    While creating Delivery for sales document ,i am getting error message " Profit Center is locked for posting"
    and when i am using KE52 to unlock the profit center;this field is deactivated.
    Please suggest how to unlock the Profit Center.
    Thanks and Regards
    Payal Saxena

    Hi Payal,
    The profit centre your are looking for unlocking might be a  dummy profit centre, for dummy profit centres the lock indicator field will be grayed out.
    You can do locking or unlocking for normal profit centres.
    Check the same
    regards
    srikanth

  • How to make field 'profit center' as non-mandatory in Transaction F-28?

    Transaction F-28 shows Profit Center field as mandatory. How to make it optional; i have already checked it in field status groups-its suppressed over there?
    Field status groups are suppressed. I have also checked posting keys and posting keys assigned to the relevant Bank G/L Account.
    Document splitting is inactive on my company code.
    Payments can be processed through transaction code: F-26 (Incoming Payment: fast entry) without Profit Center requirement.
    But at F-28 (Incoming payment), profit center is mandatory.
    Any Help in this regard will be appreciated.
    Thanks.
    Arslan Qureshi.

    Thank You Karan
    I have Un-checked profit center accounting at transaction OKKP, but no effect.
    why can i post incoming payment through F-26 but not F-28.
    Also Document type is DZ in both Transactions. its only in F-28 that it askes for Profit Center
    Thanks
    Arslan

  • How to transfer the profit center balances to dummy profit center

    HI SAP Experts,
    How do transfer balances of profit center to dummy profit center, please tell me step by step process to do this.
    Regards,
    Prabhakar

    Balances Transfer from One Profit Center to Another PC T.Code: 9KE0
    Regards,
    Viswa

  • How to overwrite the profit center derived

    Hi,
    I am posting sd document which is creating the accounting doc. In this the profit center is derived for all the line item . Now for certain accounts I want to attach fixed profit center & not the profit center derived from earlier line item. When I am creating substitution or derivation for this it is not overwritting the derived profit center.
    How can i overwrite the derived profit center.
    Please help us to resolve the issue.
    CHEERS

    Hi,
    The Profit center is derived either from Master data or from the configuration.
    The master datas are
    1) Material Master
    2) Cost centers
    The configuration it copied from the OKB9 for default profit center for the Cost element.
    So when you post the SD document this will be related to the Material only,so check in material master.
    Regards,
    Raj

  • How to make default profit center no in MM Master

    Hi Experts,
    I want to make profit center in mmaterial master costing one tab. how can i fix this.
    For example
    I have profit center 9999, i want fix default for all material master in Costing1 tab profitcenter field.
    Guid on this

    Hi Anil,
    Just use tcode MM02. Enter the material number you want to enter profit center. When you enter after inserting material number it list you difference veiw/tabs, select COSTING1 tab and enter, system will ask to you to enter the plant. Give plant where this material has been created.
    If you want to maintain mass change then goto MM17.

  • How to copy standard profit center hierarchy?

    Hi!
    I should copy standard profit center hierarchy from production to development and test systems, how can I do that? Changes in standard profit center hierachy have made straight to the production system.
    Thanks!
    Points will be given!

    Hi
    Yes, it is possible.
    You can understand it better by reading the F1 help after clickin on the item "Cost element groups" available under the same Master data1 tab.
    Regards

  • How to set exist profit center to dummy profit center?

    Dear all:
            My profit center setting in DEV was set to dummy profit center, but when I transport to QAS that the profit center is normal dummy profit center. therefore the 0KE5 dummy profit center was blank.
            How to fix this problem?
    Best Regards,
    Nicole Chen

    Dear NSRobert:
            Thanks you very much. But still not work!!
    Best Regards,
    Nicole Chen

Maybe you are looking for

  • How do I diagnose inability to normally shutdown?

    I'm running 8.1.7 and everything appears to be fine, execpt today it would not complete a normal shutdown, although it does an abort shutdown and then startup. There are no users or jobs running when the shutdown command is given. What should I first

  • HT202305 how to restart blocked outbound emails

    Outbound eMails blocked due to exceeding daily limit. How to get that email address working again 3 days later?

  • Interactive PDF into InD 5.5 then back to PDF

    For InDesign 5.5, I have an interactive PDF (not movie, user can interact using Acrobat Reader) that I want to place into a new InDesign document then add text (using InDesign) and finally PDF the InDesign document that still retains the capabilities

  • Document viewer common region

    Hello everyone, I am new to OAF development, i was requested to develop a new custom payslip report similar to the default coming with APPS R12 self service, The idea is that it should be an embedded PDF viewer inside an OAF page, After many trials a

  • Movie I Downloaded is only Playing Sound Part...

    I just got a 30 GB movie ipod for Christmas and was eager to try and download some movies. I downloaded the "Gnome" movie and now only the sound is playing on my ipod. While, the actual movie plays on itunes. I noticed that the same thing happend to