Extensions.DiagDataBrowsingPlus.GetDbTableSemantic

From emotive
Jump to navigation Jump to search

Classification

Name GetDbTableSemantic
Short Description Gets the semantic of the DbTable
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbTable related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm DiagDataBrowsingPlus.GetDbTableSemantic(DbTableTerm dbTable);

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.

Icons Note.png The appropriate MVCI system operation is MCDDbTable::getSemantic

Return Value

The Term returns the value, see table below.

Icons Note.png 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

/// Local Declarations

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