Operation Details
Description: @deprecated since curam 6.0, replaced by {@Link SPMilestoneDeliveryLink#searchMilestonesForBaselineByPlannedSubGoalID1()} See release note: CR00236665 Searches details of all milestones required for baseline milestone creation at planned subgoal level.
Sterotype: nsmulti
SQL
SELECT
  SPMilestoneDeliveryLink.plannedSubGoalID,
  MilestoneDelivery.milestoneDeliveryID,
  MilestoneConfiguration.name,
  MilestoneConfiguration.type,
  MilestoneDelivery.expectedStartDate,
  MilestoneDelivery.expectedEndDate,
  MilestoneDelivery.actualStartDate,
  MilestoneDelivery.actualEndDate
INTO
  :plannedSubGoalID,
  :milestoneDeliveryID,
  :name,
  :type,
  :expectedStartDate,
  :expectedEndDate,
  :actualStartDate,
  :actualEndDate 
FROM
  MilestoneDelivery,
  MilestoneConfiguration,
  SPMilestoneDeliveryLink 
WHERE SPMilestoneDeliveryLink.plannedSubGoalID = :plannedSubGoalID 
  AND SPMilestoneDeliveryLink.milestoneDeliveryID = MilestoneDelivery.milestoneDeliveryID 
  AND MilestoneDelivery.milestoneConfigurationID = MilestoneConfiguration.milestoneConfigurationID