Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbSubComponents"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
 
{{DISPLAYTITLE:OTX '''GetDbComChannelDbSubComponents'''}}[[Category:DiagDataBrowsingPlus]]
 
{{DISPLAYTITLE:OTX '''GetDbComChannelDbSubComponents'''}}[[Category:DiagDataBrowsingPlus]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetDbComChannelDbSubComponents| Gets the sub components of the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbSubComponent related terms]] | NONE | - }}
+
{{ClassificationActivity | GetDbComChannelDbSubComponents| Gets the sub components of the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus#Terms|DbSubComponent related terms]] | NONE | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==

Revision as of 04:13, 21 September 2018

Classification

Name GetDbComChannelDbSubComponents
Short Description Gets the sub components of the DbComChannel
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group DbSubComponent related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

ListTerm = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannelTerm);

Description

GetDbComChannelDbSubComponents returns a list of all DbSubComponent (MCDDbSubComponent) referenced by the DbComChannel. The list can be empty.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbSubComponents

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 DbSubComponent (MCDDbSubComponent) referenced by the DbComChannel.

Properties

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

OTL Examples

DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbSubComponent> List_DbSubComponent;

/// Flow

DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "AIRBAG");
List_DbSubComponent = DiagDataBrowsingPlus.GetDbComChannelDbSubComponents(DbComChannel);

See also

GetDbComChannel
GetComChannelDbComChannel