Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbComChannelDbEnvDataDescs"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
'''GetDbComChannelDbEnvDataDescs''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbEnvDataDesc|DbEnvDataDesc]] (MCDDbEnvDataDesc) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. The list can be empty. | '''GetDbComChannelDbEnvDataDescs''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of all [[Extensions.DiagDataBrowsingPlus.DbEnvDataDesc|DbEnvDataDesc]] (MCDDbEnvDataDesc) referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]]. The list can be empty. | ||
− | {{Note| | + | {{Note|The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbEnvDataDescs}} |
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbEnvDataDesc|DbEnvDataDesc]] referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]].}} | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of all [[Extensions.DiagDataBrowsingPlus.DbEnvDataDesc|DbEnvDataDesc]] referenced by the [[Extensions.DiagDataBrowsingPlus.DbComChannel|DbComChannel]].}} |
Latest revision as of 09:09, 2 November 2018
Contents
Classification
Name | GetDbComChannelDbEnvDataDescs |
Short Description | Gets the environment data descriptions of the DbComChannel |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbEnvDataDesc related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm DiagDataBrowsingPlus.GetDbComChannelDbEnvDataDescs(DbComChannelTerm dbComChannel);
Description
GetDbComChannelDbEnvDataDescs returns a list of all DbEnvDataDesc (MCDDbEnvDataDesc) referenced by the DbComChannel. The list can be empty.
![]()
The appropriate MVCI system operation is MCDDbLogicalLink::getDbLocation::getDbEnvDataDescs
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 all DbEnvDataDesc referenced by the DbComChannel. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DbComChannel | DbComChannel | Term | - | [1..1] | The element addresses the DbComChannel which environment data descriptions shall be returned. |
OTL Examples
/// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbEnvDataDesc> List_DbEnvDataDesc;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel("", "LL_CentrElectUDS");
List_DbEnvDataDesc = DiagDataBrowsingPlus.GetDbComChannelDbEnvDataDescs(DbComChannel);