DBA Data[Home] [Help]

APPS.PER_PER_UPD dependencies on HR_COMM_API

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

501: --
502: -- Insert the comment text if comments exist
503: --
504: If (p_rec.comments is not null and p_rec.comment_id is null) then
505: hr_comm_api.ins(p_comment_id => p_rec.comment_id,
506: p_source_table_name => 'per_all_people_f',
507: p_comment_text => p_rec.comments);
508: -- Update the comments if they have changed
509: ElsIf (p_rec.comment_id is not null and p_rec.comments <>

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

507: p_comment_text => p_rec.comments);
508: -- Update the comments if they have changed
509: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
510: per_per_shd.g_old_rec.comments) then
511: hr_comm_api.upd(p_comment_id => p_rec.comment_id,
512: p_source_table_name => 'per_all_people_f',
513: p_comment_text => p_rec.comments);
514: End If;
515: --