Operation Details
Description: @deprecated Since Curam 6.0, replaced with {@link PlanTemplateMilestone#readMilestoneDetails()} as part of implementing localization of plan template milestone description. See release note : CR00229083. Method to read the template milestone details.
Sterotype: ns
SQL
SELECT
  MilestoneConfiguration.type,
  MilestoneConfiguration.name,
  PlanTemplateMilestone.milestoneConfigurationID,
  PlanTemplateMilestone.planTemplateID,
  PlanTemplateMilestone.planTemplatePlanGroupID,
  PlanTemplateMilestone.planTemplateSubGoalID,
  PlanTemplateMilestone.startAfter,
  PlanTemplateMilestone.duration,
  PlanTemplateMilestone.comments,
  PlanTemplateMilestone.versionNo
INTO
  :milestoneType,
  :milestoneName,
  :milestoneConfigurationID,
  :planTemplateID,
  :planTemplatePlanGroupID,
  :planTemplateSubGoalID,
  :startAfter,
  :duration,
  :comments,
  :versionNo
FROM
  MilestoneConfiguration,
  PlanTemplateMilestone 
WHERE PlanTemplateMilestone.planTemplateMilestoneID = :planTemplateMilestoneID 
  AND MilestoneConfiguration.milestoneConfigurationID = PlanTemplateMilestone.milestoneConfigurationID