DBA Data[Home] [Help]

APPS.PQH_WFS_SHD dependencies on PQH_WORKSHEET_FUND_SRCS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_WORKSHEET_FUND_SRCS_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_WORKSHEET_FUND_SRCS_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_WORKSHEET_FUND_SRCS_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_WORKSHEET_FUND_SRCS_PK') 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_WORKSHEET_FUND_SRCS_PK') 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_WORKSHEET_FUND_SRCS_UK') 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_WORKSHEET_FUND_SRCS_UK') Then
37: --
38: -- Code Changed to provide a more meaningful message on
39: -- unique constraint failure.
40: --

Line 83: from pqh_worksheet_fund_srcs

79: task_id,
80: expenditure_type,
81: organization_id,
82: object_version_number
83: from pqh_worksheet_fund_srcs
84: where worksheet_fund_src_id = p_worksheet_fund_src_id;
85: --
86: l_proc varchar2(72) := g_package||'api_updating';
87: l_fct_ret boolean;

Line 162: from pqh_worksheet_fund_srcs

158: task_id,
159: expenditure_type,
160: organization_id,
161: object_version_number
162: from pqh_worksheet_fund_srcs
163: where worksheet_fund_src_id = p_worksheet_fund_src_id
164: for update nowait;
165: --
166: l_proc varchar2(72) := g_package||'lck';

Line 205: hr_utility.set_message_token('TABLE_NAME', 'pqh_worksheet_fund_srcs');

201: -- The object is locked therefore we need to supply a meaningful
202: -- error message.
203: --
204: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
205: hr_utility.set_message_token('TABLE_NAME', 'pqh_worksheet_fund_srcs');
206: hr_utility.raise_error;
207: End lck;
208: --
209: -- ----------------------------------------------------------------------------