DBA Data[Home] [Help]

APPS.GMD_FORMULA_PUB dependencies on GMD_API_GRP

Line 154: l_entity_status gmd_api_grp.status_rec_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;
155: l_tbl_formula_id tbl_formula_id;
156: l_tbl_cnt NUMBER :=0;
157:
158:

Line 467: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN

463: FND_MSG_PUB.Add;
464: RAISE FND_API.G_EXC_ERROR;
465: ELSE
466: --Check the organization id passed is process enabled if not raise an error message
467: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN
468: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
469: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_formula_header_rec.owner_organization_id);
470: FND_MSG_PUB.Add;
471: RAISE FND_API.G_EXC_ERROR;

Line 475: GMD_API_GRP.FETCH_PARM_VALUES(P_orgn_id => p_formula_header_rec.owner_organization_id,

471: RAISE FND_API.G_EXC_ERROR;
472: END IF;
473: -- Kapil ME Auto-Prod :Bug# 5716318
474: /* Fetch the Organization Auto-Product qty calculate Parameter*/
475: GMD_API_GRP.FETCH_PARM_VALUES(P_orgn_id => p_formula_header_rec.owner_organization_id,
476: P_parm_name => 'GMD_AUTO_PROD_CALC',
477: P_parm_value => l_auto_calc,
478: X_return_status => X_return_status );
479: IF (l_auto_calc IS NULL OR l_auto_calc = 'N') AND p_formula_header_rec.AUTO_PRODUCT_CALC = 'Y' THEN

Line 759: gmd_api_grp.fetch_parm_values(P_orgn_id => p_formula_header_rec.owner_organization_id,

755: /* BEGIN BUG#2868184 Rameshwar Retrieving the value of profile and setting the flag value. */
756: /* For '0' and '2' with parameter value as False flag is set to 'F'. */
757: /* For 2 and paramter value True Flag is set to 'W' */
758:
759: gmd_api_grp.fetch_parm_values(P_orgn_id => p_formula_header_rec.owner_organization_id,
760: P_parm_name => 'GMD_ZERO_INGREDIENT_QTY',
761: P_parm_value => l_profile,
762: X_return_status => X_return_status);
763:

Line 873: gmd_api_grp.get_status_details (V_entity_type => 'FORMULA',

869: FOR i IN 1 .. l_tbl_formula_id.COUNT
870:
871: LOOP
872: --Getting the default status for the owner orgn code or null orgn of recipe from parameters table
873: gmd_api_grp.get_status_details (V_entity_type => 'FORMULA',
874: V_orgn_id => l_tbl_formula_id(i).owner_organization_id,
875: X_entity_status => l_entity_status);
876: -- Check for any experimental items when formula status is apfgu.
877: IF (l_entity_status.status_type = 700) THEN

Line 1249: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN

1245:
1246: --Check that organization id is not null if raise an error message
1247: IF (p_formula_header_rec.owner_organization_id IS NOT NULL) THEN
1248: --Check the organization id passed is process enabled if not raise an error message
1249: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN
1250: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
1251: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_formula_header_rec.owner_organization_id);
1252: FND_MSG_PUB.Add;
1253: RAISE FND_API.G_EXC_ERROR;