Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbTableDiagComPrimitives"

From emotive
Jump to navigation Jump to search
 
Line 11: Line 11:
 
'''GetDbTableDiagComPrimitives''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of otx:[[Extensions.DiagCom.DiagService|DiagService]] referenced by the current [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]]. The length of the list is zero, if no [[Extensions.DiagCom.DiagService|DiagService]] is available for this table.
 
'''GetDbTableDiagComPrimitives''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of otx:[[Extensions.DiagCom.DiagService|DiagService]] referenced by the current [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]]. The length of the list is zero, if no [[Extensions.DiagCom.DiagService|DiagService]] is available for this table.
  
{{Note|NOTE — The appropriate MVCI system operation is MCDDbTable::getDbDiagComPrimitives}}
+
{{Note|The appropriate MVCI system operation is MCDDbTable::getDbDiagComPrimitives}}
  
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of otx:[[Extensions.DiagCom.DiagService|DiagService]] referenced by the current [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]].}}
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of otx:[[Extensions.DiagCom.DiagService|DiagService]] referenced by the current [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]].}}

Latest revision as of 10:43, 2 November 2018

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