DBA Data[Home] [Help]

APPS.PAY_PPR_UPD dependencies on HR_COMM_API

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

324: --
325: -- Insert the comment text if comments exist
326: --
327: If (p_rec.comments is not null and p_rec.comment_id is null) then
328: hr_comm_api.ins(p_comment_id => p_rec.comment_id
329: ,p_source_table_name => 'PAY_STATUS_PROCESSING_RULES_F'
330: ,p_comment_text => p_rec.comments
331: );
332: -- Update the comments if they have changed

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

331: );
332: -- Update the comments if they have changed
333: ElsIf (p_rec.comment_id is not null and p_rec.comments <>
334: pay_ppr_shd.g_old_rec.comments) then
335: hr_comm_api.upd(p_comment_id => p_rec.comment_id
336: ,p_source_table_name => 'PAY_STATUS_PROCESSING_RULES_F'
337: ,p_comment_text => p_rec.comments
338: );
339: End If;