DBA Data[Home] [Help]

APPS.PAY_PEL_UPD dependencies on HR_COMM_API

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

352: --
353: -- Insert the comment text if comments exist
354: --
355: If (p_rec.comments is not null and p_rec.comment_id is null) then
356: hr_comm_api.ins(p_comment_id => p_rec.comment_id
357: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'
358: ,p_comment_text => p_rec.comments
359: );
360: -- Update the comments if they have changed

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

359: );
360: -- Update the comments if they have changed
361: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
362: pay_pel_shd.g_old_rec.comments) then
363: hr_comm_api.upd(p_comment_id => p_rec.comment_id
364: ,p_source_table_name => 'PAY_ELEMENT_LINKS_F'
365: ,p_comment_text => p_rec.comments
366: );
367: End If;