DBA Data[Home] [Help]

APPS.WMS_TASK_DISPATCH_PUT_AWAY dependencies on WMS_TASK_DISPATCH_PUT_AWAY

Line 1: PACKAGE BODY wms_task_dispatch_put_away AS

1: PACKAGE BODY wms_task_dispatch_put_away AS
2: /* $Header: WMSTKPTB.pls 120.26.12010000.3 2008/09/22 06:30:44 pbonthu ship $ */
3:
4:
5: -- Global constant holding the package name

Line 6: g_pkg_name CONSTANT VARCHAR2(30) := 'WMS_Task_Dispatch_put_away';

2: /* $Header: WMSTKPTB.pls 120.26.12010000.3 2008/09/22 06:30:44 pbonthu ship $ */
3:
4:
5: -- Global constant holding the package name
6: g_pkg_name CONSTANT VARCHAR2(30) := 'WMS_Task_Dispatch_put_away';
7:
8: /* FP-J Lot/Serial Support Enhancement
9: * Record type to store information for one serial number. This is used for
10: * inserting MTL_SERIAL_NUMBERS for the serial numbers in the LPN

Line 120: , p_module => 'WMS_Task_Dispatch_put_away'

116: -- l_msg:=l_ts||' '||msg;
117:
118: l_msg := msg;
119: inv_mobile_helper_functions.tracelog(p_err_msg => l_msg
120: , p_module => 'WMS_Task_Dispatch_put_away'
121: , p_level => 4);
122: --dbms_output.put_line(l_msg);
123: NULL;
124: END;

Line 804: wms_task_dispatch_put_away.create_mo_line(

800: IF (l_debug = 1) THEN
801: mydebug('create_mo: Header was passed. Calling create_mo_line');
802: END IF;
803:
804: wms_task_dispatch_put_away.create_mo_line(
805: p_org_id => l_org_id
806: , p_inventory_item_id => l_inventory_item_id
807: , p_qty => l_qty
808: , p_uom => l_uom

Line 852: inv_mobile_helper_functions.sql_error('WMS_Task_Dispatch_put_away.create_mo', '10', SQLCODE);

848: WHEN OTHERS THEN
849: x_return_status := fnd_api.g_ret_sts_unexp_error;
850:
851: IF SQLCODE IS NOT NULL THEN
852: inv_mobile_helper_functions.sql_error('WMS_Task_Dispatch_put_away.create_mo', '10', SQLCODE);
853: END IF;
854:
855: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
856: END create_mo;

Line 1447: wms_task_dispatch_put_away.create_mo(

1443: IF (l_debug = 1) THEN
1444: mydebug('suggestions_pub: Calling create_mo');
1445: END IF;
1446:
1447: wms_task_dispatch_put_away.create_mo(
1448: p_org_id => p_org_id
1449: , p_inventory_item_id => l_m_item
1450: , p_qty => l_m_qty
1451: , p_uom => l_m_uom

Line 2155: wms_task_dispatch_put_away.check_mmtt_mtl_status(

2151: IF (l_debug = 1) THEN
2152: mydebug('suggestions_pub: Checking mtl_status');
2153: END IF;
2154:
2155: wms_task_dispatch_put_away.check_mmtt_mtl_status(
2156: p_temp_id => l_transaction_temp_id
2157: , p_org_id => p_org_id
2158: , x_mtl_status => l_mtl_status
2159: , x_return_status => l_return_status

Line 7518: wms_task_dispatch_put_away.create_mo

7514: IF (l_debug = 1) THEN
7515: mydebug('create_mo_lpn: Calling create_mo');
7516: END IF;
7517:
7518: wms_task_dispatch_put_away.create_mo
7519: (p_org_id => p_org_id,
7520: p_inventory_item_id => l_m_item,
7521: p_qty => l_m_qty,
7522: p_uom => l_m_uom,

Line 7787: wms_task_dispatch_put_away.suggestions_pub(

7783: -- This allows for rules engine validation of the user inputted sub/loc
7784: -- Bug# 2752119
7785: -- Added an extra input parameter in API call so we will not check for
7786: -- crossdocking opportunities for rules validated express drops
7787: wms_task_dispatch_put_away.suggestions_pub(
7788: p_lpn_id => l_lpn_id
7789: , p_org_id => p_organization_id
7790: , p_user_id => p_user_id
7791: , p_eqp_ins => p_eqp_ins

Line 7877: wms_task_dispatch_put_away.revert_loc_suggested_capacity(

7873: IF (l_debug = 1) THEN
7874: mydebug('Call revert_loc_suggested_capacity to clean up capacities');
7875: END IF;
7876:
7877: wms_task_dispatch_put_away.revert_loc_suggested_capacity(
7878: x_return_status => l_return_status
7879: , x_msg_count => x_msg_count
7880: , x_msg_data => x_msg_data
7881: , p_organization_id => p_organization_id

Line 7958: wms_task_dispatch_put_away.revert_loc_suggested_capacity(

7954: IF (l_debug = 1) THEN
7955: mydebug('Call revert_loc_suggested_capacity to clean up capacities');
7956: END IF;
7957:
7958: wms_task_dispatch_put_away.revert_loc_suggested_capacity(
7959: x_return_status => l_return_status
7960: , x_msg_count => x_msg_count
7961: , x_msg_data => x_msg_data
7962: , p_organization_id => p_organization_id

Line 9266: END wms_task_dispatch_put_away;

9262: END IF;
9263: END check_for_crossdock;
9264:
9265:
9266: END wms_task_dispatch_put_away;