DBA Data[Home] [Help]

APPS.WMS_DIRECT_SHIP_PVT dependencies on WMS_GLOBALS

Line 1394: wms_globals.g_ship_confirm_method := 'DIRECT';

1390:
1391: --Set global to say shipping via Direct Ship instead of desktop
1392: --Added so that WMS_SHIPPING_PUB.DEL_WSTT_RECS_BY_DELIVERY_ID will
1393: --not fail in Shipping's API.
1394: wms_globals.g_ship_confirm_method := 'DIRECT';
1395: WSH_DELIVERIES_PUB.Delivery_Action ( p_api_version_number => 1.0
1396: ,p_init_msg_list => l_init_msg_list
1397: ,x_return_status => l_return_status
1398: ,x_msg_count => l_msg_count

Line 1412: wms_globals.g_ship_confirm_method := NULL;

1408: ,p_sc_trip_ship_method => l_trip_shipmethod_code -- added for 5204688
1409: ,p_wv_override_flag => 'N'
1410: ,x_trip_id => l_trip_id
1411: ,x_trip_name => l_trip_name);
1412: wms_globals.g_ship_confirm_method := NULL;
1413:
1414: IF (l_debug = 1) THEN
1415: debug('after calling Ship confirm','Ship confirm');
1416: END IF;

Line 1796: wms_globals.g_ship_confirm_method := 'DIRECT';

1792:
1793: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
1794: BEGIN
1795: x_return_status:= fnd_api.g_ret_sts_success;
1796: wms_globals.g_ship_confirm_method := 'DIRECT';
1797: IF (l_debug = 1) THEN
1798: debug('Begin Create Trip ','CREATE_TRIP');
1799: debug('p_organization_id : ' || p_organization_id,'CREATE_TRIP');
1800: debug('p_dock_door_id : ' || p_dock_door_id,'CREATE_TRIP');

Line 1949: wms_globals.g_ship_confirm_method := null;

1945: RAISE fnd_api.g_exc_unexpected_error;
1946: END IF;
1947: END IF;
1948:
1949: wms_globals.g_ship_confirm_method := null;
1950: EXCEPTION
1951: WHEN fnd_api.g_exc_error THEN
1952: x_return_status := fnd_api.g_ret_sts_error;
1953: wms_globals.g_ship_confirm_method := NULL;

Line 1953: wms_globals.g_ship_confirm_method := NULL;

1949: wms_globals.g_ship_confirm_method := null;
1950: EXCEPTION
1951: WHEN fnd_api.g_exc_error THEN
1952: x_return_status := fnd_api.g_ret_sts_error;
1953: wms_globals.g_ship_confirm_method := NULL;
1954: IF (l_debug = 1) THEN
1955: debug('In Exception (expected error) - E ','CREATE_TRIP');
1956: END IF;
1957: fnd_msg_pub.count_and_get

Line 1963: wms_globals.g_ship_confirm_method := NULL;

1959: p_data => l_msg_data
1960: );
1961: WHEN fnd_api.g_exc_unexpected_error THEN
1962: x_return_status := fnd_api.g_ret_sts_unexp_error;
1963: wms_globals.g_ship_confirm_method := NULL;
1964: IF (l_debug = 1) THEN
1965: debug('In Exception (unexpected error) - U ','Create_Trip');
1966: END IF;
1967: fnd_msg_pub.count_and_get

Line 1973: wms_globals.g_ship_confirm_method := NULL;

1969: p_data => l_msg_data
1970: );
1971: WHEN others THEN
1972: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
1973: wms_globals.g_ship_confirm_method := NULL;
1974: IF (l_debug = 1) THEN
1975: debug('Exception When Others'||SQLERRM,'WMS_DIRECT_SHIP.Create_Trips');
1976: END IF;
1977: END CREATE_TRIP; -- END CREATE_TRIP