Difference between revisions of "Extensions.DiagCom.GetRequest"
Jump to navigation
Jump to search
m (Hb moved page GetRequest to Extensions.DiagCom.GetRequest: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetRequest'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetRequest | Request of Diagnostic Services | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[Request related terms]] | - | - }} | + | {{ClassificationActivity | GetRequest | Request of Diagnostic Services | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[Request related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetRequest''' term returns the request of diagnostic services. | The '''GetRequest''' term returns the request of diagnostic services. | ||
− | {{TermReturnValue| [[Request]] | Request of diagnostic services.}} | + | {{TermReturnValue| [[Extensions.DiagCom.Request|Request]] | Request of diagnostic services.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| DiagService | [[DiagService]] | [[Term]] | - | [1] | Diagnostics Service.}} | + | {{TableRowPropertie1| DiagService | [[Core.DataTypes.ComplexDataType.DiagService|DiagService]] | [[Term]] | - | [1] | Diagnostics Service.}} |
|} | |} | ||
Line 32: | Line 32: | ||
== See also == | == See also == | ||
− | [[GetPdu]] | + | [[Extensions.DiagCom.GetPdu|GetPdu]] |
Revision as of 02:01, 15 February 2016
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 = DiagCom.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);