Incorrect contribution value after rate change in pension scheme

Hi Guys,
I have come across a peculiar thing while changing the rates for the employee and employer contributions for a pension scheme.
We have a pension scheme called "Opt60" which is implemented by having a recurring pre-tax deduction element. The formula attached for this element calculates the employee and employer contributions and directly feeds the parent element for employee contribution an indirectly feeds an employer contribution element(non-recurring and employer charge classification).
The rates for the employee and employer contributions are stored in 2 globals (13% for EE and 12.5% respectively).
Now, when running the quickpays from april to june correctly calculates the EE and ER contributions. But when i change the global values(EE= 18% and ER=9.8%) on 01-JUL-2011 in update mode. The EE and ER contributions are coming something else(incase of EE it is neither 13% nor 18%) for the month of July. But when i run quickpays for subsequent months like Aug, Sep, Oct, Nov and so on, they are correctly calculated at 18% for EE contributions and 9.8% for ER contributions.
Also, if i do a balance adjustment for the month of July for EE and ER contribution then, for the next month ie.Aug, they are coming exactly same as July months and from now the subsequent months like Sep, Oct, Nov and so on, it is correctly calculated at 18% for EE contributions and 9.8% for ER contributions.
Can you take a look at this and suggest me something i have be overlooking.
Also, the Balance value used in the formula is of dimension ASGTD_YTD. Does this have an effect on the outcome of the above mentioned % contributions?
With Regards
Sachin S.

Is the same WT being used for the pension deduction?
Does that WT appear in the employee's RT?
In the Benefits Processing part of your Payroll Schema, I presume that you are using function P0169 to process the Pension Plan.  What is the processing happening in function P0169?

Similar Messages

  • BED not changing value after Qty change in MIGO

    Hi,
    When we are doing MIGO, a message is coming - Ensure that you can receive more quantity on the same excise invoice..after that we can't save the document.
    Scenario:
    First i do J1IEX, there Excise Invoice Quantity was 1216 and BED was 684.61 on it.
    But when we do MIGO, We are just changing the Qty from 1216 to 1000. BED should calculate automatically after change the Qty but not changing.
    After that when we are going to post the document, above mentioned message coming and document not saved.
    Please guide..
    Anil

    Solved myself..
    Solution is maintain the Excise Group with below path: -
    SPRO--> Logistics General --> Tax on Goods movement --> India --> Basic Settings --> Maintain Excise Group.
    Now db click on suitable Excise Group. There, check on EI capture under MIGO Settings window.
    After done that at the time of MIGO, BED rate should calculate automatically.
    Thanks all....

  • OBIEE-Values after decimal changing after download in excel format

    Hi,
    I have reports in OBIEE 11g,in which some columns have values in %.When i try the various export/download functions and noticed that the Excel download did not maintain the fomatting for pecentage values, they fields go out to about 12 decimal places or so.
    For eg..if a value in report is like 12.54
    After export in Excel it looks like 12.546780393345 .
    As i want the same format,pls suggest the solution.

    Hi,
    Refer below link:
    Downloading to Excel with three decimal precision
    format problem while download to excel
    Re: Formatting problem in download report into EXCEL Sheet
    BUG:
    •9107277 KEEP THE NUMBER PRECISION IN DATABASE WHEN “DOWNLOADING TO EXCEL”
    Thanks
    Deva

  • Incorrect BEx Report After Hierarchy Change

    Company A belong to a hierarchy during Period 1 u2013 Period 3/2010. However, beginning P4/2010, Company A is no longer placed under this hierarchy.
    When users run Income Statement report using this hierarchy in P6/2010, they are unable to view revenue registered by this company during P1u2013P3/2010 as the company is no longer available in this hierarchy during that period.
    May I know how can we report this missing revenue figures for Company A whenever the report is executed post P4/2010?
    Thanks!

    Hi
    I think you have to maintain the previous hierarchy so that all the GL accounts(chart of accounts - compounded with GL account) related to company A still exist in the hierarchy.
    If there is a complete change in structure of hierarchy, then also add company A related nodes in the new hierarchy for the current financial year since Company A was partially existed in this FY.
    Regards,
    Pruthvi R

  • Purchase order rate change after creation of gr.

    In t- code ME22N PO line item Rate change is possible after creation of GR against that line item.
    We want to restrict the po line item rate change after creation of goods receipt against that line item.
    Please suggest.

    solution 1 : Do not give authorization for ME22
    solution 2 : Grey out price chage , it should only be possible thru info records, and give authorization of info records in secured hands.
    You should not totally restrict price change after GR because there are possibilities that you might require to change rate after goods receipt also. In that case you have to change rate and then have to give restrospective effect to GR.
    try above 2 solutions which are simple

  • How to know when the PRICE AFTER DISCOUNT changed and get the value

    Hi,
    Everything I do to see if a value changed in the grid works except for PRICE AFTER DISCOUNT
    which seems to be inaccessible.
    Any idea how to know when exactly this value changed and do actions accordinly ?
    Also I always get 0.00 if I try to get the value of it
    This works to get in the condition of a vlaue changing but I always get 0.00 as the value of the column
    if (pVal.ItemUID == "38" && pVal.ColUID == COL_DISCOUNT.ToString() && pVal.EventType == BoEventTypes.et_VALIDATE && pVal.ItemChanged == true && pVal.ActionSuccess == true)
        try
            SAPbouiCOM.Matrix Matrix = (SAPbouiCOM.Matrix)SBO_Application.Forms.ActiveForm.Items.Item("38").Specific;
            SAPbouiCOM.EditText Editor = (SAPbouiCOM.EditText)Matrix.Columns.Item(COL_DISCOUNT).Cells.Item(pVal.Row).Specific;
            SBO_Application.MessageBox("Discount changed for : " + Editor.Value + "...", 1, "Ok", "", "");
        catch (Exception ex)
            SBO_Application.MessageBox(ex.Message, 1, "Ok", "", "");
    And this do not even get into the condition even tought I SEE the column PRICE AFTER DISCOUNT:
    if (pVal.ItemUID == "38" && pVal.ColUID == COL_PRICEAFTERDISCOUNT.ToString() && pVal.EventType == BoEventTypes.et_VALIDATE && pVal.ItemChanged == true && pVal.ActionSuccess == true)
        try
            SAPbouiCOM.Matrix Matrix = (SAPbouiCOM.Matrix)SBO_Application.Forms.ActiveForm.Items.Item("38").Specific;
            SAPbouiCOM.EditText Editor = (SAPbouiCOM.EditText)Matrix.Columns.Item(COL_PRICEAFTERDISCOUNT).Cells.Item(pVal.Row).Specific;
            SBO_Application.MessageBox("Price after discount changed for : " + Editor.Value + "...", 1, "Ok", "", "");
         catch (Exception ex)
             SBO_Application.MessageBox(ex.Message, 1, "Ok", "", "");

    just idea, maybe it will works
    Create one udf in row level and set there FS based on changes on price after discount and fill value what is in price after discount. Then the validation make on this field instead of standard SAP field.

  • Exception Aggregation (Average) displaying incorrect values after EHP1 Upgr

    Hi All,
    Exception Aggregation (Average) displaying incorrect values after EHP1 Upgrade in our BW system
    We have recently upgraded the system to EHP1. After the upgrade some of the queries where we are using Exception Aggregation (Average) started giving the incorrect values.
    Eg. We are displaying three Key Figures KF1, KF2 and KF3 (=KF1 %A KF2) against Store Hierarchy. In KF3 we are using Exception Aggregation (Average) on a characteristic 0PLANT.
    There are 14 rows against 0PLANT and out of those 2 rows are blank for KF1, so for KF3. When it is calculating the average of these key figures its dividing the total value by 12 instead of 14 which is not correct in our case. Earlier it was dividing the total by 14.       
    So in this case 'Average' and "Average of all values <>0" are behaving the same way.
    Kindly provide some inputs on this.
    Best Regards,
    Sachin Verma
    +44 7506740018

    Hi,
    Thanks for viewing the thread. And happy to let you know that the issue was resolved.
    The solution was:
    Two formulas (local) were created, one including the formula variable with replacement path for ZD1, with exception aggregation on ZD1, and the other with formula variable with replacement path for ZD2, with exception aggregation on ZD2. Both these formulas are hidden.
    Another formula (local) was created for u2018time takenu2019 = formula with ZD1 u2013 formula with ZD2, with exception aggregation total on u2018ZDOCNOu2019.
    For the second instance, when one requires exception aggregation on records that has multiple values for keys, a nesting of formulas can be done displaying only the ones required.
    For e.g. a formula with exception aggregation on say characteristic u2018item no.u2019 can be hidden, and included in another formula for exception aggregation on characteristic u2018document no.u2019. This is a typical case where one can achieve calculation before aggregation for a calculated key figure, formula or a counter.
    Hope it might help someone, and saves time and effort for a similar issue posted.
    Also would like to keep this thread open for exploring better solutions.   
    Regards,
    Vijay

  • Profile keeps old property value after change in Content Administration

    Hello,
    Inside of my coding I read a property value from profile:
              IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
              IPortalComponentProfile profile = request.getComponentContext().getProfile();
              String svalue = profile.getProperty("ProxySet");
    Then I go to "Content Administration" and change a value from "true" to "false" in property "ProxySet", however it still shows me previous "true" value when I debug the code. I don't believe I have to restart entire portal to make this change work on one iView, right? Please advice!
    Thanks,
    Yan

    Hi Yan,
    Well that's true that you need not restart the portal after the changes in the iView, but have you saved all the changes made in the iView properties. Please check it and ensure you save all the changes made in the iView properties.
    I hope this helpful/solves your problem!!! If so then Please reward points..
    Rgds,
    Vikas.

  • Programmatically update a Project after a resource rate change.

    Hello, I have the following scenario (Project Server 2010):
    1. The resource standard rate for an enterprise resource (Joe) have been changed from $120 to $125. The change was made in PWA
    2. Joe has assignments in several projects
    3. PMO wants to see the updated projects cost (due the rate change) in a Project Center view
    Easy Solution:
    In Project Pro, open and publish each project. Works just fine, the Project Center view shows the updated project costs.
    Desire Solution: Using the PSI update all projects. At first sight is pretty simple:
    1. ReadProjectList (only those where Joe has assignments)
    2.  For each project in the list do QueuePublish
    But, seems to be there is no method in the PSI that "loads" the new resource rate, as Project Pro does when the project is opened.
    I have tried with QueueUpdateProject and QueUpdateProjectTeam but I have no luck. Furthermore, programmatically I have made other changes to the project, like add a new resource to the team, then publish the project, and the change is shown but still it
    continues working with the previous rate.
    Any idea on how to achieve this?
    Thanks,
    Daniel
    Daniel Villacis

    I just got off the phone with Apple.  They said it was a software-update related problem.  I restarted the computer and everything is working.

  • Incorrect data value selected when clicking on slicer entry in Excel Services

    We have uploaded various Excel 2013 files containing pivot tables to Sharepoint 2013 and viewed the pivot tables in a browser. The referenced pivot table data is normally a SSAS tabular model. This has been working fine for over 12 months apart
    from one irritating feature.
    Sometimes a clicked slicer entry does not result in the correct slicer value being selected. This typically occurs after using the mouse scroll button to scroll down a list of entries in a slicer. When using the keyboard arrow keys to highlight a slicer
    value and pressing Return to select an entry, the correct value does always seem to be selected - so it appears to point to a mouse scrollwheel issue. Also, after scrolling through slicer entries using the mouse scroll wheel, there appears to be some sort
    of slicer refresh problem that results in a blank entry/entries being displayed either at the top or bottom of a slicer. However, sometimes the correct 'tooltip' is shown for this blank slicer entry. One other point - when using the slicer scrollbar the scroll
    down a list of slicer entries using Firefox, the problem does not seem to occur. IE does not seem to display the same type of slicer scrollbars (only active when the mouse hovers over the slicer) and so this is more difficult to replicate in Ie.
    The worrying factor is that the user is often unaware that the incorrect slicer value has been selected. The problem can be replicated in both IE11 and Firefox. Also our client systems accessed via Citrix display the same problems.
    Any help greatly appreciated. Thanks.
    Graham Goodwin Email: [email protected]

    Hi Graham,
    i built the same version, please correct me if should your environment, is sharepoint 2013 with march 2013 update and your office also the same update. in my labbox seems the issue is not re-producible.
    after some discussion with my colleague, seems there was issue similar like this back in 2010 Excel and the remedy is to update the excel services and to re-install the power pivot at SQL server. back then the issue is because when we scroll the selection,
    it should be locked, so then when we scroll it may have the position to update and refresh the data. one of the workaround is by clicking the item and press enter, by doing this it will refresh the page correctly. the link was:http://www.microsoft.com/en-us/download/details.aspx?id=29074
    i tried to look at our update for the excel services 2013, there are updates in every cumulative updates but there is no particlular update regarding this issue, perhaps you may try this to check in your development environment, if should it may fix the
    issue.
    to re-install the power pivot, you may need to do this on your sql side. 
    http://technet.microsoft.com/en-us/library/ee210708.aspx
    http://technet.microsoft.com/en-us/library/ee210671.aspxi may suggest you to check the ULS log, if should there are issues with powerpivot also, to make sure if should there are no issue
    regarding power pivot. if there is no issues on the powerpivot, then you may need to open a ticket to report this issue, so that we can have a detailed checking to your environment remotely.
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Crystal Report (RDC) doesn't print correctly, after Printer change ?

    There are problems with the page format and the color settings for the new printer !
    It should be resolved with ADAPT01104291 FixPack3.8
    Description: Crystal reports may not print properly after users change printers by using the SelectPrinter command from the Report Designer Component (RDC). The cause of the problem is that the incorrect DEVMODE structure size is allocated to the print job.
    We are using CRXI_R2_SP5_Upgrade: ProductID=11.5.11.1470.2.26.Patch
    but we still have the problems !

    Hello Don, thank you for your extensive answer. The PCL printer of HP is not the trouble maker. The problem is obviously replicable with any other Printer Driver (Espon/Sharp/Kycocera a. s. o.)  I only installed this PCL Printer Driver of course you mentioned it in your example before.
    Okay, let's talk about the Devcap-Program and there Information about the paper source of a printer. Even in Visual Basic it's possible to get those Information by Win-API-Call's. Here they are:
    PrinterID: , AusgabeName: , TreiberName: , Port: LPT1:, TrackDefault: , PaperSize:
    Papier-Schächte:
    Automatisch auswählen, Nr: 15
    Automatische Druckeraus, Nr: 262
    Schacht 1, Nr: 261
    Schacht 2, Nr: 260
    Schacht 3, Nr: 259
    Schacht 4 (2000-Blatt), Nr: 258
    Manueller Einzug (Schac, Nr: 257
    Papier-Formate:
    Letter, Nr: 1
    Legal, Nr: 5
    Statement, Nr: 6
    Executive, Nr: 7
    A3, Nr: 8
    A4, Nr: 9
    A5, Nr: 11
    B4 (JIS), Nr: 12
    B5 (JIS), Nr: 13
    11x17, Nr: 17
    Umschlag 10, Nr: 20
    Umschlag DL, Nr: 27
    Umschlag C5, Nr: 28
    Umschlag B5, Nr: 34
    Umschlag Monarch, Nr: 37
    Jap. Doppelpostkarte gedreht, Nr: 82
    12x18, Nr: 131
    9x12, Nr: 132
    C4, Nr: 133
    Maximum 11,7 x 17,7, Nr: 134
    and even set those Information for the RDC-Sturcture, so there is a solution for the setting of the paper size.
    But there is not solution for the setting of the color nor the further page settings (Printing onesided or bothsided a.s.o.)
    I can change the default windows printer settings but that has no effect on the RDC-Print !  So I think, there must be a solution by the Crystal-Report-Design-printing-DLL (craxdrt.dll) !
    Greetings V. Hölscher

  • The user exit-sy-ucomm value is not changing

    Hi Everyone,
                      I have created a subscreen to be called from the program SAPLXQQM (Notification header).Within that suscreen (0115) I am calling another screen (say,1000) after wrapping it in a FM, as shown below:
    Code in the flow logic of subscreen 0115-> Call Function 'XYZ' .
    FM 'XYZ':
    Function XYZ
    Call screen '1000'
    End Function XYZ
    This is done by pressing a button created on the subscreen with F-code already provided in the enhancement.
    After the processing of the FM the control comes back to the calling screen of the subscreen 0115. Here the value of sy-ucomm is the same as that while calling the FM 'XYZ' .Now the problem here is that this value is not changing even when the control comes back and I do any other event like pressing an 'Enter' or 'Scrolling'.So the FM gets called again and again.
    I want to know why is this hapening and how can I rectify this?Is this because of the way I called the screen 1000 from the subcreen 0115.
    Please reply.
    Regards
    Abhishek

    Hi abhishek,
    Once after completing the processing of ur sub subscreen(0115) u r cming to ur subscreen
    and still getting the same screen(0115) for any other event, it might mean that the events which u r calling are not defined with the respective ok code.
    Bcoz of which every time after calling other events ur sy-ucomm is not getting modified
    bt persists the same old value.
    Pls chk the Function codes neccessary to trigger other events. eg: back button
    regards,
    ajit.

  • How UBR/UNR will be balance in GL in case of xchg rate change?

    Hello Experts,
    I am in position where customer has accrue revenue in INR which is funded in USD with exchange rate A but now after a month when customer invoiced it, exchange rate has change to A+2. because of this UBR a/c got imbalance of A-(A+2) = 2 then how a/c UBR will get balance?
    example - @ time of Revenue -on 1-May-12 USD-INR rate was 50 Rs - so revenue was - 2$ = 100 rs/- INR - UBR -Dr = 100 Rs
    @ time of Invoice -on 2-Jun-12 USD-INR rate change to 52 - so invoice was 2$ = 104 rs/- INR - UBR- Cr = 104 Rs
    How in this case UBR get balance?
    Plz help...............
    Thanks
    :-)

    Hi Devesh,
    Thanks for the inputs you share. I have gone through the link and found that it is still under development.
    but another thought process suggest that in General Ledger module, if you run the revaluation process then will it be balances UBR/UNR accounts?
    The concept of revaluation in GL is to add the difference of amount as realized gain or loss..rght?
    Plz confim my understanding..
    Thanks
    :-)

  • TDS rate changes, effective 1st Oct'09

    Dear All,
    We are planning to create new TDS codes for New TDS rates which will be effective from 1st Oct.
    - Using LSMW to upload the TDS codes
    - Not deleting old codes which are already assigned to the master
    After updating new tax codes for already posted docs with old codes (not paid), as we are getting 'Inconsistent withholding tax' error during payment run, we have to run program - RFWT0010 to update the new tax codes in the documents.
    I have two questions here
    1. Is there any better way of making tax rate changes in the system?
    2. Is there any standard transaction code for this program as user has to run this after updating TDS codes and we cannot give SE38 access to him?
    Regards,
    Gangadhar

    Hi,
    Thanks for your reply.
    Firstly, we considered this option. But Surcharge is getting changed(no surcharge in many cases). We are maintaining surcharge rates per each WTX type and we are taking TDS certificate printout quarterly.
    As per your suggestion, we have to maintain a new rate in the path given and maintain 0 surcharge for TDS codes on 1st Oct(table - J_1IEWT_SURC1). How do we maintain tax type wise old surcharge rate, if we have to take certifiacte print for Sep quarter in October.
    Please clarify.
    Regards,
    Gangadhar

  • How Can i retain the Shared Variable Values after PC rebooting

    Hi all,
    I am facing a paculiar problem with Shared Variables. I have an application in which shared variables are used for data communication.
    One of the application requirement is to retain the variable values eventhough PC is rebooted or started after crashing. 
    As per the my understanding, the variable values will retain eventhough the PC is rebooted. But here i can observe a paculiar problem like some library variables are retaing the values while some others not. I enabled logging for all the variables.
    I tried many ways. like logging enabled, logging disabled, changing variable names, changing process names etc... But i am not getting a consistent behaviour.
    I hope some you can help me in solving this issue.. "How Can i retain the Shared Variable Values after PC rebooting"
    Thanks and Regards,
    Mir

    Hi Blackperl,
    Thanks for the post and I hope your well. 
    What do you mean by not getting consistent behaviour.. this will all depend on excatly when the crash happens i.e. before the write or after. 
    Surely a better method would be to log the data to a file during the reboot...
    I beleived the value read back
    will be the default value for the shared variable's data type.
    The LabVIEW DSC 8.0 module adds more functionality to the shared variable, including initial values and alarms.
    If you enable an initial value on a shared variable, when the variable
    engine comes back on-line it will default to this value. Setting a bad
    status alarm for the shared variable is also a good way of handling
    this type of event. Additionally, if you are using a LabVIEW Real-Time
    target such as Compact RIO or Compact FieldPoint, it is appropriate to
    consider hosting the shared variable engine on the real-time target.
    These devices have watch-dog capabilities and are typically the
    hardware controlling the critical pieces of an application. Most
    Windows or PC-based targets do not have these fail-safes.
    I guess, if you could explain to me again that would be great. From my point of view, if I have a cRIO and a Windows PC. If the windows PC crashes, the cRIO will still update its shared variables. Then once the PC has started up its own shared variable engine, and the bindings are loaded, it will once again continue to update its copies of the variables.
    Please let me know what you think,
    Kind Regards,
    James.
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

Maybe you are looking for