DBA Data[Home] [Help]

APPS.AME_MAN_DEL dependencies on AME_MANDATORY_ATTRIBUTES

Line 71: delete from ame_mandatory_attributes

67: --
68: -- Delete the where the effective start date is equal
69: -- to the validation end date.
70: --
71: delete from ame_mandatory_attributes
72: where attribute_id = p_rec.attribute_id
73: and action_type_id = p_rec.action_type_id
74: and start_date = p_validation_start_date;
75: --

Line 83: delete from ame_mandatory_attributes

79: --
80: -- Delete the row(s) where the effective start date is greater than
81: -- or equal to the validation start date.
82: --
83: delete from ame_mandatory_attributes
84: where attribute_id = p_rec.attribute_id
85: and action_type_id = p_rec.action_type_id
86: and start_date >= p_validation_start_date;*/
87: --

Line 336: (p_module_name => 'AME_MANDATORY_ATTRIBUTES'

332: --
333: when hr_api.cannot_find_prog_unit then
334: --
335: hr_api.cannot_find_prog_unit_error
336: (p_module_name => 'AME_MANDATORY_ATTRIBUTES'
337: ,p_hook_type => 'AD');
338: --
339: end;
340: --