Extensions.DiagDataBrowsingPlus.GetDbTableDiagComPrimitives

From emotive
Jump to navigation Jump to search

Classification

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

OTL Syntax

ListTerm DiagDataBrowsingPlus.GetDbTableDiagComPrimitives(DbTableTerm dbTable);

Description

GetDbTableDiagComPrimitives returns a list of otx:DiagService referenced by the current DbTable. The length of the list is zero, if no DiagService is available for this table.

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

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
List Returns a list of otx:DiagService referenced by the current DbTable.

Properties

Name Data Type Class Default Cardinality Description
DbTable DbTable Term - [1..1] The element addresses the DbTable (MCDDbTable) which DiagServices shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;
List<DiagCom.DiagService> List_DiagService;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbTable = DiagDataBrowsingPlus.GetDbComChannelDbTables(DbComChannel);
List_DiagService = DiagDataBrowsingPlus.GetDbTableDiagComPrimitives(List_DbTable[0]);

See also

GetDbComChannel
GetComChannelDbComChannel
GetDbComChannelDbTables
GetDbComChannelDbSubComponents
GetDbSubComponentDbTables