Difference between revisions of "Extensions.DiagCom.GetFirstResponse"
Jump to navigation
Jump to search
m (Hb moved page GetFirstResponse to Extensions.DiagCom.GetFirstResponse: #3153) |
|||
Line 1: | Line 1: | ||
− | + | {{DISPLAYTITLE:OTX '''GetFirstResponse'''}}[[Category:DiagCom]] | |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetFirstResponse | First Response of a result object | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Response related terms]] | - | - }} | + | {{ClassificationActivity | GetFirstResponse | First Response of a result object | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Response related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetFirstResponse''' term returns the first response of a result object. This is necessary especially for the evaluation of the responses of several ECUs. | The '''GetFirstResponse''' term returns the first response of a result object. This is necessary especially for the evaluation of the responses of several ECUs. | ||
− | {{TermReturnValue| [[Response]] | First Response of a result object.}} | + | {{TermReturnValue| [[Extensions.DiagCom.Response|Response]] | First Response of a result object.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| ResultEcu | [[Result]] | [[Term]] | - | [1] | Result-Object.}} | + | {{TableRowPropertie1| ResultEcu | [[Extensions.DiagCom.Result|Result]] | [[Term]] | - | [1] | Result-Object.}} |
|} | |} | ||
Line 33: | Line 33: | ||
== See also == | == See also == | ||
− | [[GetAllResponses]] <br/> | + | [[Extensions.DiagCom.GetAllResponses|GetAllResponses]] <br/> |
− | [[IsPositive]] <br/> | + | [[Extensions.DiagCom.IsPositive|IsPositive]] <br/> |
− | [[GetResponseName]] <br/> | + | [[Extensions.DiagCom.GetResponseName|GetResponseName]] <br/> |
− | [[ExecuteDiagService]] <br/> | + | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] <br/> |
− | [[GetFirstResult]] <br/> | + | [[Extensions.DiagCom.GetFirstResult|GetFirstResult]] <br/> |
Revision as of 02:14, 15 February 2016
Contents
Classification
Name | GetFirstResponse |
Short Description | First Response of a result object |
Class | Term |
Extension | OTX DiagCom extension |
Group | Response related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ResponseTerm = DiagCom.GetFirstResponse(ResultTerm);
Description
The GetFirstResponse term returns the first response of a result object. This is necessary especially for the evaluation of the responses of several ECUs.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Response | First Response of a result object. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ResultEcu | Result | Term | - | [1] | Result-Object. |
OTL Examples
DiagCom.Result Result1;
DiagCom.Response Response1;
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
ComChannel1 = DiagCom.GetComChannel("LL_AirbaUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentVWECUHardwVersiNumbe");
DiagCom.ExecuteDiagService(DiagService1, {}, {}, false, false, Result1);
Response1 = DiagCom.GetFirstResponse(Result1);
See also
GetAllResponses
IsPositive
GetResponseName
ExecuteDiagService
GetFirstResult