DBA Data[Home] [Help]

APPS.BEN_BFT_SHD dependencies on BEN_BENEFIT_ACTIONS

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'BEN_BENEFIT_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;

Line 41: ElsIf (p_constraint_name = 'BEN_BENEFIT_ACTIONS_DT9') 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_BENEFIT_ACTIONS_DT9') then
42: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
43: Else
44: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');
45: hr_utility.set_message_token('PROCEDURE', l_proc);

Line 42: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');

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_BENEFIT_ACTIONS_DT9') then
42: ben_utility.child_exists_error(p_table_name => 'BEN_BENEFIT_ACTIONS');
43: Else
44: hr_utility.set_message(801, 'HR_7877_API_INVALID_CONSTRAINT');
45: hr_utility.set_message_token('PROCEDURE', l_proc);
46: hr_utility.set_message_token('CONSTRAINT_NAME', p_constraint_name);

Line 170: from ben_benefit_actions

166: qual_type,
167: qual_status,
168: concat_segs,
169: grant_price_val
170: from ben_benefit_actions
171: where benefit_action_id = p_benefit_action_id;
172: --
173: l_proc varchar2(72) := g_package||'api_updating';
174: l_fct_ret boolean;

Line 342: from ben_benefit_actions

338: qual_type,
339: qual_status,
340: concat_segs,
341: grant_price_val
342: from ben_benefit_actions
343: where benefit_action_id = p_benefit_action_id
344: for update nowait;
345: --
346: l_proc varchar2(72) := g_package||'lck';

Line 385: hr_utility.set_message_token('TABLE_NAME', 'ben_benefit_actions');

381: -- The object is locked therefore we need to supply a meaningful
382: -- error message.
383: --
384: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
385: hr_utility.set_message_token('TABLE_NAME', 'ben_benefit_actions');
386: hr_utility.raise_error;
387: End lck;
388: --
389: -- ----------------------------------------------------------------------------