ApplicationData

Description

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

Parameters

Name Type Description
application ApplicationIdentifier Holds the complete identification information for an application.
description string The description of the application. Derived from the TS_DESCRIPTION column in TS_APPLICATIONS.
appDefUUID string The unique identifier that applies to the process app definition in the Application Repository repository.
revision string The revision number.

Usage

The ApplicationData type holds ApplicationIdentifier, description, and UUID used to describe an application. You can use GetApplications to retrieve the application data shown here.

XML

The following XML snippet shows the ApplicationData type in the return element of the GetApplications response.

<ae:GetApplicationsResponse>
   <ae:return>
      <ae:application xsi:type="ae:ApplicationIdentifier">
         <ae:displayName>Global Process App (eval)</ae:displayName>
         <ae:id>1</ae:id>
         <ae:uuid>global-d0f243dd-5ba7-44aa-a7fe-db1bd8a9c3bd</ae:uuid>
      </ae:application>
      <ae:description/>
      <ae:appDefUUID/>
      <ae:revision/>
   </ae:return>
   <ae:return>
      <ae:application xsi:type="ae:ApplicationIdentifier">
         <ae:displayName>Issue Defect Management</ae:displayName>
         <ae:id>2</ae:id>
         <ae:uuid>d365ac15-6b52-47a5-b82c-259e4591d022</ae:uuid>
      </ae:application>
      <ae:description>This process app manages the capture, triage and resolution
      process for software or hardware issues (bugs).</ae:description>
      <ae:appDefUUID/>
      <ae:revision/>
   </ae:return>
   <ae:return>
      <ae:application xsi:type="ae:ApplicationIdentifier">
         <ae:displayName>Incident Management</ae:displayName>
         <ae:id>3</ae:id>
         <ae:uuid>955e8e0e-9342-46ed-ba06-d1bfdc1cdf80</ae:uuid>
      </ae:application>
      <ae:description>Provides simple Incident Management functionality
      for small Support teams.</ae:description>
      <ae:appDefUUID/>
      <ae:revision>-</ae:revision>
   </ae:return>
</ae:GetApplicationsResponse>