DBA Data[Home] [Help]

APPS.AME_ACA_SHD dependencies on AME_CALLING_APPS

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

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

53: ,start_date
54: ,end_date
55: ,security_group_id
56: ,object_version_number
57: from ame_calling_apps
58: where application_id = p_application_id
59: and p_effective_date
60: between start_date
61: and nvl(end_date - ame_util.oneSecond,p_effective_date);

Line 145: update ame_calling_apps t

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

Line 193: from ame_calling_apps

189: ,start_date
190: ,end_date
191: ,security_group_id
192: ,object_version_number
193: from ame_calling_apps
194: where application_id = p_application_id
195: and p_effective_date
196: between start_date and nvl(end_date - ame_util.oneSecond, p_effective_date)
197: for update nowait;

Line 284: fnd_message.set_token('TABLE_NAME', 'ame_calling_apps');

280: -- The object is locked therefore we need to supply a meaningful
281: -- error message.
282: --
283: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
284: fnd_message.set_token('TABLE_NAME', 'ame_calling_apps');
285: fnd_message.raise_error;
286: End lck;
287: --
288: -- ----------------------------------------------------------------------------

Line 342: from ame_calling_apps t

338: -- get the next ovn
339: --
340: select nvl(max(t.object_version_number),0) + 1
341: into l_ovn
342: from ame_calling_apps t
343: where t.application_id = p_application_id;
344: --
345: -- Return the new object_version_number.
346: --