Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbTables"

From emotive
Jump to navigation Jump to search
 
Line 11: Line 11:
 
'''GetDbComChannelDbTables''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] (McdDbTable) referenced by the [[Extensions.DiagCom.ComChannel|ComChannel]]. The list can be empty.
 
'''GetDbComChannelDbTables''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] (McdDbTable) referenced by the [[Extensions.DiagCom.ComChannel|ComChannel]]. The list can be empty.
  
{{Note|NOTE — The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbTables}}
+
{{Note|The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbTables}}
  
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] (McdDbTable) referenced by the [[Extensions.DiagCom.ComChannel|ComChannel]].}}
 
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbTable|DbTable]] (McdDbTable) referenced by the [[Extensions.DiagCom.ComChannel|ComChannel]].}}

Latest revision as of 08:45, 2 November 2018

Classification

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

OTL Syntax

ListTerm DiagDataBrowsingPlus.GetDbComChannelDbTables(DbComChannelTerm dbComChannel);

Description

GetDbComChannelDbTables returns a list of all DbTable (McdDbTable) referenced by the ComChannel. The list can be empty.

Icons Note.png The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbTables

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 all DbTable (McdDbTable) referenced by the ComChannel.

Properties

Name Data Type Class Default Cardinality Description
DbComChannel DbComChannel Term - [1..1] The element addresses the ComChannel which tables shall be returned.

OTL Examples

/// Local Declarations

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbTable> List_DbTable;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbTable = DiagDataBrowsingPlus.GetDbComChannelDbTables(DbComChannel);

See also

GetDbComChannel
GetComChannelDbComChannel