DBA Data[Home] [Help]

APPS.PAY_ETP_UPD dependencies on HR_COMM_API

Line 408: hr_comm_api.ins(p_comment_id => p_rec.comment_id

404: --
405: -- Insert the comment text if comments exist
406: --
407: If (p_rec.comments is not null and p_rec.comment_id is null) then
408: hr_comm_api.ins(p_comment_id => p_rec.comment_id
409: ,p_source_table_name => 'PAY_ELEMENT_TYPES_F'
410: ,p_comment_text => p_rec.comments
411: );
412: -- Update the comments if they have changed

Line 415: hr_comm_api.upd(p_comment_id => p_rec.comment_id

411: );
412: -- Update the comments if they have changed
413: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
414: pay_etp_shd.g_old_rec.comments) then
415: hr_comm_api.upd(p_comment_id => p_rec.comment_id
416: ,p_source_table_name => 'PAY_ELEMENT_TYPES_F'
417: ,p_comment_text => p_rec.comments
418: );
419: End If;