DBA Data[Home] [Help]

APPS.PAY_PPM_UPD dependencies on HR_COMM_API

Line 374: hr_comm_api.ins(p_comment_id => p_rec.comment_id,

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

Line 380: hr_comm_api.upd(p_comment_id => p_rec.comment_id,

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