DBA Data[Home] [Help]

APPS.PAY_ELE_UPD dependencies on HR_COMM_API

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

358: --
359: -- Insert the comment text if comments exist
360: --
361: If (p_rec.comments is not null and p_rec.comment_id is null) then
362: hr_comm_api.ins(p_comment_id => p_rec.comment_id
363: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'
364: ,p_comment_text => p_rec.comments
365: );
366: -- Update the comments if they have changed

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

365: );
366: -- Update the comments if they have changed
367: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
368: pay_ele_shd.g_old_rec.comments) then
369: hr_comm_api.upd(p_comment_id => p_rec.comment_id
370: ,p_source_table_name => 'PAY_ELEMENT_ENTRIES_F'
371: ,p_comment_text => p_rec.comments
372: );
373: End If;