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.16.12010000.1 2008/07/25 10:31:59 appldev 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.16.12010000.1 2008/07/25 10:31:59 appldev ship $
3: *****************************************************************
4: * *
5: * Package GME_RESOURCE_ENGINE_PVT *
6: * *
7: * Contents CREATE_PENDING_TRANS *
8: * CREATE_COMPLETED_TRANS *
9: * UPDATE_PENDING_TRANS *

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

31: *****************************************************************
32: */
33: /* Global variables */
34: g_debug VARCHAR2 (5) := fnd_profile.VALUE ('AFLOG_LEVEL');
35: g_pkg_name CONSTANT VARCHAR2 (30) := 'GME_RESOURCE_ENGINE_PVT';
36:
37: /*===========================================================================================
38: Procedure
39: fetch_all_resources

Line 1184: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec

1180: --rishi 3446787 03/03/04
1181: -- commented the call to check_primary_resorce as it is already being called
1182: -- by validate_resource above.
1183: /*
1184: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec
1185: ,x_return_status => l_return_status);
1186: IF l_return_status <> x_return_status THEN
1187: RAISE FND_API.g_exc_error;
1188: END IF;

Line 1242: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec

1238: ELSIF p_action_code = 'DELETE' THEN
1239: /* Remove this call as per Resource TD page 57 */
1240: /* Call to be made from GME_API_PUB.save_batch */
1241: /*
1242: GME_RESOURCE_ENGINE_PVT.check_primary_resource (p_step_resources_rec => x_step_resources_rec
1243: ,x_return_status => l_return_status);
1244: IF l_return_status <> x_return_status THEN
1245: RAISE FND_API.g_exc_error;
1246: END IF;

Line 1376: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1372: || SQLERRM);
1373: END IF;
1374:
1375: x_return_status := fnd_api.g_ret_sts_unexp_error;
1376: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1377: ,'resource_dtl_process');
1378: END resource_dtl_process;
1379:
1380: /*===========================================================================================

Line 1546: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1542: || SQLERRM);
1543: END IF;
1544:
1545: x_return_status := fnd_api.g_ret_sts_unexp_error;
1546: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1547: ,'VALIDATE_RESOURCE');
1548: END validate_resource;
1549:
1550: /*===========================================================================================

Line 1685: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1681: || SQLERRM);
1682: END IF;
1683:
1684: x_return_status := fnd_api.g_ret_sts_unexp_error;
1685: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1686: ,'CHECK_PRIMARY_RESOURCE');
1687: END check_primary_resource;
1688:
1689: /*===========================================================================================

Line 1774: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1770: WHEN fnd_api.g_exc_error THEN
1771: x_return_status := fnd_api.g_ret_sts_error;
1772: WHEN OTHERS THEN
1773: x_return_status := fnd_api.g_ret_sts_unexp_error;
1774: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1775: ,'CHECK_PRIMARY_RESOURCE');
1776: END check_primary_resource;
1777:
1778: /*===========================================================================================

Line 1879: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'

1875: || SQLERRM);
1876: END IF;
1877:
1878: x_return_status := fnd_api.g_ret_sts_unexp_error;
1879: fnd_msg_pub.add_exc_msg ('GME_RESOURCE_ENGINE_PVT'
1880: ,'GET_RESOURCE_USAGE');
1881: END get_resource_usage;
1882:
1883: /*===========================================================================================

Line 2622: gme_resource_engine_pvt.fetch_active_resources

2618: gme_debug.put_line(g_pkg_name||'.'||l_api_name||' Transactions Loaded '||l_rsrc_trans_count);
2619: END IF;
2620:
2621: l_rsrc_txn_rec.line_id := l_line_id;
2622: gme_resource_engine_pvt.fetch_active_resources
2623: (p_resource_rec => l_rsrc_txn_rec
2624: ,x_resource_tbl => l_resource_tbl
2625: ,x_return_status => l_return_status);
2626:

Line 3917: END gme_resource_engine_pvt;

3913:
3914: x_return_status := fnd_api.g_ret_sts_unexp_error;
3915: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
3916: END end_cmplt_actual_rsrc_txn;
3917: END gme_resource_engine_pvt;