DBA Data[Home] [Help]

APPS.AME_CFV_DEL dependencies on AME_CONFIG_VARS

Line 71: delete from ame_config_vars

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

Line 83: delete from ame_config_vars

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_config_vars
84: where application_id = p_rec.application_id
85: and variable_name = p_rec.variable_name
86: and start_date >= p_validation_start_date;*/
87: --

Line 338: (p_module_name => 'AME_CONFIG_VARS'

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