DBA Data[Home] [Help]

APPS.PAY_TFU_SHD dependencies on PAY_TEMPLATE_FF_USAGES

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

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

Line 55: from pay_template_ff_usages

51: ,formula_id
52: ,object_id
53: ,object_version_number
54: ,exclusion_rule_id
55: from pay_template_ff_usages
56: where template_ff_usage_id = p_template_ff_usage_id;
57: --
58: l_fct_ret boolean;
59: --

Line 126: from pay_template_ff_usages

122: ,formula_id
123: ,object_id
124: ,object_version_number
125: ,exclusion_rule_id
126: from pay_template_ff_usages
127: where template_ff_usage_id = p_template_ff_usage_id
128: for update nowait;
129: --
130: l_proc varchar2(72) := g_package||'lck';

Line 175: fnd_message.set_token('TABLE_NAME', 'pay_template_ff_usages');

171: -- The object is locked therefore we need to supply a meaningful
172: -- error message.
173: --
174: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
175: fnd_message.set_token('TABLE_NAME', 'pay_template_ff_usages');
176: fnd_message.raise_error;
177: End lck;
178: --
179: -- ----------------------------------------------------------------------------