SolutionIdentifier

Description

The SolutionIdentifier type holds the identification information for a solution. The SolutionIdentifier type parameters are listed below.

Parameters

Name Type Description
identifier Extension. See Identifier. Generic identification extension base. Holds the displayName, id, and uuid for a solution.
uniqueName string The database name of the solution.
tabName string The tab name setting specified in SBM Composer.

Usage

The SolutionIdentifier is the identifier that you use in Web service methods to uniquely identify a solution. The SolutionIdentifier contains the generic information about a solution (including the display name, ID, and UUID) in addition to the database name and application tab name.

Note: You can send any one of the elements in the identifier—you do not need to provide values for every element. You only need to provide more than one element in the event that the first element does not uniquely identify the object.

XML

The following XML shows SolutionIdentifier as seen in a typical call.

<urn:solution>
    <urn:displayName>Issue Defect Management</urn:displayName>
    <urn:id>1</urn:id>
    <urn:uuid>cea0a86c-5d74-4e12-b8d6-9d6b90186f1e</urn:uuid>
    <urn:uniqueName>ISSUE_DEFECT_MANAGEMENT</urn:uniqueName>
    <urn:tabName>IDM</urn:tabName>
</urn:solution>