‎2007 Aug 05 6:49 AM
Dear All
How to get the standard SAP ABAP objects such as Tables,Elements,Domains ,function modules which is required for us.
For example i need to create employee table with Empname ,empid,etc for these fields where to get the data elements and domains.is there standard tables in HR if so help me out like how to view that.
Awaiting for much needed suggestions
Regards
Karthik
‎2007 Aug 05 7:03 AM
Hi,
Go to transaction Se11.
Select the required options and press F4. You will get the standard objects
HR tables
Starts with PA* , HRT, HRP
Eg. PA0001, PA0002
HRT2001, HRP2001 etc.
Regards
Arun
‎2007 Aug 05 7:13 AM
Hi
All Std Objects are stored in TADIR table, you can see that using the related object type PROG,TABL,DTEL etc
also you can check the std tables like DD01L, DD02L, DD03L, DD* tables for std tables, data elements, domains and fields etc
All HR related stuff are stored in Infotypes
Check PA* tables in SE11
see this doc
HR deals with the INFOTYPES which are similar to Tables in General ABAP.
There are different ways of fetching data from these infotypes.
There are different areas in HR LIKE Personal Admn, Orgn Management, Benefits, Time amangement, Event Management, Payroll etc
Infotypes for these areas are different from one another area.
storing of records data in each type of area is different
LDBS like PNP are used in HR programing.
Instead of Select.. we use some ROUTINES and PROVIDE..ENDPROVIDE.. etc
and in the case of Pay roll we use Clusters and we Import and Export them for data fetching.
On the whole Normal ABAP is different from HR abap.
For Personal Admn the Infotypes start with PA0000 to PA1999
Time Related Infotypes start with PA2000 to PA2999.
Orgn related Infotypes start with HRP1000 to HRP1999.
All custom developed infotypes stsrat with PA9000 onwards.
In payroll processing we use Clusters like PCL1,2,3 and 4.
Instead of Select query we use PROVIDE and ENDPROVIDE..
You have to assign a Logical Database in the attributes PNP.
<b>Reward points for useful Answers</b>
Regards
Anji
‎2007 Aug 05 7:43 AM