How to retrieve deleted payroll results

Hi All,
Unforuntaely user deleted payroll results for the month of june'09 by using the Tcode PU01. But now running the payroll for the period of july09 none amount appearing correctly and payslip for the month of june'2009 is not coming.
How to retrieve the deleted payroll results for the month of june'2009.
Kindly help me out in this regards
Thanks and Regards
Suresh.V

Dear Suresh,
As experts adviced, there is no possibility of retrieving Payrol Results once it is deleted....
that is why people suggest
1) not to authorize user or teach deleting Pay Results to Users !!!
2) to maintain Backup of results every month !! generally this is done by Basis Team
Now, u first delete Payresult for July first and then set teh Control Record to June...
Then make a live run...for June...
This will create entry for June Salary.. n thn u cn again have ur June Payslip.
Then again release for July and run for this employee again...
thus, u have both June and july results ...
Regards
...Sadhu

Similar Messages

  • How to test previous payroll results

    Hi everybody,
    if ur current payroll is oct.. want to test august payroll,,,without cahnaging the masterdata,control record or infotype0003...how do u run payroll run? Is it possible to delete payroll results?

    Hi,
    You can execute the payroll driver for the 'Test Run mode'. Change the control record via transaction 'PA03' for the required payroll period and run the payroll. You can only check the output Log and the remuneration statement.
    Database tables and clusters will not be uploaded.
    Other way is to check the old pay results using the transaction 'PC_PAYRESULT'.
    Thanks & Regards, Swapnil Mishra

  • Deleted Payroll Results Table

    Experts -
    I know how we can display Deleted Payroll Results using t-code SLG1 and enter Object field HRPU.
    However, I would like to know in which physical table is the deleted payroll result data actually stored.
    Regards,
    -Sonny

    I don't believe it is stored anywhere.  It is deleted.

  • Delete Payroll results.

    Hello All,
    Is there any way or any report by which we can delete payroll results for 3000 employees at a time. I tried to use the report RPUDEL20 but this is promting me again for which payroll result shall I have to delete?
    Please advice this is very urgent!
    Thanks,
    Chakri.

    There is no Std option to delete multiple Payroll Results. You either have to d it manually one at a time or go for a custom Program. I would prefer the manual option even though it is time consuming. It is always safer to stick to the Std option while dealing with Payroll clusters. Whereas, you will have to spend a lot of time testing the custom Program to ensure nothing else is impacted.
    ~Suresh

  • "How to retrieve deleted Pages document."

    How to retrieve deleted Pages document? Thanks.

    If you have a Mac that is signed into your account and you are using Time Machine to back up your Mac, you can recover the deleted document using Time Machine.  Otherwise, without a backup souce there is no way to recover it.

  • Deleting Payroll Results in ECC 5.0

    Hi Folks,
    We recently upgraded to ECC 5.0 from 46C. On those rare, rare occasions when we needed to Delete Payroll Results in 46C we implemented Note 537115 to activate the use of RPUDEL20 and Note 537138 to deactivate. Payroll had already EXITED.
    We had a condition requiring to Delete in ECC 5.0. The notes no longer apply.
    Has anyone had to delete under certain circumstances?
    Thanks in advance.

    Hi Charlie,
    Arun has explained exactly the way it has to be deleted.
    PU01 lists the current or latest payroll result, select the record and Click on "Delete" Button or press Shift+F2.
    To view all payroll results you may also use transaction PC00_MXX_CLSTR where XX stands for your country key.
    Regards,
    Bhawanidutt.

  • Delete Payroll Results in Bulk.

    HI
    I want to delete Bulk payroll results in Production system say for 1000 employees .
    I tried to create BDC/ LSMW but, iam not able to create BDC /LSMW for T-code PU01- Delete Payroll Results.
    Nor iam able to use Program RPUDEL20 in Production server.
    Experts plz advice any other Alternative solution.
    Rgds,
    Sekar,

    Hi
    You can copy this Z program to delete payroll result.
    This program will delete the payroll result by just giving employee number / perner in the input file.
    Regards
    Mani
    *******************************************Program Code **********************************************
             REPORT zhr_pydel
           NO STANDARD PAGE HEADING LINE-SIZE 255.
    *include bdcrecx1.
                               INTERNAL TABLES                           *
    DATA : BEGIN OF itab OCCURS 0,
            pernr TYPE rp50g-pernr,  " Personal No.
           END OF itab.
    DATA: l_subrc LIKE sy-subrc.
    DATA : messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA : bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
    DATA : ctumode LIKE ctu_params-dismode VALUE 'N'.
                                        "A: show all dynpros
                                        "E: show dynpro on error only
                                        "N: do not display dynpro
    DATA : cupdate LIKE ctu_params-updmode VALUE 'S'.
                               SELECTION SCREENS                         *
    PARAMETERS:fname TYPE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR fname.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
    EXPORTING
      PROGRAM_NAME        = SYST-REPID
      DYNPRO_NUMBER       = SYST-DYNNR
      FIELD_NAME          = ' '
      STATIC              = ' '
      MASK                = ' '
        CHANGING
          file_name           = fname
       EXCEPTIONS
         mask_too_long       = 1
         OTHERS              = 2
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'UPLOAD'
       EXPORTING
      CODEPAGE                      = ' '
         filename                      = fname
         filetype                      = 'DAT'
      ITEM                          = ' '
      FILEMASK_MASK                 = ' '
      FILEMASK_TEXT                 = ' '
      FILETYPE_NO_CHANGE            = ' '
      FILEMASK_ALL                  = ' '
      FILETYPE_NO_SHOW              = ' '
      LINE_EXIT                     = ' '
      USER_FORM                     = ' '
      USER_PROG                     = ' '
      SILENT                        = 'S'
    IMPORTING
      FILESIZE                      =
      CANCEL                        =
      ACT_FILENAME                  =
      ACT_FILETYPE                  =
        TABLES
          data_tab                      = itab
    EXCEPTIONS
      CONVERSION_ERROR              = 1
      INVALID_TABLE_WIDTH           = 2
      INVALID_TYPE                  = 3
      NO_BATCH                      = 4
      UNKNOWN_ERROR                 = 5
      GUI_REFUSE_FILETRANSFER       = 6
      OTHERS                        = 7
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    START-OF-SELECTION.
    *perform open_group.
      LOOP AT itab.
        PERFORM bdc_dynpro      USING 'RPCDPU01' '1000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RP50G-PERNR'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'RP50G-PERNR'
                                       itab-pernr.              "'2019'.
        PERFORM bdc_dynpro      USING 'RPCDPU01' '1000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RP50G-PERNR'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=STAR'.
        PERFORM bdc_field       USING 'RP50G-PERNR'
                                      itab-pernr.               "'2019'.
        PERFORM bdc_dynpro      USING 'SAPMSSY0' '0120'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=DELE'.
        PERFORM bdc_dynpro      USING 'SAPLSPO1' '0300'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=YES'.
        PERFORM bdc_dynpro      USING 'SAPLSPO1' '0300'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=YES'.
        PERFORM bdc_transaction USING 'PU01'.
        CLEAR itab.
      ENDLOOP.
    *perform close_group.
    *&      Form  bdc_dynpro
          text
         -->P_0118   text
         -->P_0119   text
    FORM bdc_dynpro USING  program dynpro.
      CLEAR bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      APPEND bdcdata.
    ENDFORM.                    " bdc_dynpro
    *&      Form  bdc_field
          text
         -->P_0128   text
         -->P_0129   text
    FORM bdc_field USING  fnam fval.
      DATA : nodata VALUE ' '.          "nodata
      IF fval <> nodata.
        CLEAR bdcdata.
        bdcdata-fnam = fnam.
        bdcdata-fval = fval.
        APPEND bdcdata.
      ENDIF.
    ENDFORM.                    " bdc_field
    *&      Form  bdc_transaction
          text
         -->P_0188   text
    FORM bdc_transaction USING  tcode.
      REFRESH messtab.
      CALL TRANSACTION tcode USING bdcdata
                       MODE   ctumode
                       UPDATE cupdate
                       MESSAGES INTO messtab.
      l_subrc = sy-subrc.
      REFRESH bdcdata.
    ENDFORM.                    " bdc_transaction

  • How to retrieve deleted generic page.

    Hi all, i have mistakably deleted one of my generic page which was assigned to a workset.Can anyone please tell me how to retrieve deleted generic page.

    I don't believe it is possible. I know the messages physically stay on the phone until they are overwritten but with what Apple provides, there is no way to recover them

  • How to retrieve deleted email messages

    How to retrieve deleted Entourage email messages… does anyone know how please??

    Thank you for the advise, I also tried the "advanced" under MAIL/notes and was able to increase all deleted messages
    By selecting " delete messages after 4 weeks"  and/or by selecting "never" , all deleted are in a new box titled
    "Deleted Messages " bypassing the trash box.
    JJ

  • How to retrieve deleted web history

    How to retrieve deleted web history.

    If it's firefox, the complete setup is in ~/Library/Application\ Support/Firefox/Profiles.  You can just go get the whole Profiles directory off of a Time Machine backup, grabbing a time slice that was before you deleted the stuff.

  • Delete Payroll results (PU01) authorizations

    We are trying to provide the access to the transaction PU01 to delete payroll results but since my users dosen't the access to IT0008 it's throwing an error saying they can delete the payroll results. So is there a way where we can provide the access to PU01 to delete payroll results without providing the access to write access to IT0008
    Any help is appreciated
    Thanks in Advance
    Regards
    AR

    Hi Rajendar,
    Its strange, PU01 is check-only in SU24, however, it does require Write access to IT0008. Maybe it does a write in basic pay, who knows?
    This is tricky if you do not want to give direct W access to IT0008. If this is segregated to very few , which would be the case (PU01 is highly restricted)  then probably you can give this object.
    I was also thinking an option of making SU24 for PU01 to 'do-not-check' for P_ORGIN, by this you achieve what you want...... But then realized, HR and Basis objects cannot be changed to Do not check.
    Good luck
    Abhishek

  • Please can someone explain how to retrieve deleted text, I was clearing old text when one came through at the same time so was also deleted.

    Can someone please tell me how to retrieve deleted text. i was clearing old texts when a new one came through at the same time and was deleted also.  My last update was  iOS 8.1.2

    You restore from a backup that was created after the text was received but before it was deleted.
    But if you literally deleted it right after it came in, then it's not recoverable.  Have the other person resend the text.

  • Detailed Log of Deleted Payroll Results.

    I have deleted payroll results for an employee. This result had retro entries. Now I have no clue what was the Earliest MD Change date. Is there any way i can get this date???
    Transaction SLG1 gives me the log but it does not say what all were the retro periods which got deleted...
    Please help...
    Thanks in anticipation......
    Ravi

    Hi Ravi,
    If retroactive accounting runs were linked to the deleted payroll results, all the payroll results that were affected by this retroactive accounting run will be reset to the original status. That means that these payroll results get the status indicator A instead of the status indicator P that they acquired through retroactive accounting.
    So, checking the status indicator might for the retro results may help you in this case.
    Best Regards,
    Venkat.

  • Delete payroll result

    Hi Gurus,
    I have run payroll (not simulation) and found that has some corrections.
    How to delete the payroll result.
    If I delete what are the subsequent activities I must do to run the payroll once again for that employee.
    Kindly help in this regard.

    Prabhu
    If you are still in the same period that the results lie you need not delete the results. Simply run the payroll for that individual again. SAP will overwrite the current set of results. If the payroll has been exited (rolled over to a next period)you need to delete the results which is bad business practice especially if said results have been posted to FI for that closed period. In such an instance SAP's retroactive accounting functionality will sort out the results in the next open accounting period.
    So if you're still in the open period, do the master data corrections and just run the payroll again.
    Deon

  • How to retrieve deleted views of a component

    Hi All,
       By mistake i have deleted all the views of one custom component is there any way to retrive them.It has 3 views one search view , result view and one view set by mistkae i deleted all the three. Is there any solution to retrieve them?
    Regards,
    Lakshmi.Y

    Hi Joaquin,
       So now i have to delete the entire BSP component and then i have to move from one system to another system. i have one question my component is already in Production and quality system. By mistake i have deleted in Dev system. So is it possible to move from Quality system to Dev system. Kindly help me on this.My Component is not a standard component so how can i delete the normal Z components that we created internally for project purpose.
    Regards,
    Lakshmi.Y
    Edited by: Lakshmi Soujanya on Nov 2, 2011 12:41 PM

Maybe you are looking for

  • Stock details of a material with batch details

    Hi. I am developing a PP report for which i require the available material (un restricted stock) details and their batch details which are being displayed in MMBE (tcode). Is there any function module or BAPI or else what is the table name for findin

  • BDX3200KB 3D Blu-ray Player not compatible with some 3D movies

    I have a BDX3200 3D blu-ray player that is connect to a Toshiba 47VL863 3D TV. I have noticed recently that a number of 3D movies do not play correctly. The worst affected ones seem to be "The Hobbit" and "A Turtles Tale", where the 3D movement flick

  • Is it possible to load Siri on a 3GS?

    Is it possible to load Siri on a 3GS?  Since the answer is a NO does anyone know of an app in the store for Siri-like voice control for the 3GS?

  • Logic crashes when opening projects

    I've just installed Logic 8 on my new Macbook Pro and installed a Focusrite LE interface. I created several projects yesterday (both MIDI and audio) without any problems but when I went back to them today, some open and close OK but others crash Logi

  • Wireless Music - trouble with accents in artist's na

    Is anybody else having this problem? On the remote if a artist has special character in his name like a accent over the e, like you might see in a Spanish or Portuguese name, there is music listings under his name, but if you go to the album name whi