DBA Data[Home] [Help]

APPS.GME_RESOURCE_ENGINE_PVT dependencies on GME_RESOURCE_ENGINE_PVT

Line 1: PACKAGE BODY gme_resource_engine_pvt AS

1: PACKAGE BODY gme_resource_engine_pvt AS
2: /* $Header: GMEVRXNB.pls 120.20.12020000.2 2013/03/21 17:39:53 gmurator ship $
3: *****************************************************************
4: * *
5: * Package GME_RESOURCE_ENGINE_PVT *

Line 5: * Package GME_RESOURCE_ENGINE_PVT *

1: PACKAGE BODY gme_resource_engine_pvt AS
2: /* $Header: GMEVRXNB.pls 120.20.12020000.2 2013/03/21 17:39:53 gmurator ship $
3: *****************************************************************
4: * *
5: * Package GME_RESOURCE_ENGINE_PVT *
6: * *
7: * Contents CREATE_PENDING_TRANS *
8: * CREATE_COMPLETED_TRANS *
9: * UPDATE_PENDING_TRANS *

Line 57: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_RESOURCE_ENGINE_PVT';

53: *****************************************************************
54: */
55: /* Global variables */
56: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
57: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_RESOURCE_ENGINE_PVT';
58:
59: /*===========================================================================================
60: Procedure
61: fetch_all_resources

Line 1300: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec

1296: --rishi 3446787 03/03/04
1297: -- commented the call to check_primary_resorce as it is already being called
1298: -- by validate_resource above.
1299: /*
1300: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec
1301: ,x_return_status => l_return_status);
1302: IF l_return_status <> x_return_status THEN
1303: RAISE FND_API.g_exc_error;
1304: END IF;

Line 1362: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec

1358: ELSIF p_action_code = 'DELETE' THEN
1359: /* Remove this call as per Resource TD page 57 */
1360: /* Call to be made from GME_API_PUB.save_batch */
1361: /*
1362: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec
1363: ,x_return_status => l_return_status);
1364: IF l_return_status <> x_return_status THEN
1365: RAISE FND_API.g_exc_error;
1366: END IF;

Line 1496: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1492: || SQLERRM);
1493: END IF;
1494:
1495: x_return_status := fnd_api.g_ret_sts_unexp_error;
1496: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1497: ,'resource_dtl_process');
1498: END resource_dtl_process;
1499:
1500: /*===========================================================================================

Line 1666: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1662: || SQLERRM);
1663: END IF;
1664:
1665: x_return_status := fnd_api.g_ret_sts_unexp_error;
1666: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1667: ,'VALIDATE_RESOURCE');
1668: END validate_resource;
1669:
1670: /*===========================================================================================

Line 1805: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1801: || SQLERRM);
1802: END IF;
1803:
1804: x_return_status := fnd_api.g_ret_sts_unexp_error;
1805: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1806: ,'CHECK_PRIMARY_RESOURCE');
1807: END check_primary_resource;
1808:
1809: /*===========================================================================================

Line 1894: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1890: WHEN fnd_api.g_exc_error THEN
1891: x_return_status := fnd_api.g_ret_sts_error;
1892: WHEN OTHERS THEN
1893: x_return_status := fnd_api.g_ret_sts_unexp_error;
1894: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1895: ,'CHECK_PRIMARY_RESOURCE');
1896: END check_primary_resource;
1897:
1898: /*===========================================================================================

Line 1999: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1995: || SQLERRM);
1996: END IF;
1997:
1998: x_return_status := fnd_api.g_ret_sts_unexp_error;
1999: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
2000: ,'GET_RESOURCE_USAGE');
2001: END get_resource_usage;
2002:
2003: /*===========================================================================================

Line 2745: gme_resource_engine_pvt.fetch_active_resources

2741: gme_debug.put_line(g_pkg_name||'.'||l_api_name||' Transactions Loaded '||l_rsrc_trans_count);
2742: END IF;
2743:
2744: l_rsrc_txn_rec.line_id := l_line_id;
2745: gme_resource_engine_pvt.fetch_active_resources
2746: (p_resource_rec => l_rsrc_txn_rec
2747: ,x_resource_tbl => l_resource_tbl
2748: ,x_return_status => l_return_status);
2749:

Line 4112: END gme_resource_engine_pvt;

4108:
4109: x_return_status := fnd_api.g_ret_sts_unexp_error;
4110: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
4111: END end_cmplt_actual_rsrc_txn;
4112: END gme_resource_engine_pvt;