DBA Data[Home] [Help]

APPS.FF_FORMULAS_F_PKG dependencies on PAY_STATUS_PROCESSING_RULES_F

Line 82: -- Cursor to check if the formula is referenced in pay_status_processing_rules_f table.

78: where piv.formula_id = p_formula_id
79: and piv.effective_start_date <= p_validation_end_date
80: and piv.effective_end_date >= p_validation_start_date;
81: --
82: -- Cursor to check if the formula is referenced in pay_status_processing_rules_f table.
83: --
84: cursor csr_stat_proc_rule is
85: select psr.formula_id
86: from pay_status_processing_rules_f psr

Line 86: from pay_status_processing_rules_f psr

82: -- Cursor to check if the formula is referenced in pay_status_processing_rules_f table.
83: --
84: cursor csr_stat_proc_rule is
85: select psr.formula_id
86: from pay_status_processing_rules_f psr
87: where psr.formula_id = p_formula_id
88: and psr.effective_start_date <= p_validation_end_date
89: and psr.effective_end_date >= p_validation_start_date;
90: