DBA Data[Home] [Help]

APPS.AME_STV_DEL dependencies on AME_STRING_VALUES

Line 71: delete from ame_string_values

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

Line 83: delete from ame_string_values

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_string_values
84: where condition_id = p_rec.condition_id
85: and string_value = p_rec.string_value
86: and start_date >= p_validation_start_date;*/
87: --

Line 334: (p_module_name => 'AME_STRING_VALUES'

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