Operation Details
Description: Called to retrieve a summary details record, containing name and address, for a service supplier.
Sterotype: ns
SQL
SELECT
  ServiceSupplier.primaryAlternateID,
  ServiceSupplier.concernRoleID,
  ServiceSupplier.name,
  ConcernRole.sensitivity,
  city.elementValue,
  addressLine1.elementValue
INTO
  :primaryAlternateID,
  :concernRoleID,
  :name,
  :sensitivity,
  :city,
  :addressLine1 
FROM
  ServiceSupplier,
  ConcernRole,
  AddressElement city,
  AddressElement addressLine1 
WHERE ConcernRole.concernRoleID IN 
  ( 
  SELECT
    concernRoleID 
  FROM
    concernRoleAlternateID 
  WHERE concernRoleAlternateID.alternateID = :primaryAlternateID 
  ) 
  AND ServiceSupplier.concernRoleID = ConcernRole.concernRoleID 
  AND 
  (
    city.addressID = ConcernRole.primaryAddressID 
    AND city.elementType = :cityType 
  ) 
  AND 
  (
    addressLine1.addressID = ConcernRole.primaryAddressID 
    AND addressLine1.elementType = :addressLine1Type 
  )