You are on page 1of 1

select wcv.carrier_id,wcv.freight_code,wcv.

carrier_name,
wcsv.carrier_service_id,wcsv.mode_of_transport,wcsv.ship_method_code,wcsv.SHIP_METH
OD_MEANING,wocs.organization_id,ood.organization_name,ood.organization_code
from wsh_carriers_v wcv,WSH_CARRIER_SERVICES_V wcsv, wsh_org_carrier_services
wocs,org_organization_definitions ood
where wcv.carrier_id=wcsv.carrier_id
and wcv.active='A'
and wcsv.enabled_flag='Y'--1464
and wcsv.carrier_service_id=wocs.carrier_service_id
and wocs.enabled_flag='Y'
and wocs.organization_id=ood.organization_id--3221
order by wcv.carrier_id,wcsv.mode_of_transport

You might also like