DBA Data[Home] [Help]

APPS.PQH_RTM_SHD dependencies on PQH_ROLE_TEMPLATES

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_ROLE_TEMPLATES_FK1') Then
22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;

Line 26: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_FK2') Then

22: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
23: hr_utility.set_message_token('PROCEDURE', l_proc);
24: hr_utility.set_message_token('STEP','5');
25: hr_utility.raise_error;
26: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_FK2') Then
27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;

Line 31: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_FK3') Then

27: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
28: hr_utility.set_message_token('PROCEDURE', l_proc);
29: hr_utility.set_message_token('STEP','10');
30: hr_utility.raise_error;
31: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_FK3') Then
32: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
33: hr_utility.set_message_token('PROCEDURE', l_proc);
34: hr_utility.set_message_token('STEP','15');
35: hr_utility.raise_error;

Line 36: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_UK1') Then

32: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
33: hr_utility.set_message_token('PROCEDURE', l_proc);
34: hr_utility.set_message_token('STEP','15');
35: hr_utility.raise_error;
36: ElsIf (p_constraint_name = 'PQH_ROLE_TEMPLATES_UK1') 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','20');
40: hr_utility.raise_error;

Line 81: from pqh_role_templates

77: transaction_category_id,
78: template_id,
79: enable_flag,
80: object_version_number
81: from pqh_role_templates
82: where role_template_id = p_role_template_id;
83: --
84: l_proc varchar2(72) := g_package||'api_updating';
85: l_fct_ret boolean;

Line 156: from pqh_role_templates

152: transaction_category_id,
153: template_id,
154: enable_flag,
155: object_version_number
156: from pqh_role_templates
157: where role_template_id = p_role_template_id
158: for update nowait;
159: --
160: l_proc varchar2(72) := g_package||'lck';

Line 199: hr_utility.set_message_token('TABLE_NAME', 'pqh_role_templates');

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