Deleting the personnel number.

Hi,
  I have created the personnel numbers from the T.code PA40.
  This i have done in the development (TEST Client).
  Know i dont want that personnel, so i want to delete that personnel numbers wht is the way for deleting the personnel no. And in future i can create that personnel numbers. please help me out

Hi Manoj,
U must have created few infotype records using PA40 (Personnel Actions) as well.
Know u have to delete individual infotype record using PA30 (Maintain HR Master data). run PA30 --> type the pernr u want to delete. know delete the record. do this for all the infotype entries that u have created using PA40 for this pernr.
Hope it helps
Regards
Dev

Similar Messages

  • Delete holder/personnel number from position

    Hi All ,
    I wany to delete the holder/personnel number from position . Erronous holder does not exist in Production master data .
    So i want to delete the holder from Po13 ( relationship between position and personnel number).
    Please advise how to delete this personnel number .
    Thanks and Regards ,
    Shivangi

    Hi ,
    I have checked in PA30 and found that personnel number does not exist .
    So i want to delete the relationship between position and holder from PO13.
    Regards ,
    Shivangi

  • How to delete the Request Number

    Hi all,
                 How to delete the Requset Number in Development Client.Already i transported this Req. Number to Tesing Client.

    For what purpose, deleting the request number won't restore your dev system. You can remove the request from the import queues via transaction STMS to insure it will not be accidentally imported.
    You can usually only destroy a request in source system if it has not been released and all objects are unlocked, but this is risky in some cases and may cause a loss of information or coherence.
    Regards

  • MIRO invoice creation with the Personnel Number in account assignment

    I am using BAPI_INCOMINGINVOICE_CREATE for creating an Invoice using MIRO transaction.
    In MIRO transaction-> PO reference-> Multiple account assignment-> we have the personnel number: In BAPI table-parameter ACCOUNTINGDATA and ITEMDATA is used to populate the account assignmet data but this structure doesn't have the Personnel Number field (PERSON_NO).
    How can i create an Invoice with the Personnel Number in Account assignment, Is there any Userexit or BADI is available ?
    Thanks,
    Fract
    Edited by: fract_get on May 23, 2011 6:49 PM

    You can use EXTENSIONIN parameter from tables. There are BADI's related to this but don't know the name of badi. Please search forum for or use transaction code SE84 to search the BADI's/
    you can check the badi: INVOICE_UPDATE and method 'before_save or something similar to map to db table fields.
    See this thread to understand how extension parameters works.
    bapi_salesorder_simulate extension bape_vbap standard field
    Edited by: Sampath Kumar on May 23, 2011 11:28 AM

  • How I can pass from an iView SAP BW 3x the personnel number to a report BI

    Good Afternoon.
    I need pass as parameter the personnel number of the user that entry in the portal to a report BI.
    I did the following steps for created the iview in the portal:
    [Steps for create the iview|http://www.freeimagehosting.net/uploads/cc5306da6f.jpg]
    In the properties of the iview of have the following url:
    BEx Web Application Query String = http://10.4.33.133:8000/SAP/BW/BEX?&VARID=&VAR_ID_2=ZVEMPLEADO++++++++++++++++++++0004&VAR_VALUE_LOW_EXT_2=00000058&INFOCUBE=ZPA_C01&QUERY=ZPA_C01_Q006
    In this moment i have the value for the personnel number fixed with 00000058, But i want know What is name of the variable that i must use for not put a value fixed and this can work for any employee.
    How can pass this parameter?
    I test with <PERNR>
    BEx Web Application Query String = http://10.4.33.133:8000/SAP/BW/BEX?&VARID=&VAR_ID_2=ZVEMPLEADO++++++++++++++++++++0004&VAR_VALUE_LOW_EXT_2=<PERNR>&INFOCUBE=ZPA_C01&QUERY=ZPA_C01_Q006
    But this not work .
    Thanks in advance for your help
    Best Regards

    Good Night.
    Anyone can help me with this issue , please
    Thank in advance for your help-
    Regards

  • Deleting the personal number

    Hi Experts,
    I am trying to delete the Personal number of having Infotype 9001.When i tried to delete in PU00 tcode it is not able to delete the infotype can any one help for this solution.How to delete the infotype.This is urgent.

    You can delete the infotype from PA30. The only thing is u need to check if the time constraint for infotype is 1, then you need to change is for moment and delete the records. Once you deleted, you set it back to as original.
    BTW i am not sure why you are not able to delete it directly from PU00. May i know what is the error you are getting in that.
    Edited by: Praveen Tiwari on Aug 25, 2011 12:48 PM

  • HT5661 I sold my iphone and the new owner is trying to register it under his apple account. How do I delete the serial number from mine?

    I sold my iphone and the new owner is trying to register it under his apple account. How do I delete the serial number from mine?

    https://register.apple.com

  • How to get the department and interim company of the personnel number

    Hello guys,
    Could you please let me know the table or function module to get the department and interim company of the personnel number.
    Thanks in advance
    Rajesh

    hi
    you can go to HRP1001 table
    bye
    naveen

  • Full name of the Personnel number?

    Hi all,
      Please Can anyone suggest to me how can I find the current full name for a Personnel number?
    >>From which table and using which fields?
    I am currently using the following select query which is giving me multiple records.
    >>select PERNR ename from PA0001 into table g_t_pa0001
        where PERNR = '*****'
        AND endda GT sy-datum
        AND begda LT sy-datum.
    How can I get the Latest or Current or Active fullname for a Personnel number?
    Regards,
    Shashank.

    from pa0002
    data : begin of it_0002 occurs 0,
    vorna like pa0002-vorna,
    nachn like pa0002-nachn,
    midnm like pa0002-midnm,
    end of it_0002.
    select vorna nachn midnm from pa0002 into table it_0002 where pernr = p_pernr and endda ge sy-datum and begda le sy-datum.
    or
    *after selecting it0001 details....
    if not it_0001[] is initial.
    it_0001_temp[] = it_0001[].
    delete adjacent duplicates from it_0001_temp comapring pernr.
    select vorna nachn midnm from pa0002 into table it_0002
    for all entries in it_0001_temp where pernr = it_0001_temp-pernr and endda ge sy-datum and begda le sy-datum.
    if sy-subrc = 0.
    ***********8
    endif.
    also check for field cname....
    but generally we concatenate vorna nachn and midnm to dispaly name of employee...
    after taht for populating final table....
    loop at it_0001.
    it_final-pernr = it_0001-pernr.
    read table it_0002 with key pernr = it_0001-pernr.
    if sy-subrc = 0.
    concatenate it_0002-vorna it_0002-nachn it_0002-midnm into it_final-cname separated by space.
    endif.
    append it_final.
    clear it_final.
    endloop.
    Regards
    vasu

  • My daughter has and ipod touch with free texting I would like to delete it and open a new app for her with a new number..I deleted the old number and when we downloaded the new app it gave her the same number how can I change text

    My daughter has an ipod touch with free texting, she received an inappropriate mssg and I would like to delete it and download it again to receive a new number. when I download the new app it gives her the same number?  can i do this?

    Have you tried the developer's support web site?  Withut you providing the name of the app makes it very hard for us to give specific recommendations.  The only one that i can thin of is to purchase the app using a diffeent iTunes account.

  • Deleting the delivery number

    hi
      some body deleted the delivery no. that delivery number has been updated to which  table tell me.let me know immediately. that deleted delivery number goes to which table.

    I've had this problem in the past.
    Deliveries once deleted are completed removed from LIKP/LIPS.
    I've implemented in the past, using SAVE DOCUMENT PREPARE user exit (at the time no BADI was available), I updated z Z table everytime XLIKP-updkz = 'D'.
    This way you will have a Z table with the deliveries delete, so you can store additional information like user, date and time.
    It should do it. Just remember: DO NOT FORCE A COMMIT at that user exit... no explicit DB commits are allowed.
    Leonardo De Araujo.

  • How do I group delete the large number of duplicate songs I have accumulated?

    I have accumulated a large number of duplicate songs (1600+) due to several passes at restoring data to my itunes library.
    Is there a way to delete all but a single version of the files that show up when I click on "show duplicates"?

    Hey applejcn,
    I'd read over this article, it'll go over how to use the Show Duplicates feature in order to remove those 1600 duplicates from your library:
    How to find and remove duplicate items in your iTunes library
    http://support.apple.com/kb/ht2905
    Cheers,
    David

  • Error while deleting personnel number

    when I ran a report RPUDELPN  for deleting Personnel Numbers The Personnel Number Name got deleted but not the personnel numbers relationship with Position . I can see only Green Color without Name. when Iam trying to delete the relationship it is throwing an error . Error in deletion of personnel numbers . How can we resolve this please throw some light on this
    Edited by: My SAP Cronies on Jan 19, 2012 8:01 AM

    Hi,
    Pls check the table HRP1001, can you find the PERNR in that table with position? table can be checked in SE16 > HRP1001
    Thanks,
    Nirali P
    Edited by: Nirali P on Jan 19, 2012 8:30 AM

  • Deleting Personnel Number in Production

    Hello Experts,
    I have come across an issue where some of our business users have deleted personnel numbers in Prod though PU00 after 30 days of employee being hired.
    I would like to know the best practice in terms of deleting a personnel number when an employee is hired in error, Im sure it is ok to delete the employee before it can generate any transactional data( within few hours or so), but there has been argument on this that SAP has provided a standard functionality on deleting PERNR then why cant we use it.
    We all know that there is a difference between standard functionality and Best Practice , but how do we come across this hurdle is my current worry.
    Any live examples or exprience shared will be appriciated.
    Regards,
    Regi

    Hi,
    Deleting Employee numbers is not a good practice.
    See to it that  users dont have rights to critical TCodes like PU00,PU01 etc.
    Talk to the basis team to revoke such critical Tcodes.
    You can always change employee data if hired incorrectly.
    If at all an employee code is to be  deleted there should be amail to Basis TEam/ Helpdesk alsong with the reason.
    See to it that users are educated well .
    Thanks & Regards,
    Param

  • Drawbacks on program: Delete Personnel Number (RPUDELPN)

    Hi, Experts,
    I am using this program "Delete Personnel Number (RPUDELPN)" to delete personnel data. It works fine in Development environment. But it fails to work if T000-CCCATEGORY = "P" (production client).
    I am thinking of copying a program and comment the following codes, so the program can go through in production.
    IF t000-cccategory EQ 'P'.
    MESSAGE e637.
    ENDIF.
    However, my question is: (1) is there any drawbacks on running this program in production? (2) Why this standard program set this error message? any special reasons?

    Hi Suresh,
    Thanks for your reply.
    Since I have to delete the personnel in batches, while PU00 can only delete one single personnel. So I think I still have to use RPUDELPN.

Maybe you are looking for

  • Problem with path length when using oracle drive

    Hello! Does anybody else experience this problem with Oracle Drive? When I create a deep or nested hierarchy in which the path length is longer than 250 (the limit might be 255) characters, I cannot access the deeper subpages. Example:"X:\INET\START1

  • Video freezing in full screen mode

    When I'm watching a video in full screen mode, the video will sometimes freeze for a few seconds or until I move my mouse.  The audio keeps playing but the picture will keep freezing.  Last time this happened it went away with the latest Chrome updat

  • Integration access manager and web services manager

    Hi, Can the SSO token sent by the access manager be used by the SOA suite web services manager ? I would assume that this is a trivial configuration. Can anyone help with some ideas ? Thanks, Mohan

  • GRC AC 10.0 Maintain Master User ID Mapping

    Hi, I try to configure "Maintain Master User ID Mapping" in the transaction SPRO->GRC->Access Control Example: SYSTEM: A USER ID: B MASTER USER ID: C If i try to launch the PSS for the C user, also change the password of the B user? This, not working

  • Build Arrary  on One Side While Other is in Use?

    Just checking. I want to add 7x500GB drives to the right side (Lower Controller) of my XServer RAID. I'm going to build a RAID 5 out of that new array. I know both RAID contollers are independent of each other. I know I should have a ethernet link to