Doubts Employee group

Good Afternoon,
I have a doutbs,
When HR run an action of leave of an employee, the field Employee group have that be changed to Retired or not?, or only with the status of employment P0000-STAT2(0 Withdrawn) is necessary?.
I want know , what is the better practice?
Regards.

Hi, Kapil Kaushal , Sikindar 
The system work fine with the field P0000-STAT2, because i have configured the feature MSN 31 in the table T529A for the action of leave. and in the leave the system automatically change the status to Withdrawn.
I want know if the field PERSG also i have that change to retire or not is necessary ?
I am changing in the action of leave this field PERSG , but a consultant said that not is necessary, and i want kown ¿what is the best practice?
This is the doubt.

Similar Messages

  • Propose or change automatically, Employee Group and Subgroup.

    Dear all, when executing an exit Action, thru transaction PA40, what's the best way to propose by default/change automatically, the employee group/subgroup?
    Example: I want to change the employee group from '1' (Active) to '2' (Inactive), but the fields are disabled for input.
    Do i have to do this thru the enhancement "PBAS001", or is there any way to do this thru configuration?
    Sincerely,
    Hugo Ferreira

    I was searching for something in SDN and got this post.
    Though it's a very late reply, whatever Sreenu has told is correct.
    In the table T529A, you can define the employment status wehther it has to be active, withdrawn or inactive.
    This field is input disabled in the action and the values will be defaulted from the configuration.
    But Changing the employee group and employee subgroup , we can't change. If that is what is required, the values might depend on the configuration.
    And even through some enhancement also we can't change. because, for IT0000 no enhancement are available. Even though the fields are from IT0001, I doubt it can be changed through enhancemnet.
    If you have already achieved it through enhancemnet, please let us know.
    Thanks,
    RSS.

  • Doubt in Group by

    I have doubt in group by clause.
    System_log table contains
    server_id,
    system_cpu,
    user_cpu,
    time_log
    as fields
    I want to display distinct servers order by (system+user)
    SELECT server_id
    FROM system_log
    WHERE time_log IN (SELECT MAX(time_log)
    FROM system_log
    GROUP BY server_id)
    ORDER BY (system+ user) ASC
    In this query, i'm not getting distinct server_id.
    Can anyone correct me this query?

    Try
    SELECT sl.server_id
      FROM system_log sl
    WHERE time_log =
           (SELECT MAX(time_log) FROM system_log sl2 WHERE sl.server_id = sl2.server_id GROUP BY server_id)or
    SELECT sl2.server_id
      FROM (SELECT sl.*
                  ,ROW_NUMBER() over(PARTITION BY sl.server_id ORDER BY sl.time_log DESC) RN
              FROM system_log sl) sl2
    WHERE sl2.rn = 1Regards...

  • Creation of new employee groups and sub groups

    Hi All,
    What all the steps should I follow to create new employee groups and sub groups? and  How many structures should I create for this?
    Its urgent pls.......
    Good replies will be rewarded!!!!
    Regards,
    Sita

    Hi
    You can create the employee groups depending up on your clients requirement, Eg: Permanent, Temporary, Seasonal, Trainee, Advisor etc
    And define the employee subgroups and assign them to the employee groups Like
    Enterprise structure>Definition>Human Resource Management-->Employee Groups & Employee Groups
    Enterprise structure>Assignment>Human Resource Management-->Assign employee subgroup to employee group
    you can create employee subgroups depending up on your requirement like asst manager, manager, GM, MD, VP ETC an assign them to the employee subgroups ok.
    Ensure that certain empployee subgroups may not be assigned to employee group based on requiremen, but create all the employee sub groups which is existing in the organization.
    Regards

  • Creating Employee Group and subgroup in OM

    Dear Viewers,
    I am new in this SAP, I have started learning SAP HR / HCM. Presently I am learning OM and creating Organisational Structure.
    Can anyone help me in giving examples to create employee group and employee subgroup categories.
    Thanks & Regards,
    Soujanyah

    HI Swapnil,
    Thank you for the link.
    I have got a sample by searching in google
    [http://www.laccd.edu/hr/Documents/HRGuide_H-300_EmployeeSub-Group.pdf]
    Can I get some other samples please as specified in that table as EG and ESG

  • Change employee group and sub group

    Hi all,
    During the new hire if an employees group and subgroup are enetered wrongly, how shouldl they be corrected. We have scenarios when the emplooyes group and sub group are corrected after a month or so and the users want to correct the same
    How do we do it?

    Goto PA40 reselect the same Hire action for this employee and click execute. In IT0000 screen enter the new EG/ESG.
    and save it. Then Save the IT0001, then fill rest of the infotypes.
    If you have already process the payroll and the new Emp group / Sub group is in different payroll area you wont be able to change it.

  • HR ABAP for employee groups with possible custom table...

    Hi Members
    I have a internal table where employee name and employee group are maintained.
    Next, i have other tables where employee name is there and his salary. now I want to add all the salaries of the employees with same groups, how can I do this.
    for Example, I have employee group as ENG, DOC, NUR Etc. (Also I wanted to use some kind of dynamic conditions as emplyee groups might added latter in custom table.
    Thank you.
    Edited by: Julius Bussche on Sep 23, 2008 10:18 PM

    Check out this code:
    *& Report  ZTEST3
    REPORT  ztest3.
    TYPES:
    BEGIN OF x_employee,
      id TYPE n LENGTH 10,
      name TYPE c LENGTH 20,
      group TYPE c LENGTH 4,
    END OF x_employee,
    BEGIN OF x_emp_sal,
      id TYPE n LENGTH 10,
      salary TYPE p LENGTH 16 DECIMALS 2,
    END OF x_emp_sal,
    BEGIN OF x_final,
      group TYPE c LENGTH 4,
      id TYPE n LENGTH 10,
      name TYPE c LENGTH 20,
      salary TYPE p LENGTH 16 DECIMALS 2,
    END OF x_final.
    DATA:
    i_employee TYPE STANDARD TABLE OF x_employee INITIAL SIZE 0,
    i_final TYPE STANDARD TABLE OF x_final INITIAL SIZE 0,
    i_salary TYPE STANDARD TABLE OF x_emp_sal INITIAL SIZE 0,
    wa_employee TYPE x_employee,
    wa_salary TYPE x_emp_sal,
    wa_final TYPE x_final,
    wa_final_temp TYPE x_final.
    DEFINE append_employee.
      wa_employee-id = &1.
      wa_employee-name = &2.
      wa_employee-group = &3.
      append wa_employee to i_employee.
    END-OF-DEFINITION.
    DEFINE append_salary.
      wa_salary-id = &1.
      wa_salary-salary = &2.
      append wa_salary to i_salary.
    END-OF-DEFINITION.
    append_employee:
    1 'John' 'ENG',
    2 'Mary' 'ENG',
    3 'Pooja' 'IT',
    4 'Payal' 'IT',
    5 'Sourav' 'IT'.
    append_salary:
    1 '111.00',
    2 '1111.00',
    3 '11111.00',
    4 '111111.00',
    5 '1111111.00'.
    LOOP AT i_employee INTO wa_employee.
      READ TABLE i_salary INTO wa_salary
       WITH KEY id = wa_employee-id.
      IF sy-subrc = 0.
        wa_final-id = wa_employee-id.
        wa_final-name = wa_employee-name.
        wa_final-group = wa_employee-group.
        wa_final-salary = wa_salary-salary.
        APPEND wa_final TO i_final.
      ENDIF.
    ENDLOOP.
    SORT i_final BY group.
    LOOP AT i_final INTO wa_final_temp.
      wa_final = wa_final_temp.
      AT END OF group.
        SUM.
        WRITE: /1 wa_final_temp-group, 5 wa_final_temp-salary.
      ENDAT.
    ENDLOOP.
    output will be:
    ENG                         1.222,00  
    IT                      1.233.333,00  
    Edited by: Sourav Bhaduri on Sep 24, 2008 1:44 AM

  • How to view employees of "only a specific employee-group" from an org unit

    Dear All,
    I am working with authorization for  MSS , now there is following requirement ,
    There are 2 cheif positions in one orgunit , say as cheif-1 and cheif-2 , cheif-1 can view all employees exist in his organization unit ,including cheif-2 . But cheif-2 can see all those employees who belong to employee group non-management and reports to cheif -2  only.
    We have tried to restrict the chief 2 to view employee group of non-mgmt in object p_orgin but still he is able to view all employees of org unit in mss. Kindly let us know it is possible to strict chief-2 to view non-mgmt employees .. & how ?
    Kindly let me know the solution , as it is an urgent .
    Regards
    Sadia Kamal
    Edited by: Sadia Kamal on Oct 14, 2011 3:32 PM

    Dear  All,
    i used the structural authorization everything was working fine but cheif1 can view all his employees as well as cheif 2 ' employees but he can not view chief2 . any suggestion please let me know .
    Regards
    Sadia Kamal
    Edited by: Sadia Kamal on Oct 16, 2011 11:10 AM

  • PCR Based on Employee Group

    How to write a PCR for allowing the different types of WAGETYPES  based on different employee groups?

    Hi,
    Also, you can check the below link which can be helpful for writing a PCR;
    http://wiki.sdn.sap.com/wiki/display/ERPHCM/PayrollSchemasandPersonnelCalculationRules%28PCR%27s%29
    Regards,
    Prasad Lad

  • Employee group

    Hi Gurus,
    I have a scenerio in which  a group of people on a payroll that really are not our employeesu2026
    they have been sold but we are paying them until the transition is complete....in one country say US they are considered as employees of the company as long as they are active and in the other country say India they are not included in the headcount.....what should be done in such scenerio....should the employee grp and staus be changed to inactive what would be the impact of it...and wha is the best practice.
    Regards
    Kav

    Hi
    Best is
    Create and Maintain them in separate payroll area (Inactive Employees) and do the org reassignment for them.
    if u maintain in separate payroll area their is no need to touch anything on Employee group
    with regards
    partha

  • Employee Group Not deserved received particular wagetype

    Dear experts,
    current system not allowed particular employee group to received  particular wagetype. For example employee group A not deserved received wagetype 002. I want to change the config and allow group A recieved this wagetype. Can you give me the details what should I do?
    Thank you in advance.

    yes. I have check it.And now I want to change it to allow this. Can u give me details explanation to do it?What I means is configuration to do this?
    TQ
    Message was edited by:
            Ahmad Rohaizad Abu Bakar

  • Employee group have been wrongly assigned during Hiring in PA40

    Dear Guru,
    I have one scenario where an employee; employee group have been wrongly assigned during Hiring PA40. The user has entered and assigned the employee group as Contract - Local instead of Contract - Foreigner in the Employee group field.
    Please advice how to change and rectify this incident.
    Thanks & Regards,
    Wai Cheng - Yokota

    Dear Guru,
    Many thanks for all your advice.
    I have use PA41 Transaction code to make the correction. However, I noted that the wrongly assigned Employee group remains unchanged in PA30 HR Master data.
    Hence, I decided to use PA40 Hiring Action to make the correction by selecting Position/Band Change field. After save the correction in Copy Actions screen, it will lead you to Copy Organizational Assignment and save your entries. There will be a message appear at the bottom in regards to the position. Just click next arrow icon and click yes.
    Go to PA30 HR Master data again, to verify that the correction and noted that it has change.
    Regards,
    Wai Cheng - Yokota

  • Employee Group , Employee Sub Group and Pay Scale Group

    Hi Experts,
    In which table or feature we are grouping
    Employee Group , Employee Sub Group and Pay Scale Group
    Thanks in Advacne.
    Regards,
    IFF

    Hi
    All groupings are based on the SAP HR sub modules like for Time fro Personal work schedule we group in table  V_001P_N
    So for each sub module we have different table.
    Please specify your exact requirement.
    Thanks
    Sheetal

  • Singapore - Employee Group and Sub groups

    Hi Gurus
    While making employee groups and sub group for SG what factors should one keeep in mind??

    Hi,
    When we are assigning the employee groups to sub groups select 25 singapore country allowed in the table V_T503Z.
    that factor we need to remember.
    Good luck
    Devi

  • Employee group and Employee Subgroup....

    Hi Experts,
    I am just learning SAP now..... 
    I had created employee group(1 Employee) and employee subgroup(3Y executive), and i assigned employee group to subgroup, and i checked in the table T503Z,, even though it is showing an error while creating relationship.... the error is "entry 1 3Y doesnot exist in T503 check your entry" .
    please reply me with IMG Path(SPRO)
    regards
    gosammy

    spro>Personnel Management>Personnel Administration>Organizational Data>Organizational Assignment-->Define employee attributes(V_503_C)
    I think u missed this table , here u have Activity Status, Employment status, Training Status.Keep the cursor in the relevant feilds and go for f1(help) and  fill the data
    Best Regards,

Maybe you are looking for

  • A Tip for using EJB 3.0 with WebLogic Ant Tasks

    I started out writing this up as a problem, but then I found the answer so I'm, posting a tip instead. When I tried to write an EJB [stateless] using EJB 3.0 in my legacy Weblogic ear project I started getting this error: <pre> No EJBs found in the e

  • PERFORMANCE -TIME OUT ERROR (430) IN ESTABLISHING A DIALOGUE ASYNCHRONOUS

    Hi all, I have created a flow(program) and while executing the same program in the development server i am getting the desired output. But when i execute the same program in the background mode (it fails in the foreground after 9 or 10 hrs giving the

  • HR- FI issue

    Hi Everyone I need a help in FI issue The probelm is that "Error while posting balance field , balance field profit centre line item 001 not filled ( while posting to accounting) History of the problem : SAP Standard varient : with the sap standard v

  • Airport Express Not Capturing Correct IP Address

    I've had my iMac G5 for about 18 months. I access the Internet via a cable modem. Last night I lost the ability to access the Internet. A Comcast technician walked me thru various steps and determined that my modem and computer were working fine, and

  • Well I'm sure you heard this many times but.....Water Damage---Lots to Read

    I recently dropped my Ipod Touch(2nd Gen.) in the toilet, boy did I freak out anyway, I put it in a bowl of rice and stuff but now the Sleep/Wake button doesn't work right neither does home button and the Right side of the screen (last strip) is "dea