Application Development 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: 

Any BAPI for Infotype 0015(Additional Data)

Former Member
0 Kudos

Hi,

Can anyone provide information on BAPI for Infotypes 0015(Additional Data).

Your help will be appreciated !!!

Vijayanand.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

To upload data into infotype 0015

Use HR_INFOTYPE_OPERATION to create your a wrapper BAPI. You would also have to use BAPI_EMPLOYEE_ENQUEUE and BAPI_EMPLOYEE_DEQUEUE for locking and unlocking of the record in your BAPI or program.

  • Enqueue personnel number

call function 'BAPI_EMPLOYEE_ENQUEUE'

  • create 0015

call function 'HR_INFOTYPE_OPERATION'

Use FM : HR_MAINTAIN_MASTERDATA to update IT 0015

check bapi : BAPI_HRMASTER_SAVE_REPL_MULT

  • Dequeue personnel number

call function 'BAPI_EMPLOYEE_DEQUEUE'

You could also use LSMW Tool to upload the data.

Regards

Vasu

1 REPLY 1

Former Member
0 Kudos

To upload data into infotype 0015

Use HR_INFOTYPE_OPERATION to create your a wrapper BAPI. You would also have to use BAPI_EMPLOYEE_ENQUEUE and BAPI_EMPLOYEE_DEQUEUE for locking and unlocking of the record in your BAPI or program.

  • Enqueue personnel number

call function 'BAPI_EMPLOYEE_ENQUEUE'

  • create 0015

call function 'HR_INFOTYPE_OPERATION'

Use FM : HR_MAINTAIN_MASTERDATA to update IT 0015

check bapi : BAPI_HRMASTER_SAVE_REPL_MULT

  • Dequeue personnel number

call function 'BAPI_EMPLOYEE_DEQUEUE'

You could also use LSMW Tool to upload the data.

Regards

Vasu