DBA Data[Home] [Help]

APPS.PAY_CON_SHD dependencies on PAY_US_CONTRIBUTION_HISTORY

Line 36: If (p_constraint_name = 'PAY_US_CONTRIBUTION_HISTORY_PK') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'PAY_US_CONTRIBUTION_HISTORY_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','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'PAY_US_CONTRIBUTION_HISTORY_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','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'PAY_US_CONTRIBUTION_HISTORY_UK') Then
42: --hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIl');
43: --hr_utility.set_message_token('PROCEDURE', l_proc);
44: --hr_utility.set_message_token('STEP','10');
45: hr_utility.set_message(801, 'PAY_CONTRIB_HIST_NOT_UNIQUE');

Line 115: from pay_us_contribution_history

111: contr_information28,
112: contr_information29,
113: contr_information30,
114: object_version_number
115: from pay_us_contribution_history
116: where contr_history_id = p_contr_history_id;
117: --
118: l_proc varchar2(72) := g_package||'api_updating';
119: l_fct_ret boolean;

Line 228: from pay_us_contribution_history

224: contr_information28,
225: contr_information29,
226: contr_information30,
227: object_version_number
228: from pay_us_contribution_history
229: where contr_history_id = p_contr_history_id
230: for update nowait;
231: --
232: l_proc varchar2(72) := g_package||'lck';

Line 271: hr_utility.set_message_token('TABLE_NAME', 'pay_us_contribution_history');

267: -- The object is locked therefore we need to supply a meaningful
268: -- error message.
269: --
270: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
271: hr_utility.set_message_token('TABLE_NAME', 'pay_us_contribution_history');
272: hr_utility.raise_error;
273: End lck;
274: --
275: -- ----------------------------------------------------------------------------