DBA Data[Home] [Help]

APPS.CN_API dependencies on CN_CALC_FORMULAS

Line 1499: RETURN cn_calc_formulas.itd_flag%TYPE IS

1495: --| ---------------------------------------------------------------------=
1496: --| Function Name : Get Itd Flag
1497: --| ---------------------------------------------------------------------=
1498: FUNCTION get_itd_flag(p_calc_formula_id NUMBER)
1499: RETURN cn_calc_formulas.itd_flag%TYPE IS
1500:
1501: l_itd_flag cn_calc_formulas.itd_flag%TYPE;
1502:
1503: BEGIN

Line 1501: l_itd_flag cn_calc_formulas.itd_flag%TYPE;

1497: --| ---------------------------------------------------------------------=
1498: FUNCTION get_itd_flag(p_calc_formula_id NUMBER)
1499: RETURN cn_calc_formulas.itd_flag%TYPE IS
1500:
1501: l_itd_flag cn_calc_formulas.itd_flag%TYPE;
1502:
1503: BEGIN
1504:
1505: SELECT itd_flag

Line 1507: FROM cn_calc_formulas_all

1503: BEGIN
1504:
1505: SELECT itd_flag
1506: INTO l_itd_flag
1507: FROM cn_calc_formulas_all
1508: WHERE calc_formula_id = p_calc_formula_id ;
1509:
1510: RETURN l_itd_flag;
1511: EXCEPTION