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-PF Report

Former Member
0 Likes
1,190

Hi

Iam new to HR-ABAP and i need to generate PF report for Indian pay roll.

I can take pernr,name from pa0001.where i will get date of joining ,PF A/cno and also i need to display EPF,EPS,VPF.

How do i differntiate those?

Anyone done already on PF report,please send to [email protected].

Help will be highly appreciated.

Thanks&Regards,

RK

1 ACCEPTED SOLUTION
Read only

suresh_datti
Active Contributor
0 Likes
1,143

Pl take a look at Infotype 0587 in PA20 & also go through this <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/fe/c3ec495d834a888d49d9acd2feee16/frameset.htm">SAP Help</a>

~Suresh

Hi

Iam new to HR-ABAP and i need to generate PF report for Indian pay roll.

I can take pernr,name from pa0001.where i will get date of joining ,PF A/cno and also i need to display EPF,EPS,VPF.

How do i differntiate those?

Anyone done already on PF report,please send to [email protected].

Help will be highly appreciated.

Thanks&Regards,

RK

8 REPLIES 8
Read only

suresh_datti
Active Contributor
0 Likes
1,144

Pl take a look at Infotype 0587 in PA20 & also go through this <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/fe/c3ec495d834a888d49d9acd2feee16/frameset.htm">SAP Help</a>

~Suresh

Read only

Former Member
0 Likes
1,143

Hi,

Date of joining from infotype P0041.The other information can be get from Infotypes PA0580 series.

Hope this helps.

Read only

Former Member
0 Likes
1,143

Hi

Thanks suresh and Imtiaz

Read only

Former Member
0 Likes
1,143

Hi

When i want to retrieve EPF,VPF etc,can i get directly from infotypes or do i need to use any tables .

if i write select field from infotype??doesit works??or any corresponding tables for that.

Please ..

Thanks

Read only

0 Likes
1,143

Instead of a SELECT, I would suggest using the function module HR_READ_INFOTYPE. This can be used iwth/without attaching your report toa Logical database & does take care of the HR Authorization checks.. Using a SELECT would require you to code explicit Authn Checks in your Report..

~Suresh

Read only

Former Member
0 Likes
1,143

I found one program where he was readinf for vpf and

reading itab with key lgart = '/3f2'

and for PF

/'3F1'.

what r those?

Read only

0 Likes
1,143

/3F1 & /3F2 are Wagetypes.. look up table T512T for their descriptions..

~Suresh

Read only

Former Member
0 Likes
1,143

Hi Suresh,

Last question to make myself clear.

Assume i write select from pa0001 to get pernr and ENAME and after if i get wage types from pa0008

When iam reading i can say with key lgart = '/3ef1'

/3fe2' like that to differntiate the epf,vpf,ef??

Thanks in advance.