Operation Details
Description: Retrieves a list of cells in the specified rate table.
Sterotype: nsmulti
SQL
SELECT
  RateCell.rateCellID,
  RateCell.rateColumnID,
  RateCell.rateCellMin,
  RateCell.rateCellMax,
  RateCell.rateCellValue,
  RateCell.rateCellType,
  RateCell.rateCellIndex,
  RateCell.anyMinimumInd,
  RateCell.anyMaximumInd,
  RateCell.rateRowID,
  RateCell.blankCellInd
INTO
  :rateCellID,
  :rateColumnID,
  :rateCellMin,
  :rateCellMax,
  :rateCellValue,
  :rateCellType,
  :rateCellIndex,
  :anyMinimumInd,
  :anyMaximumInd,
  :rateRowID,
  :blankCellInd 
FROM
  RateCell,
  RateColumn 
WHERE RateColumn.rateHeaderID = :rateHeaderID 
  AND RateCell.rateColumnID = RateColumn.rateColumnID 
ORDER BY RateCell.rateCellMin