DBA Data[Home] [Help]

APPS.PAY_PPR_DEL dependencies on PAY_STATUS_PROCESSING_RULES_F

Line 71: delete from pay_status_processing_rules_f

67: --
68: -- Delete the where the effective start date is equal
69: -- to the validation end date.
70: --
71: delete from pay_status_processing_rules_f
72: where status_processing_rule_id = p_rec.status_processing_rule_id
73: and effective_start_date = p_validation_start_date;
74: --
75: pay_ppr_shd.g_api_dml := false; -- Unset the api dml status

Line 82: delete from pay_status_processing_rules_f

78: --
79: -- Delete the row(s) where the effective start date is greater than
80: -- or equal to the validation start date.
81: --
82: delete from pay_status_processing_rules_f
83: where status_processing_rule_id = p_rec.status_processing_rule_id
84: and effective_start_date >= p_validation_start_date;
85: --
86: pay_ppr_shd.g_api_dml := false; -- Unset the api dml status

Line 286: from pay_status_processing_rules_f t1

282: -- Cursor C_Sel1 select comments to be deleted
283: --
284: Cursor C_Sel1 is
285: select t1.comment_id
286: from pay_status_processing_rules_f t1
287: where t1.comment_id is not null
288: and t1.status_processing_rule_id = p_rec.status_processing_rule_id
289: and t1.effective_start_date <= p_validation_end_date
290: and t1.effective_end_date >= p_validation_start_date

Line 293: from pay_status_processing_rules_f t2

289: and t1.effective_start_date <= p_validation_end_date
290: and t1.effective_end_date >= p_validation_start_date
291: and not exists
292: (select 1
293: from pay_status_processing_rules_f t2
294: where t2.comment_id = t1.comment_id
295: and t2.status_processing_rule_id = t1.status_processing_rule_id
296: and (t2.effective_start_date > p_validation_end_date
297: or t2.effective_end_date < p_validation_start_date));

Line 420: (p_module_name => 'PAY_STATUS_PROCESSING_RULES_F'

416: --
417: when hr_api.cannot_find_prog_unit then
418: --
419: hr_api.cannot_find_prog_unit_error
420: (p_module_name => 'PAY_STATUS_PROCESSING_RULES_F'
421: ,p_hook_type => 'AD');
422: --
423: end;
424: --

Line 519: 'PAY_STATUS_PROCESSING_RULES_F',

515: --
516:
517: -- Cascade the action to formula result rules for this Status Processing Rule
518: pay_formula_result_rules_pkg.parent_deleted (
519: 'PAY_STATUS_PROCESSING_RULES_F',
520: p_rec.status_processing_rule_id,
521: p_effective_date,
522: p_datetrack_mode
523: );