DBA Data[Home] [Help]

APPS.PAY_SF_SHD dependencies on PAY_SHADOW_FORMULAS

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

17: --
18: Begin
19: hr_utility.set_location('Entering:'||l_proc, 5);
20: --
21: If (p_constraint_name = 'PAY_SHADOW_FORMULAS_PK') 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 59: from pay_shadow_formulas

55: description,
56: formula_text,
57: formula_type_name,
58: object_version_number
59: from pay_shadow_formulas
60: where formula_id = p_formula_id;
61: --
62: l_proc varchar2(72) := g_package||'api_updating';
63: l_fct_ret boolean;

Line 137: from pay_shadow_formulas

133: description,
134: formula_text,
135: formula_type_name,
136: object_version_number
137: from pay_shadow_formulas
138: where formula_id = p_formula_id
139: for update nowait;
140: --
141: l_proc varchar2(72) := g_package||'lck';

Line 180: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_formulas');

176: -- The object is locked therefore we need to supply a meaningful
177: -- error message.
178: --
179: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
180: hr_utility.set_message_token('TABLE_NAME', 'pay_shadow_formulas');
181: hr_utility.raise_error;
182: End lck;
183: --
184: -- ----------------------------------------------------------------------------