DBA Data[Home] [Help]

APPS.PAY_PRT_DEL dependencies on PAY_RUN_TYPES_F

Line 70: delete from pay_run_types_f

66: --
67: -- Delete the where the effective start date is equal
68: -- to the validation end date.
69: --
70: delete from pay_run_types_f
71: where run_type_id = p_rec.run_type_id
72: and effective_start_date = p_validation_start_date;
73: --
74: Else

Line 79: delete from pay_run_types_f

75: --
76: -- Delete the row(s) where the effective start date is greater than
77: -- or equal to the validation start date.
78: --
79: delete from pay_run_types_f
80: where run_type_id = p_rec.run_type_id
81: and effective_start_date >= p_validation_start_date;
82: --
83: End If;

Line 446: (p_module_name => 'PAY_RUN_TYPES_F'

442: --
443: when hr_api.cannot_find_prog_unit then
444: --
445: hr_api.cannot_find_prog_unit_error
446: (p_module_name => 'PAY_RUN_TYPES_F'
447: ,p_hook_type => 'AD');
448: --
449: end;
450: --