DBA Data[Home] [Help]

APPS.PER_PEA_SHD dependencies on PER_PERSON_ANALYSES

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

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PER_PERSON_ANALYSES_FK1') Then
37: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
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 = 'PER_PERSON_ANALYSES_FK2') Then

37: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
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 = 'PER_PERSON_ANALYSES_FK2') Then
42: hr_utility.set_message(800, 'PER_52091_PEA_INV_ANA_CRI_ID');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'PER_PERSON_ANALYSES_PK') Then

42: hr_utility.set_message(800, 'PER_52091_PEA_INV_ANA_CRI_ID');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'PER_PERSON_ANALYSES_PK') Then
47: hr_utility.set_message(801, 'HR_7220_INVALID_PRIMARY_KEY');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 110: from per_person_analyses

106: attribute18,
107: attribute19,
108: attribute20,
109: object_version_number
110: from per_person_analyses
111: where person_analysis_id = p_person_analysis_id;
112: --
113: l_proc varchar2(72) := g_package||'api_updating';
114: l_fct_ret boolean;

Line 214: from per_person_analyses

210: attribute18,
211: attribute19,
212: attribute20,
213: object_version_number
214: from per_person_analyses
215: where person_analysis_id = p_person_analysis_id
216: for update nowait;
217: --
218: l_proc varchar2(72) := g_package||'lck';

Line 274: hr_utility.set_message_token('TABLE_NAME', 'per_person_analyses');

270: -- The object is locked therefore we need to supply a meaningful
271: -- error message.
272: --
273: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
274: hr_utility.set_message_token('TABLE_NAME', 'per_person_analyses');
275: hr_utility.raise_error;
276: End lck;
277: --
278: -- ----------------------------------------------------------------------------