Wagetypes /561(Claim) and /563(Claim from Previous month

Hi,
Please explain the wagetypes /561(Claim) and /563(Claim from Previous month). and thier relevance.
I know that the difference between /561 and /563 shows the net amount that SAP has reclaimed from the overpayment in a single month.
What in case these wagetypes occur in case of a LEAVER? Then how this should be dealt with.

Hi Srijit,
Thanks for replying.
My case is of an employee who left the company in June08. His last payroll was run in June.
Now when the salary of february was processed it came to notice that  Rs388/- was posted into employee suspense account. His salary statement shows Take Home pay as Zero.
The posting shows the following:
/552 ( stat net adj)  ( amount)388.00 (credit)
/561 (claim) (amount)50,390.00 ( debit)
/563(claim from prev month) (amount) 50,002.00( credit)
This is the scenario.
Edited by: dips on Feb 27, 2009 7:32 AM
Edited by: dips on Feb 27, 2009 7:33 AM
Edited by: dips on Feb 27, 2009 7:36 AM

Similar Messages

  • Somehow a new contact became associated with my email.  Now all my email has her name on it. This happens only on my iMac, not on my other Apple devices.  I have removed my email from her contact card and deleted her from previous recipients on Mail.

    Somehow a new contact became associated with my email.  Now all my email has her name on it. This happens only on my iMac, not on my other Apple devices.  I have removed my email from her contact card and deleted her from previous recipients on Mail.

    Check the settings in the Accounts for Mail.
    Mail > Preferences > Accounts > Click on your email Account in the left column > What appears under Full Name in the right column?
    If that is the incorrect name you're describing change it to your correct name.

  • How to find first and last day of previous month?.

    Based on current month, I want to find start and end day of
    previous month.
    For example,
    For august, Start date is July 1st and End date July 31st.
    How can i get first of previous month as start date and last
    day of the previous month as end date?.
    Same way,
    i want to find start date of current month and end date of
    next month.
    Example:
    For august,
    i want to get start date, august 1st and end date : september
    30.
    How can i do this from current date or now().
    I am looking for best and easy way to find start and end
    dates..
    Thanks

    <cfset today = now()>
    <cfset firstOfThisMonth = createDate(year(today),
    month(today), 1)>
    <cfset lastOfNextMonth = dateAdd("d", -1, dateAdd("m", 2,
    firstOfThisMonth))>
    <cfoutput>
    today = #today#<br>
    firstOfThisMonth = #firstOfThisMonth#<br>
    lastOfNextMonth = #lastOfNextMonth#<br>
    </cfoutput>
    Edit - To find the start and end day of previous month, get
    the first of THIS month. Use Subtract 1 month ("m") to get the
    start date. Subtract 1 day ("d") to get the end date.

  • TS4036 I added Icloud to join my calendar to another person. It erased all history date from previous months. how do I get that data back?

    I added Icloud to join my calendar on my phone to another person. It erased all history date from previous months. how do I get that data back?

    i found the answer to the first part: reboot and keep hold of command+r
    this gave me a list of options
    one of them was to reinstall lion from fresh
    i went for this
    dont know why... but all forum posts i read said u should delete hard disc? theres an option for this
    which is the right option?
    any suggesstion where i go to register new mac would be great
    thanks

  • TAX SUMMARY REPORT: Credit from previous months

    Dear experts, I have a problem in the Tax Summary Report. In this report there is a wrong value in the fiel "credit from previous months". The correct value is "0" but in the report I find another value.
    I print the report of the previous months and there is the same problem (wrong value of credit from previous months)
    SAP B1 A SP00 PL42.
    Thanks
    Paolo

    Create a new user is not a solution to my problem.
    There is a configuration file where SAP B1 stored the data of each user?
    Thanks.
    Paolo
    Edited by: Paolo Orlando on Aug 25, 2009 5:06 PM

  • A day from previous month

    Hi,
    Is there any function module to get a day from previous month? I tried FM 'CCM_GO_BACK_MONTHS', but it is not working correctly.
    If I give the sy-datum input as '03/30/2007', it is giving the previous month date as '02/30/2007'
    Thanks,
    Uma.

    Try.....
    report zrich_0001 .
    data: day_from_previous type sy-datum.
    call function 'RE_ADD_MONTH_TO_DATE'
      exporting
        months        = '-1'
        olddate       = sy-datum
      IMPORTING
        NEWDATE       =  day_from_previous.
    write:/  day_from_previous.
    Please be sure to award points for helpful answers to all your threads today, and mark as solved when answered completely.  Thanks.
    Regards,
    Rich Heilman

  • Formula to subtract current month from previous month

    Hi
    I would like to how to subtract current month from previous month in Crystal 10.  Basically am looking at the variations that between the two month .   I would also like to know the 12 m onth rolling data formula.  Using the same formula, you need to get the difference between the two month.
    Any help on this is very much appreciated.
    Thanks
    Regards
    Cauvery

    Hi Thanks for reponding.
    Though the formula is correct, I don't think it will work out in that way because I have a 12 months rolling data  formula and using this formula  I have to subtract the current month from previous month.
    This the formula that am currently using for 12 months rolling data
    {HPD_HelpDesk.Arrival Time} >= DATEADD ("yyyy", -1, CURRENTDATE)
    Please advise.
    Regards
    Cauvery

  • Data being removed from previous months calendars.

    My
    Data is being removed from previous months calendars

    Go to settings>mail,contacts, and calendars. Make sure the settings for Sync under calendars is set to all events to sync all past events.

  • Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?

    Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?  I have corrected my settings for future entries (I think/hope) but want to put the old stuff back on.

    Try this...
    Settings > Mail, Contact, Calendars.  Scroll down to Calendars and set "Sync" as desired.

  • Calculating previous month and year of the previous month

    Hi frenz,
    Can anybody know FM to calculate the previous month and year of the previous month.
    are there any standard FMs existed to achieve this?
    br,
    anil.

    hi,
    lv_period gives the month and year which is two months earlier now as we have specified lv_months as -2.
        DATA: LV_PERIOD LIKE S001-SPMON,
              LV_MONTHS(2) TYPE C VALUE '2-',
              LV_DATUM LIKE SY-DATUM,
              LV_NEWDT LIKE SY-DATUM,
            P_SPMON LIKE S001-SPMON VALUE '200601'.
        CONCATENATE P_SPMON '01' INTO LV_DATUM.
        LV_PERIOD = P_SPMON+0(6).
        CALL FUNCTION 'MONTH_PLUS_DETERMINE'
             EXPORTING
                  MONTHS  = LV_MONTHS
                  OLDDATE = LV_DATUM
            IMPORTING
                 NEWDATE = LV_NEWDT
             EXCEPTIONS
                  OTHERS  = 1.
         IF SY-SUBRC = 0.
           LV_PERIOD = LV_NEWDT+0(6).
         ENDIF.
    WRITE :/ LV_PERIOD.
    Regards,
    Sailaja.

  • Why has my calender lost past inputs from previous months?

    Why has my calendar lost inputs from previous months?

    Hi, Shirvinhurst
    Thank you for visiting Apple Support Communities. 
    This sounds like the days to sync are limiting the past events.  I would recommend changing the days to sync to your preference by going to Settings > Mail, Contacts, Calendars > Sync.  Just in case you need to reference this information, it is located on page 61 of the user guide below. 
    iPad User Guide
    Cheers,
    Jason H. 

  • Firefox hangs at start. A new profile with a copy of my bookmarks and other files, from previous profile starts OK. At next start I have to setup a new profile. Since June 2010 in Ubuntu, with automatic update.

    Hi,
    My firefox-profiles in Ubuntu, are practically one-timers.
    Next time i want to use firefox it hangs at start. The window comes up
    and it's white, except for a square in upper left corner (without color).
    I'm having this problem since June 2010, when I started using an electronic ID,
    for access to Swedish goverment organisations. The Electronic ID (BnakID) is
    supported in Windows, Mac and Ubuntu. I had a new installation of Ubuntu, in a
    virtual machine at that time.
    I can't say that this is a problem with Firefox in Ubuntu or some other
    combination, I'm a newbie with Ubuntu and BankID.
    I've used been using Firefox and installing (Firebird, Mozilla) since 2001,
    in other OS:es than Ubuntu (Solaris, RedHat, Windows and SLED).
    My workaround are:
    - cd ~/.mozilla/firefox
    - mv profiles.ini profiles.ini-
    - Start and stop firefox
    - Copy some files from previous profile, to the new.
    cd <previous>.default
    cp -r bookmark* cert8.db content-prefs.sqlite cookies.sqlite* \
    extensions* places.sqlite* prefs.js sessionstore.* signons.sqlite* \
    ../<new>.default/
    - Start firefox
    My environment:
    Linux uw000141 2.6.32-26-generic #48-Ubuntu SMP Wed Nov 24 09:00:03 UTC 2010 i686 GNU/Linux
    Mozilla Firefox 3.6.13, Copyright (c) 1998 - 2010 mozilla.org
    BR,
    Henrik

    Try the fix posted by houseboats in this discussion: spinning beachball suddenly every time at launch. Other users have reported that it fixed their problem which is similar to yours, good with airport off, freeze with airport on. 
    The only problem I had with the fix was that it killed the name I gave my computer in the System/Sharing preference pane.  So if you use it go to that pane and rename your computer as it was originally.
    OT

  • Delete overlapping request in PC - Request from previous month got deleted

    Hi Everyone,
    We are using a 'Delete overlapping request' step in a process chain. Under the Deletion Selections, we have checked the following options:
    1) Only Delete Requests from Same DTP
       |_ Selections are - Overlapping
    2) Request Date - Is in the Current Month
    3) Exceptions:
       |_ New Request will be loaded on - 1st Day of a Month
    The datasource in this case is used for a Full update into a Cube everyday. We've used the above selections so that the request loaded on the last day of a month is not deleted by the subsequent load. We need this to retain a snapshot of the data for each month.
    This month, when the process chain executed on 1st Feb, the request loaded on 31st Jan was not deleted. However, on 4th Feb, the Process chain deleted the request loaded on 3rd Feb and also the one from 31st Jan. There seems to be no reason at all for the 31st Jan request to get deleted. We've made sure of that by choosing the option 'Request Date - Is in the Current Month' in the Deletion Selections.
    Is there any explanation why the request was deleted?
    Thanks,
    Ram

    Hi,
        If you dont have any selections , it will delete the previous request. Based on the selections only overlap will work.  For your scenario , it wont delete previous month request after changing it to current Fiscal period. Once check the selection options , is it displaying month wise or empty selections.
    Regards
    Pcrao.

  • Calculating receipts from previous month based on the sales of current mont

    Hi Gurus,
    I have a requirement where i need to display sales for a quarter and need to display receipts from the previous quarter. For example consider that i am displaying sales from week1-Aug to Week4-October, I need to display receipts ( R_Net_RCPTS) from Week1-july to Week4-September. In that way If i select Wk1-Aug for sales it should display Wk1-july receipts. i need to do this in Webi by creating appropriate variables.
    I have got prompts on year and Fiscal Week
    I have given year as 2011 and The "08: Fiscal Week From:" as "Wk1-Aug" to "08: Fiscal Week To:" as "Wk4-Oct"
    I HAVE GONE THROUGH ALMOST ALL RELATED THREADS, BUT COULDN'T FIND ANY SOLUTION. ITS REALLY URGENT. PLEASE HELP ME AND I WILL FOR SURE GIFT POINTS.

    HI
    Your explanation is not clear whether u want to display current quarter data or you would like to see only previous month data ?
    Which dimension you are taking for week ? how data would be like ?
    Edited by: K.sunil on Nov 21, 2011 9:14 AM

  • Concurrent Process to generate journals from previous month posted journals

    Need to create an Oracle concurrent process that allows to generate journals from the previous month posted journals. Parameters would be Journal Name and Period. We wanted to copy a posted journal or save it as a different name.

    Need to create an Oracle concurrent process that allows to generate journals from the previous month posted journals. Parameters would be Journal Name and Period. We wanted to copy a posted journal or save it as a different name.

Maybe you are looking for

  • Mail attachment with time stamp

    Hi My scenario is Proxy to Mail. On receiver side I am getting the data as an attachment but i want that attachment with time stamp. How to add time stamp to the attachment in reciever mail adapter. Regards Sowmya Edited by: Sowmya on Aug 28, 2008 12

  • Display blob field  on pdf  with pl_fpdf

    Hi All, I wish I could use some method to output PDF from the PL/SQL. I already have a document (image stored as BLOB). Now, I need to output this image in PDF. I know doing this outside database is easy and advisable. When I use pl_fpdf with image f

  • How to get GUID all of user in OU

    I have use exchang svr 2013 . How to get GUID of user all in OU ? currently i use scriptr exchange power shell $username = "username" $guid = (Get-Mailbox $username).ExchangeGUID $upn = (Get-User $username).UserPrincipalName $upnsuffix = $upn.Split("

  • Why iam not able to call stored procedure and resultset in JSP

    hai guys, i screwed with this issue last 2 days here is the code Connection con=null; Callable proc = null; try      proc = con.prepareCall("{ call List_Service_Numbers1(?) }");      proc.setString(1,switchid);      proc.registerOutParameter(1, oracl

  • Driver & Touch Pad Light

    Dear sir,  I have laptop of HP Pavilian Dv6. and have window 7 but i have issues with the Driver of my laptop. Please send me all the drivers with compatiable window 7. I already updated my window, however i have issue to find its driver. Please also