DBA Data[Home] [Help]

APPS.GMD_LCF_ENGINE dependencies on GMD_DEBUG

Line 67: gmd_debug.put_line('Warning:ConvertToBlob:'||l_warning);

63: blob_csid => 0,
64: lang_context => l_lang_context,
65: warning => l_warning);
66: IF l_debug = 'Y' THEN
67: gmd_debug.put_line('Warning:ConvertToBlob:'||l_warning);
68: END IF;
69: COMMIT;
70: dbms_lob.FreeTemporary(l_clob);
71: EXCEPTION

Line 74: gmd_debug.put_line(l_api_name||':'||sqlerrm);

70: dbms_lob.FreeTemporary(l_clob);
71: EXCEPTION
72: WHEN OTHERS THEN
73: IF l_debug = 'Y' THEN
74: gmd_debug.put_line(l_api_name||':'||sqlerrm);
75: END IF;
76: FND_MSG_PUB.Add_Exc_Msg(l_package_name, l_api_name);
77: END insert_clob;
78:

Line 180: gmd_debug.put_line(l_api_name||':'||sqlerrm);

176: dbms_lob.writeAppend(l_clob, length(l_line_str), l_line_str);
177: EXCEPTION
178: WHEN OTHERS THEN
179: IF l_debug = 'Y' THEN
180: gmd_debug.put_line(l_api_name||':'||sqlerrm);
181: END IF;
182: FND_MSG_PUB.Add_Exc_Msg(l_package_name, l_api_name);
183: END print_data;
184:

Line 255: gmd_debug.put_line(l_api_name||':'||sqlerrm);

251: dbms_lob.writeAppend(l_clob, length(l_string), l_string);
252: EXCEPTION
253: WHEN OTHERS THEN
254: IF l_debug = 'Y' THEN
255: gmd_debug.put_line(l_api_name||':'||sqlerrm);
256: END IF;
257: FND_MSG_PUB.Add_Exc_Msg(l_package_name, l_api_name);
258: END print_constraints;
259:

Line 361: gmd_debug.put_line(l_api_name||':'||sqlerrm);

357:
358: EXCEPTION
359: WHEN OTHERS THEN
360: IF l_debug = 'Y' THEN
361: gmd_debug.put_line(l_api_name||':'||sqlerrm);
362: END IF;
363: FND_MSG_PUB.Add_Exc_Msg(l_package_name, l_api_name);
364: END print_debug;
365:

Line 531: gmd_debug.put_line('LPReadTable:');

527: l_rhs NUMBER;
528: l_temp NUMBER;
529: BEGIN
530: IF l_debug = 'Y' THEN
531: gmd_debug.put_line('LPReadTable:');
532: END IF;
533:
534: /* initialize return status */
535: x_return_status := FND_API.g_ret_sts_success;

Line 542: gmd_debug.put_line('LGP:Cons:'||P_constraints||' Var:'||P_variables||' Total Var:'||x_variables);

538: /* calculate the actual number of variables */
539: x_variables := P_variables + 2*P_constraints;
540:
541: IF l_debug = 'Y' THEN
542: gmd_debug.put_line('LGP:Cons:'||P_constraints||' Var:'||P_variables||' Total Var:'||x_variables);
543: END IF;
544:
545: /* Initialize the arrays */
546: FOR i IN 0..P_constraints + 1 LOOP

Line 597: gmd_debug.put_line('i:'||'Low:'||l_iLo||' High:'||l_iHi||'Cons:'||x_con(i)||' Pen Low:'||l_pen_low||' Pen Hi:'||l_pen_high);

593: END LOOP;
594: END IF; /* IF l_rhs < 0 */
595:
596: IF l_log_level = 1 THEN
597: gmd_debug.put_line('i:'||'Low:'||l_iLo||' High:'||l_iHi||'Cons:'||x_con(i)||' Pen Low:'||l_pen_low||' Pen Hi:'||l_pen_high);
598: END IF;
599:
600: X_var(l_iLo) := X_con(i)||'+';
601:

Line 705: gmd_debug.put_line('LPSolve:Cons:'||P_constraints||' Var:'||P_variables||' Max Iter:'||l_max_iterations);

701: /* set maximum number of iterations */
702: l_max_iterations := 10 * P_constraints;
703:
704: IF l_debug = 'Y' THEN
705: gmd_debug.put_line('LPSolve:Cons:'||P_constraints||' Var:'||P_variables||' Max Iter:'||l_max_iterations);
706: END IF;
707:
708: /* set up artificial costs */
709: FOR i IN 1..P_constraints LOOP

Line 768: gmd_debug.put_line('Solution is implementable:');

764:
765: /*if we get here, solution is implementable */
766:
767: IF l_debug = 'Y' THEN
768: gmd_debug.put_line('Solution is implementable:');
769: FOR i IN 1..P_constraints LOOP
770: l_print_line := NULL;
771: FOR j IN 1..P_variables LOOP
772: l_print_line := l_print_line||x_matrix(i)(j)||' ';

Line 774: gmd_debug.put_line(l_print_line);

770: l_print_line := NULL;
771: FOR j IN 1..P_variables LOOP
772: l_print_line := l_print_line||x_matrix(i)(j)||' ';
773: END LOOP;
774: gmd_debug.put_line(l_print_line);
775: END LOOP;
776: END IF;
777:
778: /* set to actual costs */

Line 851: gmd_debug.put_line('At Iteration#'||l_iteration||' Value is:'||(-1*x_matrix(l_cost_row)(0))||' Entering is:'||x_basic(l_leave));

847: /* increment iteration count */
848: l_iteration := l_iteration + 1;
849: -- utl_file.put_line(l_file, 'At Iteration#'||l_iteration||' Value is:'||ROUND((-1*x_matrix(l_cost_row)(0)), 9)||' Entering is:'||x_basic(l_leave));
850: IF l_debug = 'Y' THEN
851: gmd_debug.put_line('At Iteration#'||l_iteration||' Value is:'||(-1*x_matrix(l_cost_row)(0))||' Entering is:'||x_basic(l_leave));
852: END IF;
853:
854: IF l_iteration > l_max_iterations THEN
855: X_return := 2; -- max iterations