Operation Details
Description: Reads all categories that do NOT apply to a Product.
Sterotype: nsmulti
SQL
SELECT
  code
INTO
  :categoryCode 
FROM
  codetableitem 
WHERE tableName = :tablename 
  AND code NOT in 
  ( 
  SELECT
    categoryCode 
  FROM
    ProductCategory 
  WHERE productID = :productID 
  )