DBA Data[Home] [Help]

APPS.BEN_AGF_SHD dependencies on BEN_AGE_FCTR

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

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

122: agf_attribute28,
123: agf_attribute29,
124: agf_attribute30,
125: object_version_number
126: from ben_age_fctr
127: where age_fctr_id = p_age_fctr_id;
128: --
129: l_proc varchar2(72) := g_package||'api_updating';
130: l_fct_ret boolean;

Line 241: from ben_age_fctr

237: agf_attribute28,
238: agf_attribute29,
239: agf_attribute30,
240: object_version_number
241: from ben_age_fctr
242: where age_fctr_id = p_age_fctr_id
243: for update nowait;
244: --
245: l_proc varchar2(72) := g_package||'lck';

Line 284: hr_utility.set_message_token('TABLE_NAME', 'ben_age_fctr');

280: -- The object is locked therefore we need to supply a meaningful
281: -- error message.
282: --
283: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
284: hr_utility.set_message_token('TABLE_NAME', 'ben_age_fctr');
285: hr_utility.raise_error;
286: End lck;
287: --
288: -- ----------------------------------------------------------------------------