DBA Data[Home] [Help]

APPS.PQH_DFS_SHD dependencies on PQH_DFLT_FUND_SRCS

Line 22: If (p_constraint_name = 'PQH_DFLT_FUND_SRCS_FK1') Then

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

Line 27: ElsIf (p_constraint_name = 'PQH_DFLT_FUND_SRCS_FK2') Then

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

Line 32: ElsIf (p_constraint_name = 'PQH_DFLT_FUND_SRCS_PK') Then

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

Line 71: from pqh_dflt_fund_srcs

67: expenditure_type,
68: organization_id,
69: object_version_number,
70: cost_allocation_keyflex_id
71: from pqh_dflt_fund_srcs
72: where dflt_fund_src_id = p_dflt_fund_src_id;
73: --
74: l_proc varchar2(72) := g_package||'api_updating';
75: l_fct_ret boolean;

Line 150: from pqh_dflt_fund_srcs

146: expenditure_type,
147: organization_id,
148: object_version_number,
149: cost_allocation_keyflex_id
150: from pqh_dflt_fund_srcs
151: where dflt_fund_src_id = p_dflt_fund_src_id
152: for update nowait;
153: --
154: l_proc varchar2(72) := g_package||'lck';

Line 193: hr_utility.set_message_token('TABLE_NAME', 'pqh_dflt_fund_srcs');

189: -- The object is locked therefore we need to supply a meaningful
190: -- error message.
191: --
192: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
193: hr_utility.set_message_token('TABLE_NAME', 'pqh_dflt_fund_srcs');
194: hr_utility.raise_error;
195: End lck;
196: --
197: -- ----------------------------------------------------------------------------