DBA Data[Home] [Help]

APPS.PQH_BCE_SHD dependencies on PQH_BDGT_CMMTMNT_ELMNTS

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

18: --
19: Begin
20: hr_utility.set_location('Entering:'||l_proc, 5);
21: --
22: If (p_constraint_name = 'PQH_BDGT_CMMTMNT_ELMNTS_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_BDGT_CMMTMNT_ELMNTS_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_BDGT_CMMTMNT_ELMNTS_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_BDGT_CMMTMNT_ELMNTS_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_BDGT_CMMTMNT_ELMNTS_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 73: from pqh_bdgt_cmmtmnt_elmnts

69: formula_id,
70: dflt_elmnt_frequency,
71: overhead_percentage,
72: object_version_number
73: from pqh_bdgt_cmmtmnt_elmnts
74: where bdgt_cmmtmnt_elmnt_id = p_bdgt_cmmtmnt_elmnt_id;
75: --
76: l_proc varchar2(72) := g_package||'api_updating';
77: l_fct_ret boolean;

Line 154: from pqh_bdgt_cmmtmnt_elmnts

150: formula_id,
151: dflt_elmnt_frequency,
152: overhead_percentage,
153: object_version_number
154: from pqh_bdgt_cmmtmnt_elmnts
155: where bdgt_cmmtmnt_elmnt_id = p_bdgt_cmmtmnt_elmnt_id
156: for update nowait;
157: --
158: l_proc varchar2(72) := g_package||'lck';

Line 197: hr_utility.set_message_token('TABLE_NAME', 'pqh_bdgt_cmmtmnt_elmnts');

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