Extensions.DiagDataBrowsingPlus.GetDbParameterMcdParameterType

From emotive
Jump to navigation Jump to search

Classification

Name GetDbParameterMcdParameterType
Short Description Gets the parameter type of the DbParameter
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group McdParameter related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

McdParameterTerm DiagDataBrowsingPlus.GetDbParameterMcdParameterType(DbParameterTerm dbParameter);

Description

GetDbParameterMcdParameterType returns the type of the parameter (MCDParameterType).

Icons Note.png The appropriate MVCI system operation is MCDDbParameter::getMCDParameterType

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
McdParameterType Returns the type of the parameter (MCDParameterType).

Properties

Name Data Type Class Default Cardinality Description
DbParameter DbParameter Term - [1..1] The element addresses the DbParameter (MCDDbParameter) which parameter type shall be returned.

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.Interval> List_Interval;
DiagDataBrowsingPlus.McdParameterType McdParameterType = @McdParameterType:CODED_CONST;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("AIRBAG", "", false), "DiagnServi_ClearDiagnInforSingle")), {"Dtc"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
McdParameterType = DiagDataBrowsingPlus.GetDbParameterMcdParameterType(DbParameter);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterBySemantic
GetParameterDbParameter