Operation Details
Description: This method is used to read all the determinations which are associated with the given Assessment Configuration
Sterotype: nsmulti
SQL
SELECT
  DeterminationConfig.determinationConfigID,
  name,
  startDate,
  endDate,
  recordStatus,
  standAlone,
  detAssessmentConfigLinkID
INTO
  :determinationConfigID,
  :name,
  :startDate,
  :endDate,
  :recordStatus,
  :standAlone,
  :detAssessmentConfigLinkID 
FROM
  DeterminationConfig,
  DetAssessmentConfigLink 
WHERE DeterminationConfig.determinationConfigID = DetAssessmentConfigLink.determinationConfigID 
  AND assessmentConfigurationID = :assessmentConfigurationID 
ORDER BY name