SlideShare uma empresa Scribd logo
1 de 58
SAP HR  Overview  Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training  [email_address]
Why HR is different from other modules ? The following concepts are defined in HR which differs this module with other modules 1. Use of  Infotypes 2. The use of Logical Database 3. Use of Macros 4. Storage and Access of data 5  Authorization checks
The  HR module is divided mainly into  the following components. 1.Personnel Administration and Payroll Accounting 2.Personnel Planning and Development
Personnel Administration   It relieves you from the daily administrative routine activities which are costly and time consuming, while simultaneously supporting you in demanding planning activities. Eg  Organization management comes under administration.
Payroll accounting   It deals with the employee salaries in the  Organization . Eg : Calculating the Gross salary,Net salary.
Personnel Planning and Development :   It was designed to support the decision making process in any  organization. It deals with giving inputs and taking outputs from the employees and setting up goals to individual employees and impart training to the employees.  It also deals with recruitment of employees for the organization. Eg. Recruitment ,Training and event management comes under planning. There are other functions like time and travel management in HR
Organization : We can define an Organization as an individual Enterprise (company or industry) in which someone is leading it and with some departments like HR,Marketing,Finance,R&D etc. For any organization Employees are the most powerful resource. So to maintain the employee related data we require one system which ensures accuracy and consistent within the Organization.
XYZ Inc. XYZ  Chemicals XYZ  Pharmaceuticals Chennai HYD Manufacturing Planning Company code Personnel Area Personnel  Sub-area ORGANIZATION  HIERARCHY
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],Company Structure
Company code  :   Represents the highest level of Company structure. Personnel Area :   It can represent large divisions within a company and Geographic locations . Personnel Sub-area :   Personnel sub areas are a subdivision of the personnel area. At this level ,the organizational aspects are controlled . Country groupings , Public Holiday calendar and wage type structures comes under organizational aspects . Company Structure (Contd…)
XYZ Inc. XYZ  Chemicals XYZ  Pharmaceuticals Chennai HYD Manufacturing Planning Company code Personnel Area Personnel  Sub-area ORGANIZATION  HIERARCHY
The components in  Personnel structure   are Administrative :   Employee Group, Employee Subgroup and  Payroll area. Organizational : Job, Position and  Organizational unit.
Employee Group :  General classification of employees. Active ,  Retired, Contractors and  External Employees. Employee Sub group :   Division of employee groups. Hourly based, Salaried, Executives and  Trainees Personnel structure (Contd…)
Payroll Area :  The active employees are also divided into payroll areas that determine  when they receive their  paychecks like weekly  or semi-monthly.  Personnel structure (Contd…)
Job :  Description of activity performed by the Employee. Coding,  Management Position :  Employee Placement or individual employee assignment within the company. Software Engineer or  Manager Organization Unit :  Performs a specific set of functions within company. Department or  subsidiary etc Personnel structure (Contd…)
Developer S / W Engineer Trainee Job Positions Management General Manager Sr.Manager Job Positions Personnel structure (Contd…)
Job Positions One to many  relationship APCI Project  -  Job Designing Coding  Testing Quality control Positions Personnel structure (Contd…)
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training  [email_address]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Hiring an employee  : When assigning a new employee in a company, we have to enter large amount of data for employee into the system. In HR different types of employee data are stored in infotypes. When hiring an employee, we need to maintain lot of infotypes, Hiring can be carried out using a personnel event.
Organizational reassignments  :  Important changes in an employee's career path must be documented in the system. Consequently, the standard SAP system contains the personnel event Organizational reassignment.  When you run this personnel event, the system will automatically  offer you the infotypes that you need to maintain.
Leaving the company  :   When the employee leaves the company, certain infotypes cannot  be changed .The personnel event Leaving is used to depict an  employee leaving the company in the system. This event gives the infotypes for maintaining the data of when an employee leaves the company.
[object Object],[object Object]
HR Technical Overview
Data handling in HR (Using of Infotypes): Master data in HR is stored in infotypes. Each infotype pertains to a specific type of data. Each infotype has a database table associated with it. Example : For Infotype 0000, the corresponding  database table associated with it is PA0000 .
What is Infotype   The information units used to enter the data of an employee are called infotypes. The Infotypes are used to group related data fields together. E.g.. IT0006.(address) Why Infotype   As HR is related to time , we require old data as well as new data. The data we enter into the infotypes are automatically checked for accuracy and against the table entries.  In simple, HR data is huge and to access data easily we require Infotype.
What is logical database? The LDB is special type of ABAP program that combines the contents of certain related database tables and retrieve some related data and make it available to application programs. In other words, a LDB is a method by which ABAP programs read and process the data. The sequence in which the data is supplied to the  program is determined by a tree structure.
[object Object],[object Object],[object Object],[object Object],Logical Database (Contd…)
Logical databases have a  tree  structure . A logical database can contain a maximum of  300  tables Logical Database (Contd…)
SAPDBPNP  is the name of the database program for the  logical database PNP. Logical Database (Contd…)
How are logical database used 1.Logical databases when generating an ABAP program o  The selection screen generated contains the selections  (SELECT-OPTIONS AND PARAMETERS)  of both the logical database and the  program.  o  The only database-specific selections displayed on the selection screen are those needed by the program for data retrieval purposes   Logical Database (Contd…)
2. Logical databases at run-time of an ABAP program   At run-time, the system processes the events in the program  and in the  logical database in the following order   o  Before displaying the selection screen, certain initializations (e.g. calculating default values such as  key date, etc.) are  performed for the selection screen by the logical database  and the  program.   o  The selection screen is displayed and the user enters data in the  input fields.   Logical Database (Contd…)
o  The logical database and the program check that the input is  correct and complete , but also that the user has the appropriate  authorizations. If an error occurs, some fields are made  ready for input again, so that the user can make the necessary correction(s).   o  In the event  START-OF-SELECTION,  the ABAP program performs any  preliminary work (for ex, importing files).  o  The logical database reads the selected data and the  program  processes it within the GET events according to  the sequence specified by the structure. o  In the event  END-OF-SELECTION,  the ABAP program performs  any  concluding operations  (for example, calculating totals,  exporting files).   Logical Database (Contd…)
3 . Designing the selection screens   o  The standard selection screen of a logical database  has a standard layout where SELECT-OPTIONS and PARAMETERS appear in the sequence they are declared, each on a new line. The system automatically generates such a screen for each program that does not have its own selection screen entered in the attributes.  Logical Database (Contd…)
o  You can define your own selection screens for any logical database . If the attributes of a  program include the number of its own selection screen, the system uses this screen as a model when generating. Any program-specific selections appear after the database selections. The flow logic for  such screens is also generated automatically and therefore cannot be  modified. You cannot delete database selections Logical Database (Contd…)
Functions of  LDB : Data retrieval  :  The personnel data of each employee is loaded into the main memory where it can be accessed for processing. Screening  :   Employees can be selected according to the organizational criteria entered on the selection screen. E.g...Hourly wage earners in a particular personnel sub area.
There are two types of screening.. Person selection and data selection period. Person selection  defines those employees for whom a report is to be run. E.g..Monthly wage earners in a specific personnel sub-area. E.g..Personnel number range E.g..Features of org.Assignment...Employees who assigned to certain cost center. E.g..Employee status..Active or inactive. Functions of LDB (Contd…)
The data selection  period delimits the time period for which data is evaluated. When you enter the data selection period,the provide loop retrieves the infotype records whose validity period overlaps with at least one day of this period. Authorization check  :   This ensures that the person starting the evaluation Is authorized to access the report data. Functions of LDB (Contd…)
REPORT CLASS WITH  LDB  :   You can change the layout of the selection screen by assigning classes to reports of the logical database PNP.This allows you to suppress the input fields which are not used. All reports without a report class are assigned the customer default report class '00000000'.Otherwise the sap default report class '  ' is assigned. Report class assignments are stored in table t599b or t599w. Table t599b contains customer report classes and t599w the sap report classes.
Continue... If a report has no report class,either the customer default class(t599c) or the SAP default class(t599f) is used. All reports that use the logical database PNP automatically contains DBPNPCOM module. You can also read the records of an infotype for a particular personnel number without using the logical database,through  RP-READ-INFOTYPE . Report Class With LDB (Contd…)
GET PERNR  :  This event fills the data structures of declared infotypes with all records that exists for a personnel number. Data selection does not delimit the records that retrieved from the database. Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training  [email_address]
Whenever  GET PERNR  statement is included in your program, check the following two . 1.Have you included  PNP  for the logical database screen field in the program attributes. 2.Have you included  PERNR  structure in the tables declaration. Get Pernr (Contd…)
Macros : Macro contains some part of source code which it will be useful for number of applications. The macro  RP-PROVIDE-FROM-LAST  retrieves the last(latest) data record which is valid in the data selection period. The macro  RP-PROVIDE-FROM-FRST  retrieves the first(start) data record which is valid in the data selection period. For every macro, whether the operation was successful or not will be checked with  PNP-SW-FOUND. If  PNP-SW-FOUND = 1  , then the operation is successful.
Macros (Contd…) The macro  RP-READ-INFOTYPE  retrieves all the data record(s) which is valid in the data selection period. If SY-SUBRC = 0 , then the process is successful. The program code pertaining to this macro is stored in the control table TRMAC Macros
Macros (Contd…) Whenever you are using the macros like  RP-PROVIDE-FROM-LAST  or  RP-PROVIDE-FROM-FRST , check whether you have included logical database PNP in program attributes. Macros
It is not necessary to include logical database PNP in your program when you are using the macro like RP-READ-INFOTYPE  A  B  C  D  E  ,  where  A  corresponds to  PERNR  which describes for which personnel number you require records. B  corresponds to  INFOTYPE  which describes from which infotype you require records. C  corresponds to  data structure of the declared infotype  (internal table like p0000 for infotype 0000) where all the records of the particular personnel number will be stored. D  corresponds to  Start date . E  corresponds to  End date . Macros (Contd…)
Consider  a personnel number , for example 37. With the GET PERNR statement, when the personnel number 37 comes all the records available with that personnel number will be retrieved. Let us assume those records as follows. P.NO.   End date  Begin date 010  00000037  13.07.1998  12.09.1997  010  00000037  30.05.2000  14.07.1998  010  00000037  04.07.2001  31.05.2000  010  00000037  31.01.2002  05.07.2001  010  00000037  31.12.9999  01.02.2002  Macros (Contd…)
Consider the  macro shown below. RP-PROVIDE-FROM- LAST  SPACE  PN-BEGDA  PN-ENDDA If we assign  01.01.1997  to  PN-BEGDA and  31.12.1998  to  PN-ENDDA.   Then the following record will be retrieved. 010  00000037  13.07.1998 12.09.1997   If we assign  05.07.1997   to  PN-BEGDA and  01.06.2000  to  PN-ENDDA . Then the following record will be retrieved. 010  00000037  04.07.2001 31.05.2000 Macros (Contd…)
Consider the  macro shown below. RP-PROVIDE-FROM- FRST  SPACE  PN-BEGDA  PN-ENDDA If we assign  01.01.1997  to  PN-BEGDA and  31.12.1998  to  PN-ENDDA.   Then the following record will be retrieved. 010  00000037  13.07.1998 12.09.1997   If we assign  15.07.1998   to  PN-BEGDA and  01.06.2000  to  PN-ENDDA . Then the following record will be retrieved. 010  00000037  30.05.2000 14.07.1998 Macros (Contd…)
Subtypes : The sub-division of infotype records are subtypes.Each subtype representing an infotype category with its own time character. Infotype 0006 is for addresses.This addresses are sub-divided in the IT0006 as permanent residence,secondary residence and home address .
Cluster : set of data objects. Elementary fields , field strings and internal tables etc. will come under data objects. You can store data clusters in ABAP/4 memory for short time and in database for longer time.
Cluster (Contd…)  To write data objects from ABAP/4 program to ABAP/4 memory,the following statement is used. Export f1  f2 to memory id 'table'. Import f1 f2 from memory id 'table'. Free memory id 'table'...Cluster will be deleted from the memory. Cluster
These cluster databases come into picture to keep the information relating to a company more secure. e.g. Payroll, time related data. e.g. cluster database tables PCL1, PCL2, PCL3 and PCL4. PCL1  is the database for HR application areas.It contains information regarding the time recording. PCL2  contains information regarding payroll accounting. PCL3  contains applicant data. PCL4  contains change documents for HR master data. Cluster rx contains   the payroll results for country x according to table T500l. Cluster (Contd…)
The clusters can be called from macros. RP-IMP-Cn-xx   ( n = 1,2,3,4  and xx is cluster) When macro is used to import data,it is not directly get from database table PCL, instead it checks for the buffer directory whether it contains it in main memory. If it is there it takes it from main memory..otherwise it reads from PCL to main memory and from there to the report. Standard import programs follow the naming convention RPCLSTxx..xx is cluster. RP-EXP-Cn-xx  ( n = 1,2,3,4 and  xx is cluster) Cluster (Contd…)
[object Object],[object Object]
Thank You Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training  [email_address]

Mais conteúdo relacionado

Mais procurados

Sap hcm overview
Sap hcm overviewSap hcm overview
Sap hcm overviewJoyce Maina
 
Sap payroll schema. functions , rules and operations – an overview
Sap payroll schema. functions , rules and operations – an overviewSap payroll schema. functions , rules and operations – an overview
Sap payroll schema. functions , rules and operations – an overviewgetsarath
 
SAP HCM - OM PRESENTATION
SAP HCM - OM PRESENTATIONSAP HCM - OM PRESENTATION
SAP HCM - OM PRESENTATIONAditi Sinha
 
SAP HR - Personnel Administration
SAP HR - Personnel AdministrationSAP HR - Personnel Administration
SAP HR - Personnel AdministrationGana Respati
 
Understanding processing classes in sap
Understanding processing classes in sapUnderstanding processing classes in sap
Understanding processing classes in sapMrityunjoy Roy
 
Sap hcm payroll concept - Best SAP HR Training Institute in Pune
Sap hcm payroll concept - Best SAP HR Training Institute in PuneSap hcm payroll concept - Best SAP HR Training Institute in Pune
Sap hcm payroll concept - Best SAP HR Training Institute in PuneAspire Techsoft Academy
 
Organizational Management-SAP HR
Organizational Management-SAP HROrganizational Management-SAP HR
Organizational Management-SAP HRdeepti_arora25
 
Time evaluation rptime00 report
Time evaluation rptime00 reportTime evaluation rptime00 report
Time evaluation rptime00 reportjakkanna9
 
56321818 sap-hr-stepwise-screen-shots
56321818 sap-hr-stepwise-screen-shots56321818 sap-hr-stepwise-screen-shots
56321818 sap-hr-stepwise-screen-shotssandykodali
 
Sap hr training demo
Sap hr training demoSap hr training demo
Sap hr training demoNaveen M
 

Mais procurados (20)

Sap hcm overview
Sap hcm overviewSap hcm overview
Sap hcm overview
 
Sap payroll schema. functions , rules and operations – an overview
Sap payroll schema. functions , rules and operations – an overviewSap payroll schema. functions , rules and operations – an overview
Sap payroll schema. functions , rules and operations – an overview
 
SAP HCM - OM PRESENTATION
SAP HCM - OM PRESENTATIONSAP HCM - OM PRESENTATION
SAP HCM - OM PRESENTATION
 
Payroll Basics
Payroll Basics Payroll Basics
Payroll Basics
 
SAP HR - Personnel Administration
SAP HR - Personnel AdministrationSAP HR - Personnel Administration
SAP HR - Personnel Administration
 
Understanding processing classes in sap
Understanding processing classes in sapUnderstanding processing classes in sap
Understanding processing classes in sap
 
SAP HR - PPT
SAP HR - PPTSAP HR - PPT
SAP HR - PPT
 
SAP Time Management
SAP Time Management SAP Time Management
SAP Time Management
 
SAP HR Configuration Guide
SAP HR Configuration Guide SAP HR Configuration Guide
SAP HR Configuration Guide
 
Sap hcm payroll concept - Best SAP HR Training Institute in Pune
Sap hcm payroll concept - Best SAP HR Training Institute in PuneSap hcm payroll concept - Best SAP HR Training Institute in Pune
Sap hcm payroll concept - Best SAP HR Training Institute in Pune
 
Sap time management
Sap time managementSap time management
Sap time management
 
SAP HR
SAP HRSAP HR
SAP HR
 
Payroll QRGv2
Payroll QRGv2Payroll QRGv2
Payroll QRGv2
 
Organizational Management-SAP HR
Organizational Management-SAP HROrganizational Management-SAP HR
Organizational Management-SAP HR
 
Time evaluation rptime00 report
Time evaluation rptime00 reportTime evaluation rptime00 report
Time evaluation rptime00 report
 
SAP HR Part 1.pptx
SAP HR Part 1.pptxSAP HR Part 1.pptx
SAP HR Part 1.pptx
 
Pre DME
Pre DMEPre DME
Pre DME
 
56321818 sap-hr-stepwise-screen-shots
56321818 sap-hr-stepwise-screen-shots56321818 sap-hr-stepwise-screen-shots
56321818 sap-hr-stepwise-screen-shots
 
Saphcm presentation
Saphcm presentationSaphcm presentation
Saphcm presentation
 
Sap hr training demo
Sap hr training demoSap hr training demo
Sap hr training demo
 

Semelhante a Sap hr overview 58 slides

SAP ABAP HR TRAINING
SAP ABAP HR TRAININGSAP ABAP HR TRAINING
SAP ABAP HR TRAININGJoshiRavin
 
Hcm sample
Hcm sampleHcm sample
Hcm samplemahbasha
 
Architecture module overview
Architecture module overviewArchitecture module overview
Architecture module overviewnpss2011
 
Architecture overview
Architecture  overviewArchitecture  overview
Architecture overviewnpss2011
 
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docx
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docxComparative Analysis Xxxxxxxx Yyyyyyyyy .docx
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docxmonicafrancis71118
 
SAP HR Training in Chennai Demo Part-3
SAP HR Training in Chennai Demo Part-3SAP HR Training in Chennai Demo Part-3
SAP HR Training in Chennai Demo Part-3Thecreating Experts
 
Implement Fingerprint authentication for employee automation system
Implement Fingerprint authentication for employee automation systemImplement Fingerprint authentication for employee automation system
Implement Fingerprint authentication for employee automation systemTanjarul Islam Mishu
 
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvv
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvvHRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvv
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvvssuser486a8b
 
industrial manpower resource manager
industrial manpower resource managerindustrial manpower resource manager
industrial manpower resource managerFreelancer
 
Sap hr material_for_use_in_initial_stages_of_training
Sap hr material_for_use_in_initial_stages_of_trainingSap hr material_for_use_in_initial_stages_of_training
Sap hr material_for_use_in_initial_stages_of_trainingricardopabloasensio
 
Managment informationsystem
Managment informationsystemManagment informationsystem
Managment informationsystemshilpa Mathpati
 
Data Analytics | How it Works
Data Analytics | How it WorksData Analytics | How it Works
Data Analytics | How it WorksJohn P. Gough
 
Human resource information systems (1)
Human resource information systems (1)Human resource information systems (1)
Human resource information systems (1)Bhagya Silva
 

Semelhante a Sap hr overview 58 slides (20)

SAP ABAP HR TRAINING
SAP ABAP HR TRAININGSAP ABAP HR TRAINING
SAP ABAP HR TRAINING
 
Hcm sample
Hcm sampleHcm sample
Hcm sample
 
Architecture module overview
Architecture module overviewArchitecture module overview
Architecture module overview
 
Architecture overview
Architecture  overviewArchitecture  overview
Architecture overview
 
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docx
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docxComparative Analysis Xxxxxxxx Yyyyyyyyy .docx
Comparative Analysis Xxxxxxxx Yyyyyyyyy .docx
 
SAP HR Training in Chennai
SAP HR Training in ChennaiSAP HR Training in Chennai
SAP HR Training in Chennai
 
SAP HR Training in Chennai
SAP HR Training in ChennaiSAP HR Training in Chennai
SAP HR Training in Chennai
 
SAP HR Training in Chennai Demo Part-3
SAP HR Training in Chennai Demo Part-3SAP HR Training in Chennai Demo Part-3
SAP HR Training in Chennai Demo Part-3
 
Implement Fingerprint authentication for employee automation system
Implement Fingerprint authentication for employee automation systemImplement Fingerprint authentication for employee automation system
Implement Fingerprint authentication for employee automation system
 
ERPnext HR Module
ERPnext HR ModuleERPnext HR Module
ERPnext HR Module
 
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvv
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvvHRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvv
HRIS - JYRUSS REGALADO.pptvvvvvvvvvvvvvvvvvvvvvvvvv
 
industrial manpower resource manager
industrial manpower resource managerindustrial manpower resource manager
industrial manpower resource manager
 
HR and Payroll Management System - Web Based
HR and Payroll Management System - Web Based HR and Payroll Management System - Web Based
HR and Payroll Management System - Web Based
 
Sap hr material_for_use_in_initial_stages_of_training
Sap hr material_for_use_in_initial_stages_of_trainingSap hr material_for_use_in_initial_stages_of_training
Sap hr material_for_use_in_initial_stages_of_training
 
Managment informationsystem
Managment informationsystemManagment informationsystem
Managment informationsystem
 
ch0
ch0ch0
ch0
 
HUMAN RESOURCE INFORMATION SYSTEM PPT
HUMAN RESOURCE INFORMATION SYSTEM PPTHUMAN RESOURCE INFORMATION SYSTEM PPT
HUMAN RESOURCE INFORMATION SYSTEM PPT
 
Data Analytics | How it Works
Data Analytics | How it WorksData Analytics | How it Works
Data Analytics | How it Works
 
Human resource information systems (1)
Human resource information systems (1)Human resource information systems (1)
Human resource information systems (1)
 
Database 2 External Schema
Database 2   External SchemaDatabase 2   External Schema
Database 2 External Schema
 

Último

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Último (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

Sap hr overview 58 slides

  • 1. SAP HR Overview Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training [email_address]
  • 2. Why HR is different from other modules ? The following concepts are defined in HR which differs this module with other modules 1. Use of Infotypes 2. The use of Logical Database 3. Use of Macros 4. Storage and Access of data 5 Authorization checks
  • 3. The HR module is divided mainly into the following components. 1.Personnel Administration and Payroll Accounting 2.Personnel Planning and Development
  • 4. Personnel Administration It relieves you from the daily administrative routine activities which are costly and time consuming, while simultaneously supporting you in demanding planning activities. Eg Organization management comes under administration.
  • 5. Payroll accounting It deals with the employee salaries in the Organization . Eg : Calculating the Gross salary,Net salary.
  • 6. Personnel Planning and Development : It was designed to support the decision making process in any organization. It deals with giving inputs and taking outputs from the employees and setting up goals to individual employees and impart training to the employees. It also deals with recruitment of employees for the organization. Eg. Recruitment ,Training and event management comes under planning. There are other functions like time and travel management in HR
  • 7. Organization : We can define an Organization as an individual Enterprise (company or industry) in which someone is leading it and with some departments like HR,Marketing,Finance,R&D etc. For any organization Employees are the most powerful resource. So to maintain the employee related data we require one system which ensures accuracy and consistent within the Organization.
  • 8. XYZ Inc. XYZ Chemicals XYZ Pharmaceuticals Chennai HYD Manufacturing Planning Company code Personnel Area Personnel Sub-area ORGANIZATION HIERARCHY
  • 9.
  • 10.
  • 11. Company code : Represents the highest level of Company structure. Personnel Area : It can represent large divisions within a company and Geographic locations . Personnel Sub-area : Personnel sub areas are a subdivision of the personnel area. At this level ,the organizational aspects are controlled . Country groupings , Public Holiday calendar and wage type structures comes under organizational aspects . Company Structure (Contd…)
  • 12. XYZ Inc. XYZ Chemicals XYZ Pharmaceuticals Chennai HYD Manufacturing Planning Company code Personnel Area Personnel Sub-area ORGANIZATION HIERARCHY
  • 13. The components in Personnel structure are Administrative : Employee Group, Employee Subgroup and Payroll area. Organizational : Job, Position and Organizational unit.
  • 14. Employee Group : General classification of employees. Active , Retired, Contractors and External Employees. Employee Sub group : Division of employee groups. Hourly based, Salaried, Executives and Trainees Personnel structure (Contd…)
  • 15. Payroll Area : The active employees are also divided into payroll areas that determine when they receive their paychecks like weekly or semi-monthly. Personnel structure (Contd…)
  • 16. Job : Description of activity performed by the Employee. Coding, Management Position : Employee Placement or individual employee assignment within the company. Software Engineer or Manager Organization Unit : Performs a specific set of functions within company. Department or subsidiary etc Personnel structure (Contd…)
  • 17. Developer S / W Engineer Trainee Job Positions Management General Manager Sr.Manager Job Positions Personnel structure (Contd…)
  • 18. Job Positions One to many relationship APCI Project - Job Designing Coding Testing Quality control Positions Personnel structure (Contd…)
  • 19.
  • 20.
  • 21.
  • 22. Hiring an employee : When assigning a new employee in a company, we have to enter large amount of data for employee into the system. In HR different types of employee data are stored in infotypes. When hiring an employee, we need to maintain lot of infotypes, Hiring can be carried out using a personnel event.
  • 23. Organizational reassignments : Important changes in an employee's career path must be documented in the system. Consequently, the standard SAP system contains the personnel event Organizational reassignment. When you run this personnel event, the system will automatically offer you the infotypes that you need to maintain.
  • 24. Leaving the company : When the employee leaves the company, certain infotypes cannot be changed .The personnel event Leaving is used to depict an employee leaving the company in the system. This event gives the infotypes for maintaining the data of when an employee leaves the company.
  • 25.
  • 27. Data handling in HR (Using of Infotypes): Master data in HR is stored in infotypes. Each infotype pertains to a specific type of data. Each infotype has a database table associated with it. Example : For Infotype 0000, the corresponding database table associated with it is PA0000 .
  • 28. What is Infotype The information units used to enter the data of an employee are called infotypes. The Infotypes are used to group related data fields together. E.g.. IT0006.(address) Why Infotype As HR is related to time , we require old data as well as new data. The data we enter into the infotypes are automatically checked for accuracy and against the table entries. In simple, HR data is huge and to access data easily we require Infotype.
  • 29. What is logical database? The LDB is special type of ABAP program that combines the contents of certain related database tables and retrieve some related data and make it available to application programs. In other words, a LDB is a method by which ABAP programs read and process the data. The sequence in which the data is supplied to the program is determined by a tree structure.
  • 30.
  • 31. Logical databases have a tree structure . A logical database can contain a maximum of 300 tables Logical Database (Contd…)
  • 32. SAPDBPNP is the name of the database program for the logical database PNP. Logical Database (Contd…)
  • 33. How are logical database used 1.Logical databases when generating an ABAP program o The selection screen generated contains the selections (SELECT-OPTIONS AND PARAMETERS) of both the logical database and the program. o The only database-specific selections displayed on the selection screen are those needed by the program for data retrieval purposes Logical Database (Contd…)
  • 34. 2. Logical databases at run-time of an ABAP program At run-time, the system processes the events in the program and in the logical database in the following order o Before displaying the selection screen, certain initializations (e.g. calculating default values such as key date, etc.) are performed for the selection screen by the logical database and the program. o The selection screen is displayed and the user enters data in the input fields. Logical Database (Contd…)
  • 35. o The logical database and the program check that the input is correct and complete , but also that the user has the appropriate authorizations. If an error occurs, some fields are made ready for input again, so that the user can make the necessary correction(s). o In the event START-OF-SELECTION, the ABAP program performs any preliminary work (for ex, importing files). o The logical database reads the selected data and the program processes it within the GET events according to the sequence specified by the structure. o In the event END-OF-SELECTION, the ABAP program performs any concluding operations (for example, calculating totals, exporting files). Logical Database (Contd…)
  • 36. 3 . Designing the selection screens o The standard selection screen of a logical database has a standard layout where SELECT-OPTIONS and PARAMETERS appear in the sequence they are declared, each on a new line. The system automatically generates such a screen for each program that does not have its own selection screen entered in the attributes. Logical Database (Contd…)
  • 37. o You can define your own selection screens for any logical database . If the attributes of a program include the number of its own selection screen, the system uses this screen as a model when generating. Any program-specific selections appear after the database selections. The flow logic for such screens is also generated automatically and therefore cannot be modified. You cannot delete database selections Logical Database (Contd…)
  • 38. Functions of LDB : Data retrieval : The personnel data of each employee is loaded into the main memory where it can be accessed for processing. Screening : Employees can be selected according to the organizational criteria entered on the selection screen. E.g...Hourly wage earners in a particular personnel sub area.
  • 39. There are two types of screening.. Person selection and data selection period. Person selection defines those employees for whom a report is to be run. E.g..Monthly wage earners in a specific personnel sub-area. E.g..Personnel number range E.g..Features of org.Assignment...Employees who assigned to certain cost center. E.g..Employee status..Active or inactive. Functions of LDB (Contd…)
  • 40. The data selection period delimits the time period for which data is evaluated. When you enter the data selection period,the provide loop retrieves the infotype records whose validity period overlaps with at least one day of this period. Authorization check : This ensures that the person starting the evaluation Is authorized to access the report data. Functions of LDB (Contd…)
  • 41. REPORT CLASS WITH LDB : You can change the layout of the selection screen by assigning classes to reports of the logical database PNP.This allows you to suppress the input fields which are not used. All reports without a report class are assigned the customer default report class '00000000'.Otherwise the sap default report class ' ' is assigned. Report class assignments are stored in table t599b or t599w. Table t599b contains customer report classes and t599w the sap report classes.
  • 42. Continue... If a report has no report class,either the customer default class(t599c) or the SAP default class(t599f) is used. All reports that use the logical database PNP automatically contains DBPNPCOM module. You can also read the records of an infotype for a particular personnel number without using the logical database,through RP-READ-INFOTYPE . Report Class With LDB (Contd…)
  • 43. GET PERNR : This event fills the data structures of declared infotypes with all records that exists for a personnel number. Data selection does not delimit the records that retrieved from the database. Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training [email_address]
  • 44. Whenever GET PERNR statement is included in your program, check the following two . 1.Have you included PNP for the logical database screen field in the program attributes. 2.Have you included PERNR structure in the tables declaration. Get Pernr (Contd…)
  • 45. Macros : Macro contains some part of source code which it will be useful for number of applications. The macro RP-PROVIDE-FROM-LAST retrieves the last(latest) data record which is valid in the data selection period. The macro RP-PROVIDE-FROM-FRST retrieves the first(start) data record which is valid in the data selection period. For every macro, whether the operation was successful or not will be checked with PNP-SW-FOUND. If PNP-SW-FOUND = 1 , then the operation is successful.
  • 46. Macros (Contd…) The macro RP-READ-INFOTYPE retrieves all the data record(s) which is valid in the data selection period. If SY-SUBRC = 0 , then the process is successful. The program code pertaining to this macro is stored in the control table TRMAC Macros
  • 47. Macros (Contd…) Whenever you are using the macros like RP-PROVIDE-FROM-LAST or RP-PROVIDE-FROM-FRST , check whether you have included logical database PNP in program attributes. Macros
  • 48. It is not necessary to include logical database PNP in your program when you are using the macro like RP-READ-INFOTYPE A B C D E , where A corresponds to PERNR which describes for which personnel number you require records. B corresponds to INFOTYPE which describes from which infotype you require records. C corresponds to data structure of the declared infotype (internal table like p0000 for infotype 0000) where all the records of the particular personnel number will be stored. D corresponds to Start date . E corresponds to End date . Macros (Contd…)
  • 49. Consider a personnel number , for example 37. With the GET PERNR statement, when the personnel number 37 comes all the records available with that personnel number will be retrieved. Let us assume those records as follows. P.NO. End date Begin date 010 00000037 13.07.1998 12.09.1997 010 00000037 30.05.2000 14.07.1998 010 00000037 04.07.2001 31.05.2000 010 00000037 31.01.2002 05.07.2001 010 00000037 31.12.9999 01.02.2002 Macros (Contd…)
  • 50. Consider the macro shown below. RP-PROVIDE-FROM- LAST SPACE PN-BEGDA PN-ENDDA If we assign 01.01.1997 to PN-BEGDA and 31.12.1998 to PN-ENDDA. Then the following record will be retrieved. 010 00000037 13.07.1998 12.09.1997 If we assign 05.07.1997 to PN-BEGDA and 01.06.2000 to PN-ENDDA . Then the following record will be retrieved. 010 00000037 04.07.2001 31.05.2000 Macros (Contd…)
  • 51. Consider the macro shown below. RP-PROVIDE-FROM- FRST SPACE PN-BEGDA PN-ENDDA If we assign 01.01.1997 to PN-BEGDA and 31.12.1998 to PN-ENDDA. Then the following record will be retrieved. 010 00000037 13.07.1998 12.09.1997 If we assign 15.07.1998 to PN-BEGDA and 01.06.2000 to PN-ENDDA . Then the following record will be retrieved. 010 00000037 30.05.2000 14.07.1998 Macros (Contd…)
  • 52. Subtypes : The sub-division of infotype records are subtypes.Each subtype representing an infotype category with its own time character. Infotype 0006 is for addresses.This addresses are sub-divided in the IT0006 as permanent residence,secondary residence and home address .
  • 53. Cluster : set of data objects. Elementary fields , field strings and internal tables etc. will come under data objects. You can store data clusters in ABAP/4 memory for short time and in database for longer time.
  • 54. Cluster (Contd…) To write data objects from ABAP/4 program to ABAP/4 memory,the following statement is used. Export f1 f2 to memory id 'table'. Import f1 f2 from memory id 'table'. Free memory id 'table'...Cluster will be deleted from the memory. Cluster
  • 55. These cluster databases come into picture to keep the information relating to a company more secure. e.g. Payroll, time related data. e.g. cluster database tables PCL1, PCL2, PCL3 and PCL4. PCL1 is the database for HR application areas.It contains information regarding the time recording. PCL2 contains information regarding payroll accounting. PCL3 contains applicant data. PCL4 contains change documents for HR master data. Cluster rx contains the payroll results for country x according to table T500l. Cluster (Contd…)
  • 56. The clusters can be called from macros. RP-IMP-Cn-xx ( n = 1,2,3,4 and xx is cluster) When macro is used to import data,it is not directly get from database table PCL, instead it checks for the buffer directory whether it contains it in main memory. If it is there it takes it from main memory..otherwise it reads from PCL to main memory and from there to the report. Standard import programs follow the naming convention RPCLSTxx..xx is cluster. RP-EXP-Cn-xx ( n = 1,2,3,4 and xx is cluster) Cluster (Contd…)
  • 57.
  • 58. Thank You Last modified by: Bunty Jain – SAP HR ABAP, Delhi, India, IT SAP Training [email_address]