DBA Data[Home] [Help]

VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V

Source

View Text - Preformatted

SELECT delivery_id, name delivery_name, to_char(null) container_flag, to_number(null) delivery_detail_id, to_char(null) container_name, to_number(null) organization_id, to_number(null) inventory_item_id, initial_pickup_location_id ship_from_location_id, ultimate_dropoff_location_id ship_to_location_id from wsh_new_deliveries WHERE nvl(shipment_direction, 'O') IN ('O', 'IO') AND delivery_type = 'STANDARD'
View Text - HTML Formatted

SELECT DELIVERY_ID
, NAME DELIVERY_NAME
, TO_CHAR(NULL) CONTAINER_FLAG
, TO_NUMBER(NULL) DELIVERY_DETAIL_ID
, TO_CHAR(NULL) CONTAINER_NAME
, TO_NUMBER(NULL) ORGANIZATION_ID
, TO_NUMBER(NULL) INVENTORY_ITEM_ID
, INITIAL_PICKUP_LOCATION_ID SHIP_FROM_LOCATION_ID
, ULTIMATE_DROPOFF_LOCATION_ID SHIP_TO_LOCATION_ID
FROM WSH_NEW_DELIVERIES
WHERE NVL(SHIPMENT_DIRECTION
, 'O') IN ('O'
, 'IO')
AND DELIVERY_TYPE = 'STANDARD'