DBA Data[Home] [Help]

APPS.PAY_CNU_SHD dependencies on PAY_FR_CONTRIBUTION_USAGES

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PAY_FR_CONTRIBUTION_USAGES_FK1') Then
22: fnd_message.set_name('PAY', 'PAY_74895_CNU_BAD_BG');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 26: ElsIf (p_constraint_name = 'PAY_FR_CONTRIBUTION_USAGES_UK1') Then

22: fnd_message.set_name('PAY', 'PAY_74895_CNU_BAD_BG');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;
26: ElsIf (p_constraint_name = 'PAY_FR_CONTRIBUTION_USAGES_UK1') Then
27: fnd_message.set_name('PAY', 'PAY_74896_CNU_UNIQUE_VALUES');
28: fnd_message.set_token('PROCEDURE', l_proc);
29: fnd_message.set_token('STEP','10');
30: fnd_message.raise_error;

Line 74: from pay_fr_contribution_usages

70: ,rate_category
71: ,business_group_id
72: ,object_version_number
73: ,code_Rate_id
74: from pay_fr_contribution_usages
75: where contribution_usage_id = p_contribution_usage_id;
76: --
77: l_fct_ret boolean;
78: --

Line 154: from pay_fr_contribution_usages

150: ,rate_category
151: ,business_group_id
152: ,object_version_number
153: ,code_rate_id
154: from pay_fr_contribution_usages
155: where contribution_usage_id = p_contribution_usage_id
156: for update nowait;
157: --
158: l_proc varchar2(72) := g_package||'lck';

Line 197: fnd_message.set_token('TABLE_NAME', 'pay_fr_contribution_usages');

193: -- The object is locked therefore we need to supply a meaningful
194: -- error message.
195: --
196: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
197: fnd_message.set_token('TABLE_NAME', 'pay_fr_contribution_usages');
198: fnd_message.raise_error;
199: End lck;
200: --
201: -- ----------------------------------------------------------------------------