Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Finding Standard SAP objects

Former Member
0 Likes
1,158

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

3 REPLIES 3
Read only

Former Member
0 Likes
889

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

Read only

Former Member
0 Likes
889

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

Read only

Former Member
0 Likes
889

see TADIR table