DBA Data[Home] [Help]

APPS.GME_API_GRP dependencies on GME_API_GRP

Line 1: PACKAGE BODY gme_api_grp AS

1: PACKAGE BODY gme_api_grp AS
2: /* $Header: GMEGAPIB.pls 120.34.12010000.1 2008/07/25 10:28:35 appldev ship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_API_GRP';
5:

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

1: PACKAGE BODY gme_api_grp AS
2: /* $Header: GMEGAPIB.pls 120.34.12010000.1 2008/07/25 10:28:35 appldev ship $ */
3: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
4: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_API_GRP';
5:
6: PROCEDURE gme_pre_process_txns (
7: p_header_id IN NUMBER
8: ,x_return_status OUT NOCOPY VARCHAR2)

Line 627: fnd_msg_pub.add_exc_msg ('GME_API_GRP'

623: EXCEPTION
624: WHEN expected_err THEN
625: x_return_status := fnd_api.g_ret_sts_error;
626: WHEN OTHERS THEN
627: fnd_msg_pub.add_exc_msg ('GME_API_GRP'
628: ,'UPDATE_STEP_QUALITY_STATUS');
629: x_return_status := fnd_api.g_ret_sts_unexp_error;
630: END update_step_quality_status;
631:

Line 1093: -- gme_api_grp.log_message calls replaced by gme_common_pvt.log_message

1089: -- org_id, from and to batch_no, start and end dates.
1090: --
1091: -- HISTORY:
1092: -- Sivakumar.G FPBug#4351032 08-DEC-2005
1093: -- gme_api_grp.log_message calls replaced by gme_common_pvt.log_message
1094: -- Namit Singhi FPBug#5674398 01-JAN-2007
1095: -- Modified for ingred sub enhancement FP
1096: ======================================================================*/
1097: PROCEDURE substitute_ingredients (

Line 1243: l_ingred_sub_date := gme_api_grp.get_ingr_sub_date(rec.batch_id,rec.material_detail_id);

1239: CLOSE get_msg;
1240: END IF;
1241:
1242: -- nsinghi bug#5674398. Pass the ingredient substitution date rather than the material requirement date
1243: l_ingred_sub_date := gme_api_grp.get_ingr_sub_date(rec.batch_id,rec.material_detail_id);
1244:
1245: /* Though this call returns a table, we will be looking at the 1st record of the table */
1246: gmdfmval_pub.get_substitute_line_item (pformulaline_id => rec.formulaline_id,
1247: pitem_id => rec.inventory_item_id,

Line 2032: gme_debug.put_line('Entering gme_api_grp.get_total_quantity with batch id '||p_batch_id);

2028: uom_conversion_failure EXCEPTION ;
2029: invalid_batch_id EXCEPTION ;
2030: BEGIN
2031: IF (NVL (g_debug, -1) = gme_debug.g_log_procedure) THEN
2032: gme_debug.put_line('Entering gme_api_grp.get_total_quantity with batch id '||p_batch_id);
2033: END IF;
2034:
2035: IF p_batch_id IS NULL THEN
2036: gme_common_pvt.log_message ('GME_INVALID_BATCH','ID','BATCH_ID');

Line 2971: END gme_api_grp;

2967: IF (NVL (g_debug, -1) = gme_debug.g_log_unexpected) THEN
2968: gme_debug.put_line(g_pkg_name|| '.'|| l_api_name|| ':'|| 'WHEN OTHERS:'|| SQLERRM);
2969: END IF;
2970: END delete_resource_txn;
2971: END gme_api_grp;