Classification
OTL Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameterTerm);
Description
GetDbParameterTextTableElements returns all table entries of the parameter, as a List of DbTextTableElements.
If the parameter is not a text table, the InvalidTypeException exception will be thrown.
|
|
NOTE — The appropriate MVCI system operation is MCDDbParameter::getTextTableElements
|
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 all table entries of the parameter.
|
Properties
Name |
Data Type |
Class |
Default |
Cardinality |
Description
|
dbParameter |
DbParameter |
Term |
- |
[1..1] |
The element addresses the DbParameter (MCDDbParameter) which text table elements it is constant or not.
|
OTL Examples
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.TextTableElement> List_TextTableElement;
/// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentECUIdent")), {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_TextTableElement = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameter);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterBySemantic
GetParameterDbParameter