Operation Details
Description: Returns id, name, type, created by, and creation date time of all baselines of a specified CaseID.
Sterotype: nsmulti
SQL
SELECT
  Baseline.baseLineID,
  Baseline.name,
  Baseline.createdBy,
  Baseline.typeCode,
  Baseline.creationDateTime
INTO
  :baseLineID,
  :name,
  :createdBy,
  :typeCode,
  :creationDateTime 
FROM
  Baseline,
  PlannedGoal 
WHERE Baseline.plannedGoalID = PlannedGoal.plannedGoalID 
  AND PlannedGoal.caseID = :caseID