TableData

Description

The TableData type holds the name and other information about a table in SBM. The TableData type parameters are listed below.

Parameters

Name Type Description
table TableIdentifier Holds the identification information for a table.
solution SolutionIdentifier Holds the identification information for a solution.
type Table-Type The type of table returned.
description string The description of the table. Derived from the TS_DESCRIPTION column in TS_TABLES.
field Field Fields that are defined for the table.

Usage

The TableData type holds the TableIdentifier and additional information used to completely describe a table. You can use GetTables to retrieve the table data shown here.

XML

The following XML snippet shows the TableData type in the return element of the GetTables response.

<ae:GetTablesResponse>
   <ae:return>
      <ae:table xsi:type="ae:TableIdentifier">
         <ae:displayName>Issues</ae:displayName>
         <ae:id>1000</ae:id>
         <ae:uuid>dc8cd329-b430-436f-bb75-bf90008e6a50</ae:uuid>
         <ae:dbName>UBG_ISSUES</ae:dbName>
      </ae:table>
      <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>PRIMARY-TABLE</ae:type>
      <ae:description/>
         <ae:field>
            <ae:field xsi:type="ae:FieldIdentifier">
               <ae:displayName>Type</ae:displayName>
               <ae:id>52</ae:id>
               <ae:uuid>7718fd10-ff7a-4fc9-9f8e-581820cb77bf</ae:uuid>
               <ae:dbName>ISSUETYPE</ae:dbName>
            </ae:field>
            <ae:fieldType>FLDTYPE-SELECTION</ae:fieldType>
            <ae:attribute>0</ae:attribute>
            <ae:properties>0</ae:properties>
         </ae:field>
         <ae:field>
            <ae:field xsi:type="ae:FieldIdentifier">
               <ae:displayName>Item Id</ae:displayName>
               <ae:id>53</ae:id>
               <ae:uuid>8a46043d-8cff-4871-a106-f0646ed3c58f</ae:uuid>
               <ae:dbName>ISSUEID</ae:dbName>
            </ae:field>
            <ae:fieldType>FLDTYPE-TEXT</ae:fieldType>
            <ae:attribute>0</ae:attribute>
            <ae:properties>0</ae:properties>
         </ae:field>
</ae:GetTablesResponse>