DBA Data[Home] [Help]

APPS.GMD_FORMULA_DETAIL_PUB dependencies on GMD_COMMON_VAL

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

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

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

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

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

1478: -- Kapil ME Auto-Prod :Bug#5716318
1479: /* To calculate Product Quantity after updating a record if the Parameter is set to yes */
1480: IF l_auto_calc = 'Y' THEN
1481: IF l_formula_calc_flag = 'Y' THEN
1482: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,
1483: x_return_status => x_return_status,
1484: x_msg_count => x_msg_count,
1485: x_msg_data => x_msg_data);
1486: END IF;

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

1722: ELSE
1723: l_formula_id := p_formula_detail_rec.formula_id;
1724: END IF;
1725:
1726: IF NOT GMD_COMMON_VAL.Update_Allowed('FORMULA',l_formula_id) THEN
1727: FND_MESSAGE.SET_NAME('GMD','GMD_CANNOT_UPD_ENTITY');
1728: FND_MESSAGE.SET_TOKEN('NAME', 'formula');
1729: FND_MESSAGE.SET_TOKEN('ID', l_formula_id);
1730: FND_MESSAGE.SET_TOKEN('NO', p_formula_detail_rec.formula_no);

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

1807: OPEN C_get_auto_parameter (l_formula_id);
1808: FETCH C_get_auto_parameter INTO l_auto_calc_flag;
1809: CLOSE C_get_auto_parameter;
1810: IF l_auto_calc_flag = 'Y' THEN
1811: GMD_COMMON_VAL.Calculate_Total_Product_Qty( p_formula_id =>l_formula_id ,
1812: x_return_status => x_return_status,
1813: x_msg_count => x_msg_count,
1814: x_msg_data => x_msg_data);
1815: END IF;