Extensions.DiagDataBrowsingPlus.IsParameterConstant

From emotive
Jump to navigation Jump to search

Classification

Name IsParameterConstant
Short Description Checks whether the diag:Parameter is constant or not
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group Parameter related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

BooleanTerm DiagDataBrowsingPlus.IsParameterConstant(ParameterTerm parameter);

Description

IsParameterConstant returns true whether this parameter is of type CODED-CONST, NRC_CONST or PHYS-CONST. In all other cases it returns false.

Icons Note.png The appropriate MVCI system operation is MCDParameter::getMCDParameterType
Icons Note.png This term is introduced to complete the existing terms in the DiagDataBrowsing extension (ISO 13209 Part-3 [3]) that uses ParameterTerms. This completion primarily enables a generically interpretation of responses by using runtime parameters without using DbParameters.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Boolean Returns true whether this parameter is of type CODED-CONST, NRC_CONST or PHYS-CONST.

Properties

Name Data Type Class Default Cardinality Description
Parameter Parameter Term - [1..1] The element addresses the diag:Parameter (MCDParameter) which is checked whether it is constant or not.

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
Boolean MyBoolean;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentActuaTestStatu")), {"Param_RequeServiId"});
MyBoolean = DiagDataBrowsingPlus.IsParameterConstant(Parameter);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterBySemantic