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.8.12000000.2 2007/01/26 23:07:16 snene ship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: /************************************************************
5: REM* Oracle Process Manufacturing Process Execution APIs *

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

20: REM* get_substitute_line_item in scale_batch overloaded procedure. *
21: ************************************************************/
22:
23: /* Global variables */
24: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_SCALE_BATCH_PVT';
25:
26: PROCEDURE scale_batch (
27: p_batch_header_rec IN gme_batch_header%ROWTYPE
28: ,p_scale_factor IN NUMBER

Line 134: gme_scale_batch_pvt.scale_batch

130: i := i + 1;
131: l_material_tab (i) := l_rec;
132: END LOOP;
133:
134: gme_scale_batch_pvt.scale_batch
135: (p_batch_header_rec => p_batch_header_rec
136: ,p_material_tbl => l_material_tab
137: ,p_scale_factor => p_scale_factor
138: ,p_primaries => p_primaries

Line 493: gme_scale_batch_pvt.get_total_qty (p_material_tbl

489: -- call for getting the total_output qty before the scaling.
490: IF p_batch_header_rec.batch_status <> 0
491: AND p_batch_header_rec.poc_ind = 'Y' THEN
492: before_scale_qty :=
493: gme_scale_batch_pvt.get_total_qty (p_material_tbl
494: ,p_batch_header_rec);
495: END IF;
496:
497: gmd_common_scale.scale (p_scale_tab => l_scale_tab

Line 631: gme_scale_batch_pvt.get_total_qty (x_material_tbl

627: -- call for getting the total_output qty after the scaling.
628: IF p_batch_header_rec.batch_status <> 0
629: AND p_batch_header_rec.poc_ind = 'Y' THEN
630: after_scale_qty :=
631: gme_scale_batch_pvt.get_total_qty (x_material_tbl
632: ,p_batch_header_rec);
633: END IF;
634:
635: /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

Line 748: gme_scale_batch_pvt.scale_batch

744:
745: x_batch_header_rec := l_batch_header;
746: /* FPBug#4648936
747: Phantom batch will be scaled based on plan quantity always */
748: gme_scale_batch_pvt.scale_batch
749: (p_batch_header_rec => l_batch_header
750: ,p_scale_factor => l_scale_factor
751: ,p_primaries => 'OUTPUTS'
752: ,p_qty_type => 1 --p_qty_type

Line 1108: gme_scale_batch_pvt.get_total_qty (l_material_details

1104: END LOOP;
1105:
1106: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN
1107: before_scale_qty :=
1108: gme_scale_batch_pvt.get_total_qty (l_material_details
1109: ,l_batch_header);
1110: END IF;
1111:
1112: l_in_scale_tab := l_scale_tab;

Line 1165: gme_scale_batch_pvt.get_total_qty (x_material_details

1161: END LOOP;
1162:
1163: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN
1164: after_scale_qty :=
1165: gme_scale_batch_pvt.get_total_qty (x_material_details
1166: ,l_batch_header);
1167: END IF;
1168:
1169: IF l_batch_header.batch_status <> 0 AND l_batch_header.poc_ind = 'Y' THEN

Line 1607: END gme_scale_batch_pvt;

1603: END IF;
1604:
1605: x_return_status := fnd_api.g_ret_sts_unexp_error;
1606: END scale_step_and_rsrc;
1607: END gme_scale_batch_pvt;