Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbRequestDbSpecialDataGroups"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
'''GetDbRequestDbSpecialDataGroups''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of [[Extensions.DiagDataBrowsingPlus.DbSpecialDataGroup|DbSpecialDataGroup]] (SDG) of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]]. An empty list can be returned if no SDG are available. | '''GetDbRequestDbSpecialDataGroups''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of [[Extensions.DiagDataBrowsingPlus.DbSpecialDataGroup|DbSpecialDataGroup]] (SDG) of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]]. An empty list can be returned if no SDG are available. | ||
− | {{Note| | + | {{Note|The appropriate MVCI system operation is MCDDbRequest::getDbSDGs}} |
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of [[Extensions.DiagDataBrowsingPlus.DbSpecialDataGroup|DbSpecialDataGroup]] (SDG) of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]].}} | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of [[Extensions.DiagDataBrowsingPlus.DbSpecialDataGroup|DbSpecialDataGroup]] (SDG) of the [[Extensions.DiagDataBrowsingPlus.DbRequest|DbRequest]].}} |
Latest revision as of 08:49, 2 November 2018
Contents
Classification
Name | GetDbRequestDbSpecialDataGroups |
Short Description | Gets the special data groups of the DbRequest |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbSpecialDataGroup related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm DiagDataBrowsingPlus.GetDbRequestDbSpecialDataGroups(DbRequestTerm dbRequest);
Description
GetDbRequestDbSpecialDataGroups returns a list of DbSpecialDataGroup (SDG) of the DbRequest. An empty list can be returned if no SDG are available.
![]()
The appropriate MVCI system operation is MCDDbRequest::getDbSDGs
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 DbSpecialDataGroup (SDG) of the DbRequest. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DbRequest | DbRequest | Term | - | [1..1] | The element addresses the DbRequest which SDGs shall be returned. |
OTL Examples
/// Local Declarations
DiagCom.Request Request;
DiagDataBrowsingPlus.DbRequest DbRequest;
List<DiagDataBrowsingPlus.DbSpecialDataGroup> List_DbSpecialDataGroup;
/// Flow
Request = DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentActuaTestStatu"));
DbRequest = DiagDataBrowsingPlus.GetRequestDbRequest(Request);
List_DbSpecialDataGroup = DiagDataBrowsingPlus.GetDbRequestDbSpecialDataGroups(DbRequest);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetRequest
GetRequestDbRequest