DBA Data[Home] [Help]

APPS.GMD_FORMULA_PUB dependencies on GMD_API_GRP

Line 152: l_entity_status gmd_api_grp.status_rec_type;

148: ,owner_organization_id FM_FORM_MST_B.owner_organization_id%TYPE
149: );
150: TYPE tbl_formula_id IS TABLE OF rec_formula INDEX BY BINARY_INTEGER;
151:
152: l_entity_status gmd_api_grp.status_rec_type;
153: l_tbl_formula_id tbl_formula_id;
154: l_tbl_cnt NUMBER :=0;
155:
156:

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

432: FND_MSG_PUB.Add;
433: RAISE FND_API.G_EXC_ERROR;
434: ELSE
435: --Check the organization id passed is process enabled if not raise an error message
436: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN
437: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
438: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_formula_header_rec.owner_organization_id);
439: FND_MSG_PUB.Add;
440: RAISE FND_API.G_EXC_ERROR;

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

440: RAISE FND_API.G_EXC_ERROR;
441: END IF;
442: -- Kapil ME Auto-Prod :Bug# 5716318
443: /* Fetch the Organization Auto-Product qty calculate Parameter*/
444: GMD_API_GRP.FETCH_PARM_VALUES(P_orgn_id => p_formula_header_rec.owner_organization_id,
445: P_parm_name => 'GMD_AUTO_PROD_CALC',
446: P_parm_value => l_auto_calc,
447: X_return_status => X_return_status );
448: IF (l_auto_calc IS NULL OR l_auto_calc = 'N') AND p_formula_header_rec.AUTO_PRODUCT_CALC = 'Y' THEN

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

716: /* BEGIN BUG#2868184 Rameshwar Retrieving the value of profile and setting the flag value. */
717: /* For '0' and '2' with parameter value as False flag is set to 'F'. */
718: /* For 2 and paramter value True Flag is set to 'W' */
719:
720: gmd_api_grp.fetch_parm_values(P_orgn_id => p_formula_header_rec.owner_organization_id,
721: P_parm_name => 'ZERO_INGREDIENT_QTY',
722: P_parm_value => l_profile,
723: X_return_status => X_return_status);
724:

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

803: FOR i IN 1 .. l_tbl_formula_id.COUNT
804:
805: LOOP
806: --Getting the default status for the owner orgn code or null orgn of recipe from parameters table
807: gmd_api_grp.get_status_details (V_entity_type => 'FORMULA',
808: V_orgn_id => l_tbl_formula_id(i).owner_organization_id,
809: X_entity_status => l_entity_status);
810: -- Check for any experimental items when formula status is apfgu.
811: IF (l_entity_status.status_type = 700) THEN

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

1176:
1177: --Check that organization id is not null if raise an error message
1178: IF (p_formula_header_rec.owner_organization_id IS NOT NULL) THEN
1179: --Check the organization id passed is process enabled if not raise an error message
1180: IF NOT (gmd_api_grp.check_orgn_status(p_formula_header_rec.owner_organization_id)) THEN
1181: FND_MESSAGE.SET_NAME('GMD', 'GMD_INVALID_ORGANIZATION_ID');
1182: FND_MESSAGE.SET_TOKEN('ORGN_ID', p_formula_header_rec.owner_organization_id);
1183: FND_MSG_PUB.Add;
1184: RAISE FND_API.G_EXC_ERROR;