DBA Data[Home] [Help]

APPS.AME_ACT_SHD dependencies on AME_ACTIONS

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

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

54: ,description
55: ,security_group_id
56: ,parameter_two
57: ,object_version_number
58: from ame_actions
59: where action_id = p_action_id
60: and action_type_id = p_action_type_id
61: and p_effective_date
62: between start_date and nvl(end_date - ame_util.oneSecond,p_effective_date);

Line 150: update ame_actions t

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

Line 199: from ame_actions

195: ,description
196: ,security_group_id
197: ,parameter_two
198: ,object_version_number
199: from ame_actions
200: where action_id = p_action_id
201: and action_type_id = p_action_type_id
202: and p_effective_date
203: between start_date and nvl(end_date - ame_util.oneSecond, sysdate)

Line 291: fnd_message.set_token('TABLE_NAME', 'ame_actions');

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

Line 350: from ame_actions t

346: -- get the next ovn
347: --
348: select nvl(max(t.object_version_number),0) + 1
349: into l_ovn
350: from ame_actions t
351: where t.action_id = p_action_id
352: and t.action_type_id = p_action_type_id;
353: --
354: -- Return the new object_version_number.