Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbDiagServices"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:OTX '''GetDbComChannelDbDiagServices'''}}DiagDataBrowsingPlus == Classification == {{ClassificationActivity | GetDbComChannelDbDiagServices | Returns a list...") |
|||
Line 30: | Line 30: | ||
== See also == | == See also == | ||
− | [[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel| | + | [[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel|GetComChannelDbComChannel]] <br/> |
[[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] | [[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] |
Revision as of 10:32, 7 September 2018
Contents
Classification
Name | GetDbComChannelDbDiagServices |
Short Description | Returns a list of DbDiagService objects |
Class | Term |
Extension | OTX DiagDataBrowsingPlus Extension |
Group | DbDiagService related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannelTerm);
Description
GetDbComChannelDbDiagServices returns a list of DbDiagService objects which represents all MCDDbDiagComPrimitive for the given DbComChannel. If the DbComChannel has no associated MCDDbDiagComPrimitive elements, an empty list will be returned.
![]()
NOTE — The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbDiagComPrimitives
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
List | returns a list of DbDiagService objects |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
dbComChannel | DbComChannel | Term | - | [1..1] | This element addresses the DbComChannel which DbDiagService elements shall be returned. |
OTL Examples
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbDiagService> MyList;
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AllEmissRelatUDSSyste");
MyList = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannel);