Difference between revisions of "Extensions.DiagCom.GetComChannelEcuVariantName"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
[[Category:DiagCom]]
+
{{DISPLAYTITLE:OTX '''GetComChannelEcuVariantName '''}}[[Category:DiagCom]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetComChannelEcuVariantName | Calculated from a communication channel the name of the associated variant | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[ComChanel related terms]] | - | - }}
+
{{ClassificationActivity | GetComChannelEcuVariantName | Calculated from a communication channel the name of the associated variant | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[ComChanel related terms]] | - | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 11: Line 11:
 
About the '''GetComChannelEcuVariantName''' term can be the name of the ECU variant that is associated with a communication channel to be determined. This makes sense to look for a [[Variant Identification]] to get the name of the variant.
 
About the '''GetComChannelEcuVariantName''' term can be the name of the ECU variant that is associated with a communication channel to be determined. This makes sense to look for a [[Variant Identification]] to get the name of the variant.
  
{{TermReturnValue| [[String]] | Returns the name of the ECU variant. }}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the name of the ECU variant. }}
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| ComChannel | [[ComChannel]] | [[Term]] | - | [1] | Communication channel.}}
+
{{TableRowPropertie1| ComChannel | [[Extensions.DiagCom.ComChannel|ComChannel]] | [[Term]] | - | [1] | Communication channel.}}
 
|}
 
|}
  
Line 30: Line 30:
  
 
== See also ==
 
== See also ==
[[GetComChannelIdentifierFromResponse]] <br/>
+
[[Extensions.DiagCom.GetComChannelIdentifierFromResponse|GetComChannelIdentifierFromResponse]] <br/>
[[GetComChannel]] <br/>
+
[[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/>
[[IsVariant]]
+
[[Extensions.DiagCom.IsVariant|IsVariant]]

Revision as of 10:59, 5 February 2016

Classification

Name GetComChannelEcuVariantName
Short Description Calculated from a communication channel the name of the associated variant
Class Term
Extension OTX DiagCom extension
Group ComChanel related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm = DiagCom.GetComChannelEcuVariantName(ComChannelTerm);

Description

About the GetComChannelEcuVariantName term can be the name of the ECU variant that is associated with a communication channel to be determined. This makes sense to look for a Variant Identification to get the name of the variant.

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
String Returns the name of the ECU variant.

Properties

Name Data Type Class Default Cardinality Description
ComChannel ComChannel Term - [1] Communication channel.

OTL Examples

DiagCom.ComChannel myComCannel;
String String1;

myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", null, false);
String1 = DiagCom.GetComChannelEcuVariantName(myComCannel);
String ecuVariantName = GetComChannelEcuVariantName(myComCannel);

See also

GetComChannelIdentifierFromResponse
GetComChannel
IsVariant