DBA Data[Home] [Help]

APPS.AME_CFV_SHD dependencies on AME_CONFIG_VARS

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'AME_CONFIG_VARS_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 57: from ame_config_vars

53: ,start_date
54: ,end_date
55: ,security_group_id
56: ,object_version_number
57: from ame_config_vars
58: where application_id = p_application_id
59: and variable_name = p_variable_name
60: and p_effective_date
61: between start_date

Line 149: update ame_config_vars t

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

Line 198: from ame_config_vars

194: ,start_date
195: ,end_date
196: ,security_group_id
197: ,object_version_number
198: from ame_config_vars
199: where application_id = p_application_id
200: and variable_name = p_variable_name
201: and p_effective_date
202: between start_date and nvl(end_date - ame_util.oneSecond, p_effective_date)

Line 290: fnd_message.set_token('TABLE_NAME', 'ame_config_vars');

286: -- The object is locked therefore we need to supply a meaningful
287: -- error message.
288: --
289: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
290: fnd_message.set_token('TABLE_NAME', 'ame_config_vars');
291: fnd_message.raise_error;
292: End lck;
293: --
294: -- ----------------------------------------------------------------------------

Line 347: from ame_config_vars t

343: -- get the next ovn
344: --
345: select nvl(max(t.object_version_number),0) + 1
346: into l_ovn
347: from ame_config_vars t
348: where t.application_id = p_application_id
349: and t.variable_name = p_variable_name;
350: --
351: -- Return the new object_version_number.