TableIdentifier

Description

The TableIdentifier type holds the identification information for a table. The TableIdentifier 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 table.
dbName string The unique database name of the table

Usage

The TableIdentifier is the identifier that can be used in Web service methods to uniquely identify a table. The TableIdentifier contains the generic information about a table (including the display name, ID, and UUID) in addition to the database name of the table.

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 TableIdentifier as seen in a typical call.

<urn:table>
    <urn:displayName>Issues</urn:displayName>
    <urn:id>1000</urn:id>
    <urn:uuid>dc8cd329-b430-436f-bb75-bf90008e6a50</urn:uuid>
    <urn:dbName>UBG_ISSUES</urn:dbName>
</urn:table>