Operation Details
Description: Searches for all rows for a Rate Table with a higher index.
Sterotype: nsmulti
SQL
SELECT
  rateRowID,
  rateHeaderID,
  rateRowType,
  rateRowIndex
INTO
  :rateRowID,
  :rateHeaderID,
  :rateRowType,
  :rateRowIndex 
FROM
  RateRow 
WHERE rateHeaderID = :rateHeaderID 
  AND 
  (
    rateRowIndex >= :index 
  ) 
ORDER BY rateRowType, rateRowIndex ASC