XIH.TISTable
Returns the name of the internal table in the database system for a given TIS-Table (path and name or combined).
Allows to dynamically generate accesses or to allow access for third parties directly to the database system.
Syntax
XIH.TISTable(tisTablePath, tisTableName)
XIH.TISTable(tisTablePathTableName)
Parameters
Parameter | Data type | Description | Sample |
---|---|---|---|
tisTablePath | string | String specifies the path of the table | TIS/$CreateTables/ |
tisTableName | string | String specifies the name of the table | firstProject - A00 table |
tisTablePathTableName | string | String specifies the name and the path of the table combined | TIS/$CreateTables/firstProject - A00 table |
Remarks
Be careful when typing the path of the table backslashes ('\') are not a valid character, use slashes ('/') instead.
Available starting from version 5.5.
Returns a string.
Examples
XIH.TISTable(
"TIS/$CreateTables/"
,
"firstProject - A00 table"
)
XIH.TISTable(
"TIS/$CreateTables/firstProject - A00 table"
)
Related
- TIS Parameters
- XIH Functions