Database SQL Operation: BaselinePlanGroup.readPlannedGroupIDNameAndBaselineName
Description: | reads the planned group name, id, and baseline name for a specified baseline planned group |
Sterotype: | ns |
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
|