EBS:How to create a terminated employee

I want to create a employee with API, but the employee has terminated. So I cannot create it with API hr_employee_api.create_employee.Does have any API to create a terminated employee. Or I have to create the employee first, then terminate it.
Thank you in advanced.
Best Regards,
Sheng

Hi,
This question was asked, and answered correctly, very recently:
How to upload Ex-Employee records
Hope it helps
Regards,
Clive

Similar Messages

  • How to Create an Custom Employee Number Generation ...

    Dear Friends,
    We are Implementing HRMS Suite Version12i, for one of the Client in Middle east.
    One question about Custom Person Numbering.
    How to create custom employee numbering Based on the User Person Type?
    Example:
    Two person types
    o Permanent Employee
    o Probationary employees
    We Need to give two different numbering schemes for each person type.
    eg Permanent Employee will use a seq begin 100000 whereas Probationary employees (other user type) will use a sequence beginning 200000.. Can any pls let me know how to handle the Custom Employee Number Generation (with Setups)
    With regards
    Swpana

    Hi,
    Could you please help me to write/or send a sample of a Person Number Generation Formula.
    I don't see the noteid : 279458.1 on metalink,I get the following message:
    Article or Bug cannot be displayed. Possible reasons are:
    The article Id or bug number was entered incorrectly. Please check and try again.
    The article Id or bug number does not exist (was referenced incorrectly).
    The article or bug is not classified as publicly accessible ("non-public").
    The content is being updated and it is temporarily unavailable but will be made available again soon.
    If you still have questions about why you could not access this article or bug, please use Feedback.
    Please help!!

  • How to create a Terminal window inside my application?

    I created a small application that works like a charm. However, the only thing missing is like a Terminal inside my application. In Coda, there is a similar kind of view that allows you to open up a terminal session. How would I create a Terminal view like this inside Interface Builder and Xcode?
    Thank you for your answers, comments and feedback!

    A look at this source may help you out.

  • How to create a new employee?

    Hi Guru,
    I have a problem with create new employee how do we do?Could you pls send me details path and T-CODE.
    Thanks
    Manju

    I will add to Joe's comments.
    Goto TCode PA40, select the line with action "Hire" and execute, it will take you through some screens like a wizard and you will enter information regarding the employee. If you do not know the position then for testing you can enter 9999999 as position. Keep saving you entries for each screen and keep going, at the end you will end up with a new employee. You can note down that pernr and change anything through PA30.

  • How to create employee BP role in PCUI.

    Dear Experts,
                        We are trying to maintain case mangement system for employees in CRM  but how to create BP with employee role in PCUI. In standard structure only Customer,Prospect,Consumer,& Competitor roles are available.
    Is there anyway to directly create Employees in PCUI or replicate emplyee in PCUI after creating in GUI.??
    OR,
    Is there any functionalities in CRM to capture Cases or complaints of employees with workflow escalations.
    Max. points would be rewarded for  Userful answers.
    Regards,
    Basavaraj Patil

    Dear Basavaraj ,
    Which version of CRM are you using? Not sure about PCUI...In CRM 5.1 we are using UI and that option is available...you can create the Employee in UI. You can create the business role and can assign the corresnding profiles to it.
    CRM->Usr Roles->Define Business Role
    Thanks,
    Atin

  • How to create an IOBJECT in CRM

    Hi CRM gurus,
    I want to create an IOBJECT from the following data:
    OBJECT FAMILY
    EXTERNAL ID,
    REFERENCE PRODUCT
    PRODUCT DESC
    STATUS is 'At customer site'
    Counter Template
    Please suggest me is there any suitable BAPI/FM available in SAP CRM?
    Thanks in Advance.
    Regards,
    Deep

    You can follow chapter "3.1 Maintaining Organizational Data Profile" from best practices' building block ['C23: CRM Basic Sales'|http://help.sap.com/bp_crm70/BBLibrary/HTML/C23_EN_DE.htm]. For "Organizational Model Determin. Rule" instead of a rule 10000166 enter 10000194. It will determine org. data from current user.
    Also take a look in near settings. There you can define your own rule.
    Or check this thread Org Unit determination based on Emp Resp in Task which describes how to create profile for employee responsible.

  • How to create an appointment in crm webui?

    hello experts!
    i'm verymuch new to crm webui. would anybody please let me know how to create an appointment in crm web ui. even though i established a account and contact relationship in t-code BP in GUI. The error still pops up asking me to enter Sales organization,distribution channel and division.
    regards
    sanguine

    You can follow chapter "3.1 Maintaining Organizational Data Profile" from best practices' building block ['C23: CRM Basic Sales'|http://help.sap.com/bp_crm70/BBLibrary/HTML/C23_EN_DE.htm]. For "Organizational Model Determin. Rule" instead of a rule 10000166 enter 10000194. It will determine org. data from current user.
    Also take a look in near settings. There you can define your own rule.
    Or check this thread Org Unit determination based on Emp Resp in Task which describes how to create profile for employee responsible.

  • How to create two employees with same name as supplier record?

    Dear all,
    We need to create a supplier record for an employee so that we can issue invoice for pretty cash payment. If there are 2 employees with same name, how can we create supplier records for these 2 employees? The system does not allow duplicate supplier name.
    Please advise.
    Regards,
    HY

    Hello,
    In R12 it is possible to create 2 employee with same name but different employee number.
    And also possible to create these 2 employees as suppliers in Payables.
    HTH,
    Vik

  • How can I create an IList Employee list based on my Employee class?

    I'm trying to create an IList<Employee> list based on my Employee class (below).  But this is erroring out.  Is my employee class missing anything?  How could I make this work?
    private void EmployeeList()
    IList<Employee> arL = new IList<Employee>(); //<<<<----errors out here
    arL.Add(new Employee {Name="Mary",Gender="Female", Age=35});
    arL.Add(new Employee { Name = "Bob", Gender = "Male", Age = 40 });
    arL.Add(new Employee { Name = "Tom", Gender = "Male", Age = 50 });
    var qm = from Employee employee in arL
    where employee.Age < 50
    select employee;
    foreach (var m in arL)
    Console.WriteLine(m.ToString());
    class Employee
    private string name;
    private string gender;
    private int age;
    public string Name
    get { return name; }
    set { name = value; }
    public string Gender
    get { return gender; }
    set { gender = value; }
    public int Age
    get {return age;}
    set {age = value;}
    Rich P

    IList is an interface, not a class. This means that it can't be instantiated (can't be "newed").
    List is a class, so it can be instantiated. It implements the IList interface, which means that it must provide the functionality specified in that interface.
    That's what an interface is - a definition of functionality that a class must provide. An interface is often described as a contract that a class must fulfill.
    So in the code in your last post, you are saying that arL is an instance of some class that implements the IList interface, and you are then setting it to an instance of the class List. The List class implements the IList interface, so this assignment is
    legit. It would also be legit to use any other class that implements IList, such as an array.
    Any class that implements IList can have as much extra functionality as whoever wrote it likes, as long as it implements at least the functionality of the interface.
    Sometimes you will come across a method in a library over which you have no control and which returns IList rather than list. In such a case you will be forced to do something like...
    IList list = SomeMethodOrOther();
    So you will have no idea what class list is an instance of, but you will know that it has the functionality of IList. This is about the only circumstance where I would recommend defining a variable as IList rather than List (but it probably won't be long
    before there are some replies to this post that disagree).

  • How to set up meeting with sales employee & how to create activity in a emp

    Hi all,
    I have two scenarios to be configured for my client.
    1. Sales manager should be able to set up a meeting with his sales team in CRM. can any one give me a idea how we can configure it in SAP CRM & what is the transaction type (Business activity) to be used to setup meeting with employees.
    2. How to create an activity or task in employees calendar. where we configure calendar in SAP CRM, do we need to assign this calendar any where in order to create create activity for employees calendar.
    Please do let me know how to achieve the above scenarios.
    I got one more issue is that, I have created two transaction types (business activity types) 1 for transaction type for meeting with employee with category "meeting" in business activity and 2nd transaction type is for sending email to employees with category "email" in business activity. I have also assigned these transaction types to categories under sentings for activities ->assign transaction types to categories in SPRO. But I am not finding these two transaction types on UI under activities. If use different category for these transaction types like appointment then these are available on UI for activities. Please suggest me how to fix this issue too.
    Thanks in advance
    JM

    Hi JM,
    1. It depends how you want to configure this and your detailed requirements. One way would be to create an activity of type Appointment and from this, create a CRM E-mail activity that sends an e-mail to all the Attendees in order to setup the meeting.
    2. Synchronizing Activities/Tasks is done with the Groupware Integration. I'm sure you can find some documents in SDN for it, but for now you can take a look at the IMG node (Customer Relationship Management->CRM Middleware and Related Components->Groupware Integration) and the help.sap.com (http://help.sap.com/saphelp_crm70/helpdata/EN/47/09e1c4cc8d4861e10000000a155369/frameset.htm) page.
    The "New" button in the standard Activities Search will load everything under the "screen kind" ALLS, which means all Activities with Activity Class Appointment, Task, E-mail and Sales Call. You can see this in the method CL_CRM_UIU_BT_ACT_CUST_GET=>GET_ACT_CLASS_FOR_SCREEN_KIND. It is pure UI logic that you can influence if you make modifications or enhance the Appointment UI (for example the component BT126S_APPT, by changing the screen kind passed). You'd need to debug a little bit to understand the logic, however.
    Hope this helps,
    Kind regards,
    YZ

  • How to exclude the Transfered Terminated employee

    Hi all ,
    I need to fix a bug in the report which displaying all the Hired , Rehired , Transfered employees data of only IT department in the 13th months window period .
    so what currently the report is doing is ....
    Report is defined with PCH logical database .
    Upon the selection screen they are inputting the Root org unit 500000 with Evaluation Path Pers-o.
    and selecting date range ALL.
    Logic is currently pulling all the persons belongs to that root org units.present and past.
    Here 2 conditions are using that 1) although if an employee is hired in IT and Transfered out of IT within 13th months Client requires that data.
    2) Although if an employee is transfered of IT and then terminated then they dont want his data.
    satisying the first condition i am written logic but to satisfy the second condition i am not getting the logic could any one please.....
    logic to pull up the employees data who are Hired within 13 months window perid and now transfered to other sales department.
    Get Objec.
    If Objec-otype = 'P'.
    HR_read_infotype.
    begda = '01011800'.
    endda = '31129999'.
    tableS
    p0001.->Now p0001 is filled by all the org units.
    delete adjacent p0001 comparing orgunits
    Read infotype 41 based on Terminations , Hiring , Rehiring.
    loop at p0001.
    Now pass this org unit to Rh_Struc_Get.
    with evaluation path o-o to get the top hirarchy into RESULTS_TAB.
    now loop at resutls_tab.
    read table pchojid with low = resutls_tab-objid.
    if sy-subrc = 0.
    Flag =1 .
    exit.
    endif.
    Endloop.
    So the above loop will check if any of the org unit belongs to the IT department previosuly...
    tehn it will flag1 , if flag when then only it will process for fianl itab,.
    Now my problem how to check if an employee is terminated in sales...what logic need to be embed herer... any one any clue?
    Regards
    sas
    i know people dont have enough time to think this alot
    Edited by: saslove sap on Apr 24, 2009 8:12 AM

    hi ,
    In table PA0001 (HR Master Record: Infotype 0001 (Org. Assignment) ) ,
    field PERSG - will decide whether Employee is active or terminated.
    Values of PERSG are based on Customization again..
    Say if PERSG is
    1     Active
    2     Retiree/pensioner
    3     Early retiree
    4     Interns
    5     Terminated
    6     Inactive employee
    Ram.

  • How can we identify an employee termination date?

    how can we identify an employee termination date? using infotype(41) i 'mean which field.
    Please update me.

    Hi,
       Normally last working Day - date type 42 is used as the termination date.
    Regards,
    Manoj.

  • How to create Employee Profile

    Please suggest me on how to create Employee Profile .
    Thanks and regards!

    Hi,
    You can create employee profile in  transaction code PPPM.
    Regards,
    Kapil Kaushal

  • How to create single user and bulk users from back end in ebs r12?

    Hi all,
    how to create users from back end in oracle application R with responsibilities?
    Thanks in Advance,
    Sandeep
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM

    Hi,
    I have created user san1 with below mention pkg and added sysadmin with below mention pkg.
    BEGIN fnd_user_pkg.CreateUser(x_user_name =>'san',
    x_owner =>'CUST',x_unencrypted_password => null,
    x_description => 'new_desc2',x_email_address => '',x_fax => '');
    end;
    DECLARE
    v_user_name VARCHAR2(30) := upper('&Enter_User_Name');
    BEGIN
    fnd_user_pkg.addresp(username => v_user_name
    ,resp_app => 'SYSADMIN'
    ,resp_key => 'SYSTEM_ADMINISTRATOR'
    ,security_group => 'STANDARD'
    ,description => 'Auto Assignment'
    ,start_date => SYSDATE - 10
    ,end_date => SYSDATE + 1000);
    END;
    Q. I am able to login but dont having any responisibility,why?
    Regards
    Sandeep.

  • How to create Sales Employee Without HR?

    Dear all,
    I checked the function of creating sales employee without HR but it only generate the two request only, but i cannot create the sales employee.
    Can any plz send me the details for the same.
    Thx & Regards,
    PM

    hello, friend.
    try t-code VPE1 or PAL1.  even without HR, you may have to define certain HR organizational units in Enterprise Structure (e.g. personnel areas and sub-areas).
    regards.

Maybe you are looking for

  • Itunes displays content on nano 6, ipod disagrees

    An 16gb ipod nano 6th generation.  Windows Vista at home, 7 at work, itunes up to date as of time of posting. So, like many people I have a computer at home, and also one at work. I have previously happily added music to my ipod on both as I download

  • How many GB is 1.7 days of music?

    I need to know approximately how many GB that 1.7 days of music is...if you can tell me how many GB one hour of music takes, that's fine too.

  • JSPC Compiler gives FileNotFound Exception from command line

    I have problem running jspc from command line           From the browser, the jsp pages compile fine.           I have tested this on NT 4.0 and on HP UX 10.0 with Weblogic Server           4.5.1 and SP 9.           The command I typed in as follows:

  • CS4 Bridge Opening Directory

    Is there a way to configure Bridge to open with the last used directory? My Bridge opens to the directory it was on when I first saved my workspace and I would like it to open with the last used. Burton Stuttman

  • Regarding PP Extraction

    Hi Gurus, Iam extracting data from 2lis_04_P_ARBPL to zcube (copy of 0pp_c04) in BI7. Iam getting error as  Request Idoc: "Application document not posted" but the request shows green, so can anybody help me regarding this. Regards, Naren.