Operation Details
Description: Retrieves all decision rejections related to the specified case.
Sterotype: nsmulti
SQL
SELECT
  DecisionRejection.decisionRejectionID,
  DecisionRejection.rejectionDate,
  DecisionRejection.reasonCode,
  DecisionRejection.userName,
  Users.fullName
INTO
  :decisionRejectionID,
  :date,
  :reasonCode,
  :userName,
  :userFullName 
FROM
  DecisionRejection,
  Users 
WHERE DecisionRejection.caseID = :caseID 
  AND DecisionRejection.userName = Users.userName