DBA Data[Home] [Help]

APPS.BEN_ASG_UPD dependencies on HR_COMM_API

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

421: --
422: -- Insert the comment text if comments exist
423: --
424: If (p_rec.comment_text is not null and p_rec.comment_id is null) then
425: hr_comm_api.ins(p_comment_id => p_rec.comment_id,
426: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
427: p_comment_text => p_rec.comment_text);
428: -- Update the comments if they have changed
429: ElsIf (p_rec.comment_id is not null and p_rec.comment_text <>

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

427: p_comment_text => p_rec.comment_text);
428: -- Update the comments if they have changed
429: ElsIf (p_rec.comment_id is not null and p_rec.comment_text <>
430: per_asg_shd.g_old_rec.comment_text) then
431: hr_comm_api.upd(p_comment_id => p_rec.comment_id,
432: p_source_table_name => 'PER_ALL_ASSIGNMENTS_F',
433: p_comment_text => p_rec.comment_text);
434: End If;
435: hr_utility.set_location(l_proc, 10);