DBA Data[Home] [Help]

APPS.GME_UPDATE_STEP_QTY_PVT dependencies on STANDARD

Line 702: /* Get the standard factor and uom type from the capacity uom */

698: RETURN;
699: END IF;
700:
701: IF x_max_cap_uom IS NOT NULL THEN
702: /* Get the standard factor and uom type from the capacity uom */
703: OPEN cur_get_std_factor (x_max_cap_uom);
704:
705: FETCH cur_get_std_factor
706: INTO x_um_type, x_std_factor;

Line 713: gme_debug.put_line('Standard Factor: '||x_std_factor);

709:
710: x_std_capacity := x_max_cap * x_std_factor;
711:
712: IF NVL (g_debug, -1) = gme_debug.g_log_statement THEN
713: gme_debug.put_line('Standard Factor: '||x_std_factor);
714: gme_debug.put_line('Standard Capacity: '||x_std_capacity);
715: END IF;
716:
717: --Bug2617151

Line 714: gme_debug.put_line('Standard Capacity: '||x_std_capacity);

710: x_std_capacity := x_max_cap * x_std_factor;
711:
712: IF NVL (g_debug, -1) = gme_debug.g_log_statement THEN
713: gme_debug.put_line('Standard Factor: '||x_std_factor);
714: gme_debug.put_line('Standard Capacity: '||x_std_capacity);
715: END IF;
716:
717: --Bug2617151
718: OPEN cur_get_tolerance;