Classification
OTL Syntax
ListTerm = DiagDataBrowsingPlus.GetDbDiagServiceDbResponses(DbDiagServiceTerm);
Description
GetDbDiagServiceDbResponses returns a list of DbResponse objects which represents the MCDDbResponses for the given DbDiagService. An empty list can be returned, if no response is defined for the diag service in the project's data base.
|
|
NOTE — The appropriate MVCI system operation is MCDDbDiagComPrimitive::getDbResponses
|
Return Value
The Term returns the value, see table below.
|
|
In OTX, Terms are categorized according to its return data type!
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
dbDiagService |
DbDiagService |
Term |
- |
[1..1] |
The element addresses the DbDiagService which responses shall be returned.
|
OTL Examples
DiagCom.DiagService DiagService;
DiagDataBrowsingPlus.DbDiagService DbDiagService;
List<DiagDataBrowsingPlus.DbResponse> List_DbResponse;
/// Flow
DiagService = DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false), "DiagnServi_ReadDataByIdentActuaTestStatu");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
List_DbResponse = DiagDataBrowsingPlus.GetDbDiagServiceDbResponses(DbDiagService);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetDiagServiceDbDiagService