DBA Data[Home] [Help]

APPS.BEN_ACT_SHD dependencies on BEN_PERSON_ACTIONS

Line 36: If (p_constraint_name = 'BEN_PERSON_ACTIONS_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_PERSON_ACTIONS_FK1') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'BEN_PERSON_ACTIONS_PK') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'BEN_PERSON_ACTIONS_PK') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 77: from ben_person_actions

73: benefit_action_id,
74: action_status_cd,
75: chunk_number,
76: object_version_number
77: from ben_person_actions
78: where person_action_id = p_person_action_id;
79: --
80: l_proc varchar2(72) := g_package||'api_updating';
81: l_fct_ret boolean;

Line 153: from ben_person_actions

149: benefit_action_id,
150: action_status_cd,
151: chunk_number,
152: object_version_number
153: from ben_person_actions
154: where person_action_id = p_person_action_id
155: for update nowait;
156: --
157: l_proc varchar2(72) := g_package||'lck';

Line 196: hr_utility.set_message_token('TABLE_NAME', 'ben_person_actions');

192: -- The object is locked therefore we need to supply a meaningful
193: -- error message.
194: --
195: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
196: hr_utility.set_message_token('TABLE_NAME', 'ben_person_actions');
197: hr_utility.raise_error;
198: End lck;
199: --
200: -- ----------------------------------------------------------------------------