DBA Data[Home] [Help]

APPS.HRI_BPL_FAST_FORMULA dependencies on FF_FORMULAS_F_PKG

Line 740: -- Stores the last_update_date returned by ff_formulas_f_pkg.insert_row

736: PROCEDURE generate_performance_formula(p_business_group_id IN NUMBER
737: ,p_formula_text IN OUT NOCOPY VARCHAR)
738: IS
739: --
740: -- Stores the last_update_date returned by ff_formulas_f_pkg.insert_row
741: --
742: l_last_update_date DATE;
743: --
744: -- Stores the rowid returned by ff_formulas_f_pkg.insert_row

Line 744: -- Stores the rowid returned by ff_formulas_f_pkg.insert_row

740: -- Stores the last_update_date returned by ff_formulas_f_pkg.insert_row
741: --
742: l_last_update_date DATE;
743: --
744: -- Stores the rowid returned by ff_formulas_f_pkg.insert_row
745: --
746: l_Rowid VARCHAR2(240);
747: --
748: -- End of time

Line 752: -- Stores the formula_id returned by ff_formulas_f_pkg.insert_row

748: -- End of time
749: --
750: l_end_date DATE DEFAULT hr_general.end_of_time;
751: --
752: -- Stores the formula_id returned by ff_formulas_f_pkg.insert_row
753: --
754: l_Formula_Id ff_formulas_f.formula_id%TYPE DEFAULT NULL;
755: --
756: -- Stores the name of the fast formula that we are trying to save.

Line 792: ff_formulas_f_pkg.Insert_Row

788: -- the box. Any user created formula should not have this set, or else the
789: -- formula will not show up on the PUI if the bg's legislation is changed
790: -- l_legislation_code is set to null by default
791: --
792: ff_formulas_f_pkg.Insert_Row
793: (
794: X_Rowid => l_rowid
795: ,X_Formula_Id => l_formula_id
796: ,X_Effective_Start_Date => hr_general.start_of_time

Line 1416: ff_formulas_f_pkg.Delete_Row

1412: CLOSE csr_formula_rowid;
1413: --
1414: -- call API to delete the fast formula
1415: --
1416: ff_formulas_f_pkg.Delete_Row
1417: (
1418: X_Rowid => l_row_id
1419: ,X_Formula_Id => NULL
1420: ,X_Dt_Delete_Mode => 'DELETE'

Line 1467: ff_formulas_f_pkg.Delete_Row

1463: --
1464: FOR l_all_prfrmnc_formulas IN csr_all_prfrmnc_formulas
1465: LOOP
1466: --
1467: ff_formulas_f_pkg.Delete_Row
1468: (
1469: X_Rowid => l_all_prfrmnc_formulas.rowid
1470: ,X_Formula_Id => NULL
1471: ,X_Dt_Delete_Mode => 'DELETE'