Operation Details
Description: Searches for Rate Cell records with a higher index for the Rate Row.
Sterotype: nsmulti
SQL
SELECT
  rateCellID,
  rateCellIndex
INTO
  :rateCellID,
  :rateCellIndex 
FROM
  RateCell 
WHERE rateRowID = :rateRowID 
  AND 
  (
    rateCellIndex >= :index 
  )