DBA Data[Home] [Help]

APPS.PQH_WKS_SHD dependencies on PQH_WORKSHEETS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_WORKSHEETS_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_WORKSHEETS_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_WORKSHEETS_FK2') Then
27: hr_utility.set_message(8302, 'PQH_WKS_REC_EXISTS');
28: hr_utility.raise_error;
29: ElsIf (p_constraint_name = 'PQH_WORKSHEETS_PK') Then
30: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 29: ElsIf (p_constraint_name = 'PQH_WORKSHEETS_PK') Then

25: hr_utility.raise_error;
26: ElsIf (p_constraint_name = 'PQH_WORKSHEETS_FK2') Then
27: hr_utility.set_message(8302, 'PQH_WKS_REC_EXISTS');
28: hr_utility.raise_error;
29: ElsIf (p_constraint_name = 'PQH_WORKSHEETS_PK') Then
30: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
31: hr_utility.set_message_token('PROCEDURE', l_proc);
32: hr_utility.set_message_token('STEP','15');
33: hr_utility.raise_error;

Line 71: from pqh_worksheets

67: object_version_number,
68: budget_version_id,
69: propagation_method,
70: wf_transaction_category_id
71: from pqh_worksheets
72: where worksheet_id = p_worksheet_id;
73: --
74: l_proc varchar2(72) := g_package||'api_updating';
75: l_fct_ret boolean;

Line 153: from pqh_worksheets

149: object_version_number,
150: budget_version_id,
151: propagation_method,
152: wf_transaction_category_id
153: from pqh_worksheets
154: where worksheet_id = p_worksheet_id
155: for update nowait;
156: --
157: l_proc varchar2(72) := g_package||'lck';

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

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', 'pqh_worksheets');
197: hr_utility.raise_error;
198: End lck;
199: --
200: -- ----------------------------------------------------------------------------