DBA Data[Home] [Help]

APPS.AME_STV_SHD dependencies on AME_STRING_VALUES

Line 21: If (p_constraint_name = 'AME_STRING_VALUES_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'AME_STRING_VALUES_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 55: from ame_string_values

51: ,start_date
52: ,end_date
53: ,security_group_id
54: ,object_version_number
55: from ame_string_values
56: where condition_id = p_condition_id
57: and string_value = p_string_value
58: and p_effective_date
59: between start_date

Line 147: update ame_string_values t

143: --
144: -- Update the specified datetrack row setting the effective
145: -- end date to the specified new effective end date.
146: --
147: update ame_string_values t
148: set t.end_date = p_new_end_date
149: ,t.last_updated_by = l_current_user_id
150: ,t.last_update_date = p_new_end_date
151: ,t.last_update_login = l_current_user_id

Line 195: from ame_string_values

191: ,start_date
192: ,end_date
193: ,security_group_id
194: ,object_version_number
195: from ame_string_values
196: where condition_id = p_condition_id
197: and string_value = p_string_value
198: and p_effective_date
199: between start_date and nvl(end_date - ame_util.oneSecond, p_effective_date)

Line 306: fnd_message.set_token('TABLE_NAME', 'ame_string_values');

302: -- The object is locked therefore we need to supply a meaningful
303: -- error message.
304: --
305: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
306: fnd_message.set_token('TABLE_NAME', 'ame_string_values');
307: fnd_message.raise_error;
308: End lck;
309: --
310: -- ----------------------------------------------------------------------------

Line 359: from ame_string_values t

355: -- get the next ovn
356: --
357: select nvl(max(t.object_version_number),0) + 1
358: into l_ovn
359: from ame_string_values t
360: where t.condition_id = p_condition_id
361: and t.string_value = p_string_value;
362: --
363: -- Return the new object_version_number.