Difference between revisions of "Extensions.DiagCom.GetComChannelIdentifierFromResponse"
Jump to navigation
Jump to search
m (Hb moved page GetComChannelIdentifierFromResponse to Extensions.DiagCom.GetComChannelIdentifierFromResponse: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetComChannelIdentifierFromResponse'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetComChannelIdentifierFromResponse | Determined from a response to the associated communication channel | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[ComChanel related terms]] | [[UnknownComChannelException]] | - }} | + | {{ClassificationActivity | GetComChannelIdentifierFromResponse | Determined from a response to the associated communication channel | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[ComChanel related terms]] | [[Extensions.DiagCom.UnknownComChannelException|UnknownComChannelException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
On the '''GetComChannelIdentifierFromResponse''' term can be determined from a response of the corresponding communication channel. This is especially necessary for the evaluation of a result object, which in the functional addressing contains the answers of several control units. | On the '''GetComChannelIdentifierFromResponse''' term can be determined from a response of the corresponding communication channel. This is especially necessary for the evaluation of a result object, which in the functional addressing contains the answers of several control units. | ||
− | {{TermReturnValue| [[ComChannel]] | It will return the communication channel generated.}} | + | {{TermReturnValue| [[Extensions.DiagCom.ComChannel|ComChannel]] | It will return the communication channel generated.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Response | [[Response]] | [[Term]] | - | [1] | Response object that is returned by the control unit.}} | + | {{TableRowPropertie1| Response | [[Extensions.DiagCom.Response|Response]] | [[Term]] | - | [1] | Response object that is returned by the control unit.}} |
|} | |} | ||
Line 35: | Line 35: | ||
== See also == | == See also == | ||
− | [[GetComChannel]] <br/> | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/> |
− | [[GetComChannelEcuVariantName]] <br/> | + | [[Extensions.DiagCom.GetComChannelEcuVariantName|GetComChannelEcuVariantName]] <br/> |
− | [[IsVariant]] | + | [[Extensions.DiagCom.IsVariant|IsVariant]] |
Revision as of 08:57, 5 February 2016
Contents
Classification
Name | GetComChannelIdentifierFromResponse |
Short Description | Determined from a response to the associated communication channel |
Class | Term |
Extension | OTX DiagCom extension |
Group | ComChanel related terms |
Exceptions | UnknownComChannelException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
DiagCom.GetComChannelIdentifierFromResponse(ResponseTerm);
Description
On the GetComChannelIdentifierFromResponse term can be determined from a response of the corresponding communication channel. This is especially necessary for the evaluation of a result object, which in the functional addressing contains the answers of several control units.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
ComChannel | It will return the communication channel generated. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Response | Response | Term | - | [1] | Response object that is returned by the control unit. |
OTL Examples
DiagCom.ComChannel myComCannel;
DiagCom.DiagService myDiagService;
DiagCom.Result Result1;
DiagCom.Response Response1;
String String1;
myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", null, false);
myDiagService = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.ExecuteDiagService(myDiagService, {}, {}, false, false, Result1);
Response1 = DiagCom.GetFirstResponse(Result1);
String1 = DiagCom.GetComChannelIdentifierFromResponse(Response1);