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

ABAP HR

Former Member
0 Likes
480

Hi Experts,

How can I know that if an employee is active or inactive.

I guess if endda < current date then inactive or is there any other way to find if he is active.

If I use rp-provide macro it will bring only active records or both.

Thank you.

Regards,

Admir.

Points will be rewarded.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
448

If I remember it right, the field <b>PA0000-STAT2</b> holds the status of the employee

Hi Experts,

How can I know that if an employee is active or inactive.

I guess if endda < current date then inactive or is there any other way to find if he is active.

If I use rp-provide macro it will bring only active records or both.

Thank you.

Regards,

Admir.

Points will be rewarded.

2 REPLIES 2
Read only

Former Member
0 Likes
449

If I remember it right, the field <b>PA0000-STAT2</b> holds the status of the employee

Read only

0 Likes
448

IF P0000-STAT2 ne 3, the employee is not active.. if your report is tied to PNP, you can restrict the selection to active emps, using the selection screen field Employee Status.

~Suresh