DBA Data[Home] [Help]

APPS.PER_ASG_UPD dependencies on HR_COMM_API

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

451: --
452: -- Insert the comment text if comments exist
453: --
454: If (p_rec.comment_text is not null and p_rec.comment_id is null) then
455: hr_comm_api.ins(p_comment_id => p_rec.comment_id,
456: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
457: p_comment_text => p_rec.comment_text);
458: -- Update the comments if they have changed
459: ElsIf (p_rec.comment_id is not null and p_rec.comment_text <>

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

457: p_comment_text => p_rec.comment_text);
458: -- Update the comments if they have changed
459: ElsIf (p_rec.comment_id is not null and p_rec.comment_text <>
460: per_asg_shd.g_old_rec.comment_text) then
461: hr_comm_api.upd(p_comment_id => p_rec.comment_id,
462: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
463: p_comment_text => p_rec.comment_text);
464: End If;
465: hr_utility.set_location(l_proc, 10);