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.6.12000000.3 2007/01/26 23:08:42 snene 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.6.12000000.3 2007/01/26 23:08:42 snene 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 988: gme_update_step_qty_pvt.update_resources

984: l_gme_batchstep_activities.actual_activity_factor := NULL;
985: END IF;
986:
987: /* Let us update all the resources attached to the activity */
988: gme_update_step_qty_pvt.update_resources
989: (p_batch_hdr_rec => p_batch_hdr_rec
990: ,p_batch_step_rec => p_batch_step_rec
991: ,p_batchstep_activities_rec => l_gme_batchstep_activities
992: ,x_return_status => l_return_status

Line 1036: fnd_msg_pub.add_exc_msg ('gme_update_step_qty_pvt'

1032: ,l_gme_calc_int_rsrc_usage_char
1033: ,'PROFILE'
1034: ,l_user_profile_option_name);
1035: ELSE
1036: fnd_msg_pub.add_exc_msg ('gme_update_step_qty_pvt'
1037: ,'UPDATE_ACTIVITIES');
1038: END IF;
1039: WHEN OTHERS THEN
1040: IF g_debug <= gme_debug.g_log_unexpected THEN

Line 2142: gme_update_step_qty_pvt.reduce_pending_usage

2138: RAISE fnd_api.g_exc_error;
2139: END IF;
2140:
2141: /* Step 1 : */
2142: gme_update_step_qty_pvt.reduce_pending_usage
2143: (p_batch_step_resources_rec => p_batch_step_resources_rec
2144: ,x_return_status => l_return_status);
2145:
2146: IF l_return_status <> x_return_status THEN

Line 2675: gme_update_step_qty_pvt.calculate_mass_vol_qty(

2671: RAISE error_in_clear_charges;
2672: END IF;
2673:
2674: /*calculate mass qty and vol qty by calling routine */
2675: gme_update_step_qty_pvt.calculate_mass_vol_qty(
2676: p_batch_step_rec => x_batchstep_rec
2677: );
2678:
2679: IF l_step_rec.step_status > gme_common_pvt.g_step_pending THEN

Line 2692: gme_update_step_qty_pvt.calc_charge (

2688: gme_debug.put_line('Mass Qty: '||l_mass_qty||' Volume Qty: '||l_vol_qty);
2689: END IF;
2690:
2691: /* we have the max capacity and resource here */
2692: gme_update_step_qty_pvt.calc_charge (
2693: p_step_id => l_step_rec.batchstep_id
2694: ,p_resources => l_resource
2695: ,p_mass_qty => l_mass_qty
2696: ,p_vol_qty => l_vol_qty

Line 2734: END gme_update_step_qty_pvt;

2730: END IF;
2731: x_return_status := fnd_api.g_ret_sts_unexp_error;
2732: END recalculate_charges;
2733:
2734: END gme_update_step_qty_pvt;