DBA Data[Home] [Help]

APPS.GMD_LINEAR_EVALUATE dependencies on GMD_API_GRP

Line 56: GMD_API_GRP.log_message('GMD_NO_SOLUTION');

52: IF P_mx(l_col*(P_n-1) + P_n) = 0 THEN
53: IF l_debug = 'Y' THEN
54: gmd_debug.put_line(' Cannot evaluate as the divisor is zero at i:'||P_n||' j:'||P_n);
55: END IF;
56: GMD_API_GRP.log_message('GMD_NO_SOLUTION');
57: RAISE FND_API.G_EXC_ERROR;
58: END IF;
59: /*P_mx(P_n)(P_n + 1) := ROUND(P_mx(P_n)(P_n+1)/P_mx(P_n)(P_n), 9);*/
60: P_mx(l_col*(P_n-1)+ P_n+1) := ROUND(P_mx(l_col*(P_n-1) + P_n+1)/P_mx(l_col*(P_n-1) + P_n), 9);

Line 83: GMD_API_GRP.log_message('GMD_NO_SOLUTION');

79: IF P_mx(l_col*(i-1) + i) = 0 THEN
80: IF l_debug = 'Y' THEN
81: gmd_debug.put_line(' Cannot evaluate as the divisor is zero at i:'||i||' j:'||i);
82: END IF;
83: GMD_API_GRP.log_message('GMD_NO_SOLUTION');
84: RAISE FND_API.G_EXC_ERROR;
85: END IF;
86: P_mx(l_col*(i-1)+ P_n+1) := ROUND((P_mx(l_col*(i-1)+ P_n+1) - X_sum) / P_mx(l_col*(i-1) + i), 9);
87: i := i - 1;

Line 392: GMD_API_GRP.log_message('GMD_NO_SOLUTION');

388: IF X_mxk(k) = 0 THEN
389: IF l_debug = 'Y' THEN
390: gmd_debug.put_line(' Cannot evaluate as the divisor is zero at i:'||k||' j:'||k);
391: END IF;
392: GMD_API_GRP.log_message('GMD_NO_SOLUTION');
393: RAISE FND_API.G_EXC_ERROR;
394: END IF;
395: X_divisor := 1/X_mxk(k);
396: WHILE j <= P_n LOOP