DBA Data[Home] [Help]

APPS.GMD_FORMULA_DETAIL_PUB dependencies on GMD_COMMON_VAL

Line 482: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,

478:
479: -- Kapil ME Auto-Prod :Bug#5716318
480: /* Product Qty Calculation after Inserting a Record */
481: IF l_formula_calc_flag = 'Y' THEN
482: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,
483: x_return_status => x_return_status,
484: x_msg_count => x_msg_count,
485: x_msg_data => x_msg_data);
486: END IF;

Line 761: IF NOT GMD_COMMON_VAL.Update_Allowed('FORMULA',l_formula_id) THEN

757: /* Check if this formula can be changed - if this formula is
758: On-Hold or Obsolete or Frozen or Requested for Approval -
759: the change of this formula is prevented */
760: /* Check if update is allowed */
761: IF NOT GMD_COMMON_VAL.Update_Allowed('FORMULA',l_formula_id) THEN
762: FND_MESSAGE.SET_NAME('GMD','GMD_CANNOT_UPD_ENTITY');
763: FND_MESSAGE.SET_TOKEN('NAME', 'formula');
764: FND_MESSAGE.SET_TOKEN('ID', l_formula_id);
765: FND_MESSAGE.SET_TOKEN('NO', p_formula_detail_rec.formula_no);

Line 1463: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,

1459: -- Kapil ME Auto-Prod :Bug#5716318
1460: /* To calculate Product Quantity after updating a record if the Parameter is set to yes */
1461: IF l_auto_calc = 'Y' THEN
1462: IF l_formula_calc_flag = 'Y' THEN
1463: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,
1464: x_return_status => x_return_status,
1465: x_msg_count => x_msg_count,
1466: x_msg_data => x_msg_data);
1467: END IF;

Line 1707: IF NOT GMD_COMMON_VAL.Update_Allowed('FORMULA',l_formula_id) THEN

1703: ELSE
1704: l_formula_id := p_formula_detail_rec.formula_id;
1705: END IF;
1706:
1707: IF NOT GMD_COMMON_VAL.Update_Allowed('FORMULA',l_formula_id) THEN
1708: FND_MESSAGE.SET_NAME('GMD','GMD_CANNOT_UPD_ENTITY');
1709: FND_MESSAGE.SET_TOKEN('NAME', 'formula');
1710: FND_MESSAGE.SET_TOKEN('ID', l_formula_id);
1711: FND_MESSAGE.SET_TOKEN('NO', p_formula_detail_rec.formula_no);

Line 1793: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,

1789: OPEN C_get_auto_parameter (l_formula_id);
1790: FETCH C_get_auto_parameter INTO l_auto_calc_flag;
1791: CLOSE C_get_auto_parameter;
1792: IF l_auto_calc_flag = 'Y' THEN
1793: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,
1794: x_return_status => x_return_status,
1795: x_msg_count => x_msg_count,
1796: x_msg_data => x_msg_data);
1797: END IF;