DBA Data[Home] [Help]

APPS.GME_UPDATE_STEP_QTY_PVT dependencies on GME_UPDATE_STEP_QTY_PVT

Line 1: PACKAGE BODY gme_update_step_qty_pvt AS

1: PACKAGE BODY gme_update_step_qty_pvt AS
2: /* $Header: GMEVUSQB.pls 120.15 2011/06/27 18:55:36 gmurator ship $ */
3: g_debug VARCHAR2 (5)
4: := fnd_profile.VALUE ('AFLOG_LEVEL');
5: g_pkg_name CONSTANT VARCHAR2 (30) := 'gme_update_step_qty_pvt';

Line 5: g_pkg_name CONSTANT VARCHAR2 (30) := 'gme_update_step_qty_pvt';

1: PACKAGE BODY gme_update_step_qty_pvt AS
2: /* $Header: GMEVUSQB.pls 120.15 2011/06/27 18:55:36 gmurator ship $ */
3: g_debug VARCHAR2 (5)
4: := fnd_profile.VALUE ('AFLOG_LEVEL');
5: g_pkg_name CONSTANT VARCHAR2 (30) := 'gme_update_step_qty_pvt';
6: p_gme_calc_int_rsrc_usage NUMBER := NULL;
7:
8: /*===========================================================================================
9: Procedure

Line 1087: gme_update_step_qty_pvt.update_resources

1083: l_gme_batchstep_activities.actual_activity_factor := NULL;
1084: END IF;
1085:
1086: /* Let us update all the resources attached to the activity */
1087: gme_update_step_qty_pvt.update_resources
1088: (p_batch_hdr_rec => p_batch_hdr_rec
1089: ,p_batch_step_rec => p_batch_step_rec
1090: ,p_batchstep_activities_rec => l_gme_batchstep_activities
1091: ,x_return_status => l_return_status

Line 1135: fnd_msg_pub.add_exc_msg ('gme_update_step_qty_pvt'

1131: ,l_gme_calc_int_rsrc_usage_char
1132: ,'PROFILE'
1133: ,l_user_profile_option_name);
1134: ELSE
1135: fnd_msg_pub.add_exc_msg ('gme_update_step_qty_pvt'
1136: ,'UPDATE_ACTIVITIES');
1137: END IF;
1138: WHEN OTHERS THEN
1139: IF g_debug <= gme_debug.g_log_unexpected THEN

Line 2267: gme_update_step_qty_pvt.reduce_pending_usage

2263: RAISE fnd_api.g_exc_error;
2264: END IF;
2265:
2266: /* Step 1 : */
2267: gme_update_step_qty_pvt.reduce_pending_usage
2268: (p_batch_step_resources_rec => p_batch_step_resources_rec
2269: ,x_return_status => l_return_status);
2270:
2271: IF l_return_status <> x_return_status THEN

Line 2905: gme_update_step_qty_pvt.calculate_mass_vol_qty(

2901: RAISE error_in_clear_charges;
2902: END IF;
2903:
2904: /*calculate mass qty and vol qty by calling routine */
2905: gme_update_step_qty_pvt.calculate_mass_vol_qty(
2906: p_batch_step_rec => x_batchstep_rec
2907: );
2908:
2909: IF l_step_rec.step_status > gme_common_pvt.g_step_pending THEN

Line 2922: gme_update_step_qty_pvt.calc_charge (

2918: gme_debug.put_line('Mass Qty: '||l_mass_qty||' Volume Qty: '||l_vol_qty);
2919: END IF;
2920:
2921: /* we have the max capacity and resource here */
2922: gme_update_step_qty_pvt.calc_charge (
2923: p_step_id => l_step_rec.batchstep_id
2924: ,p_resources => l_resource
2925: ,p_mass_qty => l_mass_qty
2926: ,p_vol_qty => l_vol_qty

Line 2964: END gme_update_step_qty_pvt;

2960: END IF;
2961: x_return_status := fnd_api.g_ret_sts_unexp_error;
2962: END recalculate_charges;
2963:
2964: END gme_update_step_qty_pvt;