DBA Data[Home] [Help]

APPS.FF_FORMULA_WEBUI_PKG dependencies on FF_FORMULAS_F

Line 37: from ff_formulas_f a

33: -- It is highly unlikely that this name will clash, but we check
34: -- just to be on the safe side
35: select null into l_dummy from dual where exists
36: (select null
37: from ff_formulas_f a
38: where a.formula_name = l_tmp_name
39: and a.formula_type_id = p_formula_type_id
40: and
41: ( l_startup_mode = 'MASTER'

Line 185: ff_formulas_f_pkg.insert_row(

181: --
182: -- Enable multi-messaging
183: hr_multi_message.enable_message_list;
184: --
185: ff_formulas_f_pkg.insert_row(
186: x_rowid => p_rowid,
187: x_formula_id => p_formula_id,
188: x_effective_start_date => p_effective_start_date,
189: x_effective_end_date => p_effective_end_date,

Line 246: ff_formulas_f_pkg.update_row(

242: --
243: -- Enable multi-messaging
244: hr_multi_message.enable_message_list;
245: --
246: ff_formulas_f_pkg.update_row(
247: x_rowid => p_rowid,
248: x_formula_id => p_formula_id,
249: x_effective_start_date => p_effective_start_date,
250: x_effective_end_date => p_effective_end_date,

Line 299: ff_formulas_f_pkg.delete_row(

295: --
296: -- Enable multi-messaging
297: hr_multi_message.enable_message_list;
298: --
299: ff_formulas_f_pkg.delete_row(
300: x_rowid => p_rowid,
301: x_formula_id => p_formula_id,
302: x_dt_delete_mode => p_dt_delete_mode,
303: x_validation_start_date => p_validation_start_date,

Line 341: ff_formulas_f_pkg.lock_row(

337: --
338: -- Enable multi-messaging
339: hr_multi_message.enable_message_list;
340: --
341: ff_formulas_f_pkg.lock_row(
342: x_rowid => p_rowid,
343: x_last_update_date => p_last_update_date
344: );
345: --

Line 468: ff_formulas_f_pkg.insert_row (

464: pragma autonomous_transaction;
465: --
466: begin
467: --
468: ff_formulas_f_pkg.insert_row (
469: x_rowid => p_rowid,
470: x_formula_id => p_formula_id,
471: x_effective_start_date => p_effective_start_date,
472: x_effective_end_date => p_effective_end_date,

Line 499: ff_formulas_f_pkg.delete_row(

495: pragma autonomous_transaction;
496: --
497: begin
498: --
499: ff_formulas_f_pkg.delete_row(
500: x_rowid => p_rowid,
501: x_formula_id => p_formula_id,
502: x_dt_delete_mode => 'ZAP',
503: x_validation_start_date => fnd_date.canonical_to_date('0001/01/01'),