Classification
OTL Syntax
StringTerm = DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm);
Description
GetDbTableSemantic returns the value of the semantic attribute attached to the corresponding DbTable. The semantic gives additional information on the tables nature, e.g. SECURITY or IDENTIFICATION. If no semantic can be obtained from ODX an empty string will be returned.
|
|
NOTE — The appropriate MVCI system operation is MCDDbTable::getSemantic
|
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Data Type |
Description
|
String |
Returns the value of the semantic attribute attached to the corresponding DbTable.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
dbTable |
DbTable |
Term |
- |
[1..1] |
The element addresses the DbTable (MCDDbTable) which semantic shall be returned.
|
OTL Examples
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
String MyString;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);
List_DbTable = DiagDataBrowsingPlus.GetDbSubComponentDbTables(List_DbSubComponent[0]);
MyString = DiagDataBrowsingPlus.GetDbTableSemantic(List_DbTable[0]);
See also
GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbTables
GetDbSubComponentDbTables