DBA Data[Home] [Help]

APPS.PAY_PWR_SHD dependencies on PAY_WCI_RATES

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

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

69: rate,
70: description,
71: comments,
72: object_version_number
73: from pay_wci_rates
74: where rate_id = p_rate_id;
75: --
76: l_proc varchar2(72) := g_package||'api_updating';
77: l_fct_ret boolean;

Line 150: from pay_wci_rates

146: rate,
147: description,
148: comments,
149: object_version_number
150: from pay_wci_rates
151: where rate_id = p_rate_id
152: for update nowait;
153: --
154: l_proc varchar2(72) := g_package||'lck';

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

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', 'pay_wci_rates');
194: hr_utility.raise_error;
195: End lck;
196: --
197: -- ----------------------------------------------------------------------------