Difference between revisions of "Extensions.DiagCom.GetRequest"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
{{ClassificationActivity | GetRequest | Request of Diagnostic Services | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Request related terms]] | - | - }} | {{ClassificationActivity | GetRequest | Request of Diagnostic Services | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Request related terms]] | - | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | RequestTerm = GetRequest(DiagServiceTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 21: | Line 21: | ||
== Examples == | == Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | Request | + | DiagCom.ComChannel myComCannel; |
+ | DiagCom.DiagService DiagService1; | ||
+ | DiagCom.Request Request1; | ||
+ | |||
+ | myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", null, false); | ||
+ | DiagService1 = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu"); | ||
+ | DiagCom.ExecuteDiagService(DiagService1, {}, {}, false, false); | ||
+ | Request1 = DiagCom.GetRequest(DiagService1); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== See also == | == See also == | ||
[[GetPdu]] | [[GetPdu]] |
Revision as of 07:29, 5 February 2015
Contents
Classification
Name | GetRequest |
Short Description | Request of Diagnostic Services |
Class | Term |
Extension | OTX DiagCom extension |
Group | Request related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
RequestTerm = GetRequest(DiagServiceTerm);
Description
The GetRequest term returns the request of diagnostic services.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Request | Request of diagnostic services. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DiagService | DiagService | Term | - | [1] | Diagnostics Service. |
Examples
DiagCom.ComChannel myComCannel;
DiagCom.DiagService DiagService1;
DiagCom.Request Request1;
myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", null, false);
DiagService1 = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.ExecuteDiagService(DiagService1, {}, {}, false, false);
Request1 = DiagCom.GetRequest(DiagService1);