DBA Data[Home] [Help]

APPS.PAY_OPM_UPD dependencies on HR_COMM_API

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

371: --
372: -- Insert the comment text if comments exist
373: --
374: If (p_rec.comments is not null and p_rec.comment_id is null) then
375: hr_comm_api.ins(p_comment_id => p_rec.comment_id
376: ,p_source_table_name => 'PAY_ORG_PAYMENT_METHODS_F'
377: ,p_comment_text => p_rec.comments
378: );
379: -- Update the comments if they have changed

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

378: );
379: -- Update the comments if they have changed
380: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
381: pay_opm_shd.g_old_rec.comments) then
382: hr_comm_api.upd(p_comment_id => p_rec.comment_id
383: ,p_source_table_name => 'PAY_ORG_PAYMENT_METHODS_F'
384: ,p_comment_text => p_rec.comments
385: );
386: End If;