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

Employee master changes

Former Member
0 Likes
1,684

Hi,

I need to perform a mass change on employee data in SAP HR. I need to make some fields as default static value. Could you please suggest me any standard program or if I need to write the custom code how could I do that. Do I need to call some BAPI or what. The data which I need to change is Basic Personal Data and contract data.

Thanks,

Edited by: WDAbap on May 4, 2011 2:07 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,132

You can use function module HR_MAINTAIN_MASTERDATA.

The FM allows you to maintain several infotypes for an employee at a time.

For more information, Goto SE37 -> Give FM name and do "Where used list".

3 REPLIES 3
Read only

vijy_mukunthan
Active Contributor
0 Likes
1,132

Hi

I dont think so there is a std program. So you can develop a custom pgm. To update the records use the FM HR_INFOTYPE_OPERATION just pass necessary infotype inside the loop with pernr and endda and I as insert perameter which update the database.

Regards

Vijay

Read only

Former Member
0 Likes
1,133

You can use function module HR_MAINTAIN_MASTERDATA.

The FM allows you to maintain several infotypes for an employee at a time.

For more information, Goto SE37 -> Give FM name and do "Where used list".

Read only

0 Likes
1,132

Thanks Vijay and Rumhat.