DbIdToStringId
Description
Returns the string ID translated from database ID (DBID). For stateful records, the string ID is the display name (for example, SAMPL00001234).
The DBID is a unique number assigned to every record by HCL Compass.
Note: This method does not support stateless record types.
Note: For more information on DBIDs, see Working with records
Syntax
VBScript
session.DbIdToStringId
db_id
Perl
$session->DbIdToStringId
(db_id);
- Identifier
- Description
- session
- The Session object that represents the current database-access session.
- db_id
- A Long containing a record DBID.
- Return value
- Returns a String containing the string ID (display name) of the record.
Examples
VBScript
id = session.DbIdToStringId "33554434"
Perl
$id = $session->DbIdToStringId ("33554434");