Extensions.DiagDataBrowsingPlus.GetDbParameterValidPhysicalIntervals
Jump to navigation
Jump to search
Contents
Classification
Name | GetDbParameterValidPhysicalIntervals |
Short Description | Gets the valid physical intervals of the DbParameter |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | Interval related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm DiagDataBrowsingPlus.GetDbParameterValidPhysicalIntervals(DbParameterTerm dbParameter);
Description
GetDbParameterValidPhysicalIntervals returns the list of valid physical interval objects defined by the intersection of COMPUSCALE intervals and valid ranges in ODX. The list might be empty.
![]()
The appropriate MVCI system operation is MCDDbParameter::getValidPhysicalIntervals
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 a list of valid physical interval objects. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DbParameter | DbParameter | Term | - | [1..1] | The element addresses the DbParameter (MCDDbParameter) which valid physical intervals shall be returned. |
OTL Examples
/// Local Declarations
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.Interval> List_Interval;
/// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("AIRBAG", "", false), "DiagnServi_ClearDiagnInforSingle")), {"Dtc"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_Interval = DiagDataBrowsingPlus.GetDbParameterValidPhysicalIntervals(DbParameter);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterDbParameter