DBA Data[Home] [Help]

APPS.PQH_WPR_SHD dependencies on PQH_WORKSHEET_PERIODS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PQH_WORKSHEET_PERIODS_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_PERIODS_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_PERIODS_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_PERIODS_FK3') 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_PERIODS_FK3') 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_PERIODS_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;
36: ElsIf (p_constraint_name = 'PQH_WORKSHEET_PERIODS_PK') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','20');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'PQH_WORKSHEET_PERIODS_UK') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','20');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'PQH_WORKSHEET_PERIODS_UK') Then
42: --
43: -- Code Changed to provide a more meaningful message on
44: -- unique constraint failure.
45: --

Line 95: from pqh_worksheet_periods

91: start_time_period_id,
92: budget_unit3_available,
93: budget_unit2_available,
94: budget_unit1_available
95: from pqh_worksheet_periods
96: where worksheet_period_id = p_worksheet_period_id;
97: --
98: l_proc varchar2(72) := g_package||'api_updating';
99: l_fct_ret boolean;

Line 181: from pqh_worksheet_periods

177: start_time_period_id,
178: budget_unit3_available,
179: budget_unit2_available,
180: budget_unit1_available
181: from pqh_worksheet_periods
182: where worksheet_period_id = p_worksheet_period_id
183: for update nowait;
184: --
185: l_proc varchar2(72) := g_package||'lck';

Line 224: hr_utility.set_message_token('TABLE_NAME', 'pqh_worksheet_periods');

220: -- The object is locked therefore we need to supply a meaningful
221: -- error message.
222: --
223: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
224: hr_utility.set_message_token('TABLE_NAME', 'pqh_worksheet_periods');
225: hr_utility.raise_error;
226: End lck;
227: --
228: -- ----------------------------------------------------------------------------