DBA Data[Home] [Help]

APPS.GMD_FORMULA_PUB dependencies on FM_FORM_MST_B

Line 34: FOR C_status_code IN (Select formula_status from fm_form_mst_b

30:
31: l_status_meaning GMD_STATUS.meaning%TYPE;
32:
33: BEGIN
34: FOR C_status_code IN (Select formula_status from fm_form_mst_b
35: where formula_id = vFormula_id) LOOP
36: OPEN get_status_meaning(C_status_code.formula_status);
37: FETCH get_status_meaning INTO l_status_meaning;
38: CLOSE get_status_meaning;

Line 149: (formula_id FM_FORM_MST_B.FORMULA_ID%TYPE

145: l_formula_detail_tbl GMD_FORMULA_DETAIL_PUB.formula_insert_dtl_tbl_type;
146:
147: --kkillams, bug 3408799
148: TYPE rec_formula IS RECORD
149: (formula_id FM_FORM_MST_B.FORMULA_ID%TYPE
150: ,owner_organization_id FM_FORM_MST_B.owner_organization_id%TYPE
151: );
152: TYPE tbl_formula_id IS TABLE OF rec_formula INDEX BY BINARY_INTEGER;
153:

Line 150: ,owner_organization_id FM_FORM_MST_B.owner_organization_id%TYPE

146:
147: --kkillams, bug 3408799
148: TYPE rec_formula IS RECORD
149: (formula_id FM_FORM_MST_B.FORMULA_ID%TYPE
150: ,owner_organization_id FM_FORM_MST_B.owner_organization_id%TYPE
151: );
152: TYPE tbl_formula_id IS TABLE OF rec_formula INDEX BY BINARY_INTEGER;
153:
154: l_entity_status gmd_api_grp.status_rec_type;