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

HR Reports

Former Member
0 Likes
1,273

Hi

I require to display the position description in one of my HR Reports. where can i can get the position details

Regards

Ganesh

1 ACCEPTED SOLUTION
Read only

vinod_gunaware2
Active Contributor
0 Likes
1,246

hi

Just have look into below ink

http://www.sapdevelopment.co.uk/hr/hrhome.htm

regards

vinod

Hi

I require to display the position description in one of my HR Reports. where can i can get the position details

Regards

Ganesh

11 REPLIES 11
Read only

vinod_gunaware2
Active Contributor
0 Likes
1,247

hi

Just have look into below ink

http://www.sapdevelopment.co.uk/hr/hrhome.htm

regards

vinod

Read only

Former Member
0 Likes
1,246

Hi Ganesan,

Descriptions are stored in table HRP1000

with OTYPE = 'S'.

**Don't forget to reward points for all helpful replies

Read only

Former Member
0 Likes
1,246

Hi,

did you check the info type PA0001,

<b>PA0001-PLANS "position

PA0001-STELL "job</b>

these are the fields you are looking for.

Regards

vijay

Read only

0 Likes
1,246

Hi

I fetch the Position details from T528T-PLSTX table by using common field 'PLANS'

Is it correct or suggest me pls

Regards

Ganesh

Read only

0 Likes
1,246

Yes get the plans from Pa0001 and then pass it to T528T

pass the appropriate Object type and get the text.

Regards

vijay

Read only

0 Likes
1,246

But If i do this method, i am getting a duplicate records also . how do i avoid ?

Regards

Ganesh

Read only

0 Likes
1,246

Hi,

PASS language 'EN' and oject type 'S' and then PLANS Position to T528T and get the text .

Regards

vijay

Read only

0 Likes
1,246

How you will get ...?

since there are 4 keys , one language(EN),Object type(S), Position(Unique), and enddate.

you will not get the duplicates .try to pass all these in where condition.

Regards

vijay

Read only

0 Likes
1,246

Hi

Thanks very much, now i am able to get the correct records

Regards

Ganesh

Read only

0 Likes
1,246

Please close the thread and reward points for helpful answers.

Regards

vijay

Read only

Former Member
0 Likes
1,246

Hi Ganesh,

You will get position description from HRP1000 table.

Please check the below code :


** Get Position from HRP1000
      SELECT stext INTO hrp1000-stext UP TO 1 ROWS
             FROM hrp1000
             WHERE objid = p0001-plans
             AND   OTYPE = 'S' 
             AND   LANGU = sy-langu
             AND   endda = '99991231'.
      ENDSELECT.

  

Hope this will help you.

Thanks & Regards,

Siri.

kindly award points if it is useful.

Message was edited by: Srilatha T