OTX Reference  
OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterSpecialDataGroups Class Reference

Get the special data groups defined for the corresponding DbParameter in the project's data bases as a list. More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterSpecialDataGroups:
Inheritance graph

Public Attributes

DbParameterTerm dbParameter
 This element addresses the DbParameter(MCDDbParameter) for which SDGs shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Get the special data groups defined for the corresponding DbParameter in the project's data bases as a list.

The GetDbParameterSpecialDataGroups Activity which returns the special data groups defined for the corresponding DbParameter in the project's database as a list. An empty list will be delivered if no SDGs are available in the ODX data

Note
The appropriate MVCI system operation is MCDDbParameter::getDbSDGs
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterSpecialDataGroups(DbParameterTerm dbParameter);
DbParameterTerm dbParameter
This element addresses the DbParameter(MCDDbParameter) for which SDGs shall be returned.
Definition: DiagDataBrowsingPlus.cs:2918
Examples
// Local Declarations
DiagCom.Result Result;
DiagCom.Response Response;
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.DbSpecialDataGroup> List_DbSpecialDataGroup;
// Flow
[#MetaData(RequestPdu), <#Data>22 2A 19</#Data>]
DiagCom.ExecuteDiagService(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentMeasuValue"), {Param_RecorDataIdent = "stall current measurement value"}, {}, Result, NULL, false, false);
Response = DiagCom.GetFirstResponse(Result);
Parameter = DiagCom.GetParameterByPath(Response, {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_DbSpecialDataGroup = DiagDataBrowsingPlus.GetDbParameterSpecialDataGroups(DbParameter);

Member Data Documentation

◆ dbParameter

DbParameterTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbParameterSpecialDataGroups.dbParameter

This element addresses the DbParameter(MCDDbParameter) for which SDGs shall be returned.