DBA Data[Home] [Help]

APPS.GME_SCALE_BATCH_PVT dependencies on GME_SCALE_BATCH_PVT

Line 1: PACKAGE BODY gme_scale_batch_pvt AS

1: PACKAGE BODY gme_scale_batch_pvt AS
2: /* $Header: GMEVSCBB.pls 120.10.12010000.3 2009/06/17 09:14:30 apmishra ship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: /************************************************************
5: REM* Oracle Process Manufacturing Process Execution APIs *

Line 27: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_SCALE_BATCH_PVT';

23: REM* 8515551resource transactions and hence putting the condition not to make it NULL for WIP cases
24: ************************************************************/
25:
26: /* Global variables */
27: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_SCALE_BATCH_PVT';
28:
29: PROCEDURE scale_batch (
30: p_batch_header_rec IN gme_batch_header%ROWTYPE
31: ,p_scale_factor IN NUMBER

Line 140: gme_scale_batch_pvt.scale_batch

136: i := i + 1;
137: l_material_tab (i) := l_rec;
138: END LOOP;
139:
140: gme_scale_batch_pvt.scale_batch
141: (p_batch_header_rec => p_batch_header_rec
142: ,p_material_tbl => l_material_tab
143: ,p_scale_factor => p_scale_factor
144: ,p_primaries => p_primaries

Line 499: gme_scale_batch_pvt.get_total_qty (p_material_tbl

495: -- call for getting the total_output qty before the scaling.
496: IF p_batch_header_rec.batch_status <> 0
497: AND p_batch_header_rec.poc_ind = 'Y' THEN
498: before_scale_qty :=
499: gme_scale_batch_pvt.get_total_qty (p_material_tbl
500: ,p_batch_header_rec);
501: END IF;
502:
503: gmd_common_scale.scale (p_scale_tab => l_scale_tab

Line 637: gme_scale_batch_pvt.get_total_qty (x_material_tbl

633: -- call for getting the total_output qty after the scaling.
634: IF p_batch_header_rec.batch_status <> 0
635: AND p_batch_header_rec.poc_ind = 'Y' THEN
636: after_scale_qty :=
637: gme_scale_batch_pvt.get_total_qty (x_material_tbl
638: ,p_batch_header_rec);
639: END IF;
640:
641: /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

Line 754: gme_scale_batch_pvt.scale_batch

750:
751: x_batch_header_rec := l_batch_header;
752: /* FPBug#4648936
753: Phantom batch will be scaled based on plan quantity always */
754: gme_scale_batch_pvt.scale_batch
755: (p_batch_header_rec => l_batch_header
756: ,p_scale_factor => l_scale_factor
757: ,p_primaries => 'OUTPUTS'
758: ,p_qty_type => 1 --p_qty_type

Line 1118: gme_scale_batch_pvt.get_total_qty (l_material_details

1114: END LOOP;
1115:
1116: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN
1117: before_scale_qty :=
1118: gme_scale_batch_pvt.get_total_qty (l_material_details
1119: ,l_batch_header);
1120: END IF;
1121:
1122: l_in_scale_tab := l_scale_tab;

Line 1175: gme_scale_batch_pvt.get_total_qty (x_material_details

1171: END LOOP;
1172:
1173: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN
1174: after_scale_qty :=
1175: gme_scale_batch_pvt.get_total_qty (x_material_details
1176: ,l_batch_header);
1177: END IF;
1178:
1179: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN

Line 1617: END gme_scale_batch_pvt;

1613: END IF;
1614:
1615: x_return_status := fnd_api.g_ret_sts_unexp_error;
1616: END scale_step_and_rsrc;
1617: END gme_scale_batch_pvt;