DBA Data[Home] [Help]

APPS.CN_API dependencies on CN_CALC_FORMULAS

Line 1521: RETURN cn_calc_formulas.itd_flag%TYPE IS

1517: --| ---------------------------------------------------------------------=
1518: --| Function Name : Get Itd Flag
1519: --| ---------------------------------------------------------------------=
1520: FUNCTION get_itd_flag(p_calc_formula_id NUMBER)
1521: RETURN cn_calc_formulas.itd_flag%TYPE IS
1522:
1523: l_itd_flag cn_calc_formulas.itd_flag%TYPE;
1524:
1525: BEGIN

Line 1523: l_itd_flag cn_calc_formulas.itd_flag%TYPE;

1519: --| ---------------------------------------------------------------------=
1520: FUNCTION get_itd_flag(p_calc_formula_id NUMBER)
1521: RETURN cn_calc_formulas.itd_flag%TYPE IS
1522:
1523: l_itd_flag cn_calc_formulas.itd_flag%TYPE;
1524:
1525: BEGIN
1526:
1527: SELECT itd_flag

Line 1529: FROM cn_calc_formulas_all

1525: BEGIN
1526:
1527: SELECT itd_flag
1528: INTO l_itd_flag
1529: FROM cn_calc_formulas_all
1530: WHERE calc_formula_id = p_calc_formula_id ;
1531:
1532: RETURN l_itd_flag;
1533: EXCEPTION