Operation Details
Description: Lists baseline planned group details by baseline ID and parent group ID.
Sterotype: nsmulti
SQL
SELECT
  BaselinePlanGroup.baselinePGID,
  BaselinePlanGroup.baselineID,
  BaselinePlanGroup.plannedGroupID,
  BaselinePlanGroup.parentGroupID,
  BaselinePlanGroup.plannedGroupName,
  BaselinePlanGroup.expectedStartDate,
  BaselinePlanGroup.expectedEndDate,
  BaselinePlanGroup.actualStartDate,
  BaselinePlanGroup.actualEndDate
INTO
  :baselinePGID,
  :baselineID,
  :plannedGroupID,
  :parentGroupID,
  :plannedGroupName,
  :expectedStartDate,
  :expectedEndDate,
  :actualStartDate,
  :actualEndDate 
FROM
  BaselinePlanGroup 
WHERE BaselinePlanGroup.baseLineID = :baseLineID 
  AND BaselinePlanGroup.parentGroupID = :plannedGroupID