SolutionData

Description

The SolutionData type holds the name and other information about an solution in SBM. The SolutionData type parameters are listed below.

Parameters

Name Type Description
solution SolutionIdentifier Holds the identification information for a solution.
type SolutionIdentifier The type of solution. The possible values are: TEAMTRACK_SOLUTION, USER_SOLUTION, and THIRD_PARTYSOLUTION.
prefix string The prefix of the solution. Derived from the TS_PREFIX column in TS_SOLUTIONS.
description string The description of the solution. Derived from the TS_DESCRIPTION column in TS_SOLUTIONS.
processAppUUID string The UUID of the associated process app.

Usage

The SolutionData type holds the SolutionIdentifier and additional information used to completely describe a solution. You can use GetSolutions to retrieve the solution data shown here.

XML

The following XML snippet shows the SolutionData type in the return element of the GetSolutions response.

<ae:GetSolutionsResponse>
   <ae:return>
      <ae:solution xsi:type="ae:SolutionIdentifier">
         <ae:displayName>Issue Defect Management</ae:displayName>
         <ae:id>1</ae:id>
         <ae:uuid>cea0a86c-5d74-4e12-b8d6-9d6b90186f1e</ae:uuid>
         <ae:uniqueName>ISSUE_DEFECT_MANAGEMENT</ae:uniqueName>
         <ae:tabName>IDM</ae:tabName>
      </ae:solution>
      <ae:type>USER-SOLUTION</ae:type>
      <ae:prefix>UBG</ae:prefix>
      <ae:description>Last updated 1/26/09</ae:description>
      <ae:processAppUUID>d365ac15-6b52-47a5-b82c-259e4591d022</ae:processAppUUID>
   </ae:return>
   <ae:return>
      <ae:solution xsi:type="ae:SolutionIdentifier">
         <ae:displayName>Incident Management</ae:displayName>
         <ae:id>2</ae:id>
         <ae:uuid>c6f06a70-4d06-42a4-a3a9-50b2120dca41</ae:uuid>
         <ae:uniqueName>INCIDENT_MANAGEMENT</ae:uniqueName>
         <ae:tabName>Incident Mgmt</ae:tabName>
      </ae:solution>
      <ae:type>USER-SOLUTION</ae:type>
      <ae:prefix>UIM</ae:prefix>
      <ae:description/>
      <ae:processAppUUID>955e8e0e-9342-46ed-ba06-d1bfdc1cdf80</ae:processAppUUID>
   </ae:return>
   <ae:return>
      <ae:solution xsi:type="ae:SolutionIdentifier">
         <ae:displayName>Change Request Management</ae:displayName>
         <ae:id>3</ae:id>
         <ae:uuid>0ea28a74-6dde-406f-b19a-4c45aec40294</ae:uuid>
         <ae:uniqueName>CHANGE_REQUEST_MANAGEMENT</ae:uniqueName>
         <ae:tabName>Change Requests</ae:tabName>
      </ae:solution>
      <ae:type>USER-SOLUTION</ae:type>
      <ae:prefix>UCA</ae:prefix>
      <ae:description/>
      <ae:processAppUUID>660af90a-7d96-405c-a859-7115a9114ed3</ae:processAppUUID>             
   </ae:return>
</ae:GetSolutionsResponse>