Database SQL Operation: ServicePlan.searchUnassociatedIntegratedCasesByStatus
Description: | Returns a list of admin integrated cases associated with the service plan referenced by the key |
Sterotype: | nsmulti |
SELECT
adminIntegratedCaseID,
integratedCaseType,
homePageName,
memberHomePageName
INTO
:caseID,
:integratedCaseType,
:homePageName,
:memberHomePageName
FROM
AdminIntegratedCase
WHERE statusCode = :recordStatus
AND adminIntegratedCaseID NOT IN
(
SELECT
adminIntegratedCaseID
FROM
AdminICServicePlanLink
WHERE servicePlanID = :servicePlanID
)
|