‎2006 Oct 17 11:50 AM
Hi all,
I want ot update Infotype 0017 , which fm can be used for this.
‎2006 Oct 17 11:55 AM
Pavan,
Updating any info types we can use<b> 'HR_INFOTYPE_OPERATION'</b> Function Module.
See an example below.
CALL FUNCTION 'HR_INFOTYPE_OPERATION'
EXPORTING
infty = '0015'
number = p_p_pernr
subtype = '9955'
validityend = '99991231'
validitybegin = p_start_date
record = lit_add_payments
operation = 'INS'
nocommit = p_commit
IMPORTING
return = wa_bapireturn.Hope I could help you.
~thomas
‎2006 Oct 17 11:55 AM
Pavan,
Updating any info types we can use<b> 'HR_INFOTYPE_OPERATION'</b> Function Module.
See an example below.
CALL FUNCTION 'HR_INFOTYPE_OPERATION'
EXPORTING
infty = '0015'
number = p_p_pernr
subtype = '9955'
validityend = '99991231'
validitybegin = p_start_date
record = lit_add_payments
operation = 'INS'
nocommit = p_commit
IMPORTING
return = wa_bapireturn.Hope I could help you.
~thomas
‎2006 Oct 27 11:31 AM