Difference between revisions of "Extensions.DiagCom.GetDiagServiceListBySemantic"
Jump to navigation
Jump to search
m (Hb moved page GetDiagServiceListBySemantic to Extensions.DiagCom.GetDiagServiceListBySemantic: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:DiagCom]] | + | {{DISPLAYTITLE:OTX '''GetDiagServiceListBySemantic'''}}[[Category:DiagCom]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDiagServiceListBySemantic | List of Diagnostic Services with the same semantic attribute | [[Term]] | [[DiagCom|OTX DiagCom extension]] | [[DiagService related terms]] | - | - }} | + | {{ClassificationActivity | GetDiagServiceListBySemantic | List of Diagnostic Services with the same semantic attribute | [[Term]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[DiagService related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''GetDiagServiceListBySemantic''' term is a complete list of diagnostic services with the same [[Semantic Attribute]] back. | The '''GetDiagServiceListBySemantic''' term is a complete list of diagnostic services with the same [[Semantic Attribute]] back. | ||
− | {{TermReturnValue| [[List]] | List of Type DiagService.}} | + | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | List of Type DiagService.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| ComChannel | [[ComChannel]] | [[Term]] | - | [1] | Communication Channel.}} | + | {{TableRowPropertie1| ComChannel | [[Extensions.DiagCom.ComChannel|ComChannel]] | [[Term]] | - | [1] | Communication Channel.}} |
− | {{TableRowPropertie2| Semantic | [[String]] | [[Term]] | - | [1] | Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").}} | + | {{TableRowPropertie2| Semantic | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION").}} |
|} | |} | ||
Line 30: | Line 30: | ||
== See also == | == See also == | ||
− | [[GetDiagServiceListBySemantic]] <br/> | + | [[Extensions.DiagCom.GetDiagServiceListBySemantic|GetDiagServiceListBySemantic]] <br/> |
− | [[GetDiagServiceFromResult]] <br/> | + | [[Extensions.DiagCom.GetDiagServiceFromResult|GetDiagServiceFromResult]] <br/> |
− | [[GetDiagServiceFromException]] <br/> | + | [[Extensions.DiagCom.GetDiagServiceFromException|GetDiagServiceFromException]] <br/> |
− | [[GetDiagServiceName]] <br/> | + | [[Extensions.DiagCom.GetDiagServiceName|GetDiagServiceName]] <br/> |
− | [[ExecuteDiagService]] <br/> | + | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] <br/> |
− | [[GetComChannel]] | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]] |
Revision as of 01:47, 15 February 2016
Contents
Classification
Name | GetDiagServiceListBySemantic |
Short Description | List of Diagnostic Services with the same semantic attribute |
Class | Term |
Extension | OTX DiagCom extension |
Group | DiagService related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagCom.GetDiagServiceListBySemantic(ComChannelTerm, StringTerm);
Description
The GetDiagServiceListBySemantic term is a complete list of diagnostic services with the same Semantic Attribute back.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
List | List of Type DiagService. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ComChannel | ComChannel | Term | - | [1] | Communication Channel. |
Semantic | String | Term | - | [1] | Semantic attribute to classify the diagnostic services (eg: "DEFAULT_FAULTREAD" or "IDENTIFICATION"). |
OTL Examples
DiagCom.ComChannel myComCannel;
List<DiagCom.DiagService> List1;
myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", null, false);
List1 = DiagCom.GetDiagServiceListBySemantic(myComCannel, "CALIBRATIONREAD");
See also
GetDiagServiceListBySemantic
GetDiagServiceFromResult
GetDiagServiceFromException
GetDiagServiceName
ExecuteDiagService
GetComChannel