DBA Data[Home] [Help]

APPS.WMS_DIRECT_SHIP_PVT dependencies on WMS_GLOBALS

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

1474:
1475: --Set global to say shipping via Direct Ship instead of desktop
1476: --Added so that WMS_SHIPPING_PUB.DEL_WSTT_RECS_BY_DELIVERY_ID will
1477: --not fail in Shipping's API.
1478: wms_globals.g_ship_confirm_method := 'DIRECT';
1479:
1480: -- code added for bug#8596010
1481: wms_shipping_transaction_pub.g_allow_ship_set_break := l_allow_ship_set_break;
1482:

Line 1507: wms_globals.g_ship_confirm_method := NULL;

1503: ,p_sc_trip_ship_method => l_trip_shipmethod_code -- added for 5204688
1504: ,p_wv_override_flag => 'N'
1505: ,x_trip_id => l_trip_id
1506: ,x_trip_name => l_trip_name);
1507: wms_globals.g_ship_confirm_method := NULL;
1508:
1509: IF (l_debug = 1) THEN
1510: debug('after calling Ship confirm','Ship confirm');
1511: END IF;

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

1887:
1888: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
1889: BEGIN
1890: x_return_status:= fnd_api.g_ret_sts_success;
1891: wms_globals.g_ship_confirm_method := 'DIRECT';
1892: IF (l_debug = 1) THEN
1893: debug('Begin Create Trip ','CREATE_TRIP');
1894: debug('p_organization_id : ' || p_organization_id,'CREATE_TRIP');
1895: debug('p_dock_door_id : ' || p_dock_door_id,'CREATE_TRIP');

Line 2045: wms_globals.g_ship_confirm_method := null;

2041: RAISE fnd_api.g_exc_unexpected_error;
2042: END IF;
2043: END IF;
2044:
2045: wms_globals.g_ship_confirm_method := null;
2046: EXCEPTION
2047: WHEN fnd_api.g_exc_error THEN
2048: x_return_status := fnd_api.g_ret_sts_error;
2049: wms_globals.g_ship_confirm_method := NULL;

Line 2049: wms_globals.g_ship_confirm_method := NULL;

2045: wms_globals.g_ship_confirm_method := null;
2046: EXCEPTION
2047: WHEN fnd_api.g_exc_error THEN
2048: x_return_status := fnd_api.g_ret_sts_error;
2049: wms_globals.g_ship_confirm_method := NULL;
2050: IF (l_debug = 1) THEN
2051: debug('In Exception (expected error) - E ','CREATE_TRIP');
2052: END IF;
2053: fnd_msg_pub.count_and_get

Line 2059: wms_globals.g_ship_confirm_method := NULL;

2055: p_data => l_msg_data
2056: );
2057: WHEN fnd_api.g_exc_unexpected_error THEN
2058: x_return_status := fnd_api.g_ret_sts_unexp_error;
2059: wms_globals.g_ship_confirm_method := NULL;
2060: IF (l_debug = 1) THEN
2061: debug('In Exception (unexpected error) - U ','Create_Trip');
2062: END IF;
2063: fnd_msg_pub.count_and_get

Line 2069: wms_globals.g_ship_confirm_method := NULL;

2065: p_data => l_msg_data
2066: );
2067: WHEN others THEN
2068: x_return_status := WSH_UTIL_CORE.G_RET_STS_UNEXP_ERROR;
2069: wms_globals.g_ship_confirm_method := NULL;
2070: IF (l_debug = 1) THEN
2071: debug('Exception When Others'||SQLERRM,'WMS_DIRECT_SHIP.Create_Trips');
2072: END IF;
2073: END CREATE_TRIP; -- END CREATE_TRIP