Operation Details
Description: reads the planned group name, id, and baseline name for a specified baseline planned group
Sterotype: ns
SQL
SELECT
  Baseline.name,
  BaselinePlanGroup.plannedGroupName,
  BaselinePlanGroup.plannedGroupID
INTO
  :baselineName,
  :plannedGroupName,
  :plannedGroupID 
FROM
  Baseline,
  BaselinePlanGroup 
WHERE Baseline.baselineID = :baselineID 
  AND BaselinePlanGroup.baselineID = :baselineID 
  AND BaselinePlanGroup.baselinePGID = :baselinePlannedGroupID