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

Get a list of DbParameter More...

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

Public Attributes

DbEnvDataDescTerm envDataDesc
 The element addresses the DbEnvDataDesc which specific environment data shall be returned. More...
 
IntegerTerm troubleCode
 The element addresses the trouble code from which the parameter shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Get a list of DbParameter

The GetDbEnvDataDescSpecificDbEnvDatas Activity which returns a list of DbParameter (MCDDbResponseParameters) which matches given trouble code. If no elements are available in database, then an empty list will be delivered.

Note
The appropriate MVCI The appropriate MVCI system operation is MCDDbEnvDataDesc::getSpecificDbEnvDatasForDiagTroubleCode
Syntax
ListTerm = DiagDataBrowsingPlus.GetDbEnvDataDescSpecificDbEnvDatas(DbEnvDataDescTerm envDataDesc, IntegerTerm troubleCode);
IntegerTerm troubleCode
The element addresses the trouble code from which the parameter shall be returned.
Definition: DiagDataBrowsingPlus.cs:3527
DbEnvDataDescTerm envDataDesc
The element addresses the DbEnvDataDesc which specific environment data shall be returned.
Definition: DiagDataBrowsingPlus.cs:3517
Examples
// Local Declarations
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbEnvDataDesc> List_DbEnvDataDesc;
List<DiagDataBrowsingPlus.DbParameter> List_DbParameter;
// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel("LL_CentrElectUDS");
List_DbEnvDataDesc = DiagDataBrowsingPlus.GetDbComChannelDbEnvDataDescs(DbComChannel);
List_DbParameter = DiagDataBrowsingPlus.GetDbEnvDataDescSpecificDbEnvDatas(List_DbEnvDataDesc[0], 66051);

Member Data Documentation

◆ envDataDesc

DbEnvDataDescTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbEnvDataDescSpecificDbEnvDatas.envDataDesc

The element addresses the DbEnvDataDesc which specific environment data shall be returned.

◆ troubleCode

IntegerTerm OpenTestSystem.Otx.Extensions.DiagDataBrowsingPlus.Terms.GetDbEnvDataDescSpecificDbEnvDatas.troubleCode

The element addresses the trouble code from which the parameter shall be returned.