Operation Details
Description: @Deprecated since curam 6.0 replaced by {@link ServicePlan#searchPlanTemplates} as part of localizing Plan Template name. See release note: CR00227878 Gets&nbsp;a&nbsp;list&nbsp;of&nbsp;the&nbsp;plan&nbsp;templates&nbsp;that&nbsp;are&nbsp;associated&nbsp;with&nbsp;the&nbsp;service&nbsp;referenced&nbsp;by&nbsp;the&nbsp;provided&nbsp;key. </p>
Sterotype: nsmulti
SQL
SELECT
  planTemplateID,
  name,
  dateCreated
INTO
  :planTemplateID,
  :planTemplateName,
  :dateCreated 
FROM
  PlanTemplate 
WHERE planTemplateID IN 
  ( 
  SELECT
    planTemplateID 
  FROM
    PlanTemplateServicePlanLink 
  WHERE servicePlanID = :servicePlanID 
  )