DBA Data[Home] [Help]

APPS.PQH_WEL_SHD dependencies on PQH_WORKSHEET_BDGT_ELMNTS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_WORKSHEET_BDGT_ELMNTS_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;

Line 26: ElsIf (p_constraint_name = 'PQH_WORKSHEET_BDGT_ELMNTS_PK') 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_BDGT_ELMNTS_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;

Line 31: ElsIf (p_constraint_name = 'PQH_WORKSHEET_BDGT_ELMNTS_UK') 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_BDGT_ELMNTS_UK') Then
32: --
33: -- Code Changed to provide a more meaningful message on
34: -- unique constraint failure.
35: --

Line 73: from pqh_worksheet_bdgt_elmnts

69: worksheet_budget_set_id,
70: element_type_id,
71: distribution_percentage,
72: object_version_number
73: from pqh_worksheet_bdgt_elmnts
74: where worksheet_bdgt_elmnt_id = p_worksheet_bdgt_elmnt_id;
75: --
76: l_proc varchar2(72) := g_package||'api_updating';
77: l_fct_ret boolean;

Line 147: from pqh_worksheet_bdgt_elmnts

143: worksheet_budget_set_id,
144: element_type_id,
145: distribution_percentage,
146: object_version_number
147: from pqh_worksheet_bdgt_elmnts
148: where worksheet_bdgt_elmnt_id = p_worksheet_bdgt_elmnt_id
149: for update nowait;
150: --
151: l_proc varchar2(72) := g_package||'lck';

Line 190: hr_utility.set_message_token('TABLE_NAME', 'pqh_worksheet_bdgt_elmnts');

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