Difference between revisions of "Extensions.DiagDataBrowsing.IsByteFieldParameter"
Jump to navigation
Jump to search
m (Hb moved page IsByteFieldParameter to Extensions.DiagDataBrowsing.IsByteFieldParameter: #3153) |
|
(No difference)
|
Revision as of 04:40, 5 February 2016
Contents
Classification
Name | IsByteFieldParameter |
Short Description | Checks if the parameter is of type ByteField |
Class | Term |
Extension | OTX DiagDataBrowsing extension |
Group | DiagDataBrowsing terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
BooleanTerm = DiagDataBrowsing.IsByteFieldParameter(ParameterTerm);
Description
IsByteFieldParameter will return TRUE if the specified parameter if and only represents a ByteField value as defined in the diagnostic database.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Booelan | Returns TRUE if exactly then the specified parameter is a ByteField value as defined in the diagnostic database |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Parameter | Parameter | Term | - | [1] | The request or response parameter that is checked by Type |
OTL Examples
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
DiagCom.Parameter Parameter1;
DiagCom.Request Request1;
Boolean Boolean1 = false;
List<String> List1;
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
List1 = DiagDataBrowsing.GetRequestParameterList(DiagService1);
Request1 = DiagCom.GetRequest(DiagService1);
Parameter1 = DiagCom.GetParameterByPath(Request1, {List1[0]});
Boolean1 = DiagDataBrowsing.IsByteFieldParameter(Parameter1);
See also
IsBooleanParameter
IsStringParameter
IsNumericParameter
IsComplexParameter