DBA Data[Home] [Help]

APPS.GME_FPL_PVT dependencies on GME_FPL_PVT

Line 1: PACKAGE BODY gme_fpl_pvt AS

1: PACKAGE BODY gme_fpl_pvt AS
2: /* $Header: GMEVFPLB.pls 120.2.12010000.1 2008/11/06 03:43:02 srpuri noship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_FPL_PVT';
5:

Line 4: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_FPL_PVT';

1: PACKAGE BODY gme_fpl_pvt AS
2: /* $Header: GMEVFPLB.pls 120.2.12010000.1 2008/11/06 03:43:02 srpuri noship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_FPL_PVT';
5:
6: /*******************************************************/
7: /* Oracle Process Manufacturing Process Execution APIs */
8: /* */

Line 191: gme_debug.put_line('expected ERROR in gme_fpl_pvt.get_fixed_process_loss');

187:
188: EXCEPTION
189: WHEN expected_error THEN
190: IF g_debug <= gme_debug.g_log_procedure THEN
191: gme_debug.put_line('expected ERROR in gme_fpl_pvt.get_fixed_process_loss');
192: END IF;
193: RETURN;
194: WHEN OTHERS THEN
195: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

Line 276: gme_fpl_pvt.get_fixed_process_loss

272: -- Initialize output batch header
273: x_batch_header_rec := p_batch_header_rec;
274: x_material_tbl := p_material_tbl;
275:
276: gme_fpl_pvt.get_fixed_process_loss
277: (p_batch_id => p_batch_header_rec.batch_id
278: ,p_validity_rule_id => p_batch_header_rec.recipe_validity_rule_id
279: ,p_organization_id => p_organization_id
280: ,x_fixed_process_loss => l_fixed_process_loss

Line 573: gme_debug.put_line('before call to gme_fpl_pvt.apply_fixed_process_loss');

569: l_material_tbl (i) := l_rec;
570: END LOOP;
571:
572: IF NVL (g_debug, -1) = gme_debug.g_log_statement THEN
573: gme_debug.put_line('before call to gme_fpl_pvt.apply_fixed_process_loss');
574: END IF;
575: -- Initialize output batch header
576: x_batch_header_rec := p_batch_header_rec;
577: x_material_tbl := l_material_tbl;

Line 578: gme_fpl_pvt.apply_fixed_process_loss

574: END IF;
575: -- Initialize output batch header
576: x_batch_header_rec := p_batch_header_rec;
577: x_material_tbl := l_material_tbl;
578: gme_fpl_pvt.apply_fixed_process_loss
579: (p_batch_header_rec => p_batch_header_rec
580: ,p_material_tbl => l_material_tbl
581: ,p_organization_id => p_batch_header_rec.organization_id
582: ,p_creation_mode => 'OUTPUT'

Line 643: END gme_fpl_pvt;

639: ,x_data => x_message_list);
640: x_return_status := fnd_api.g_ret_sts_error;
641: END ;
642:
643: END gme_fpl_pvt;