Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbDiagTroubleCodeDisplayTroubleCode"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:OTX '''GetDbDiagTroubleCodeDisplayTroubleCode'''}}Category:DiagDataBrowsingPlus == Classification == {{ClassificationActivity | GetDbDiagTroubleCodeDisplayT...") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbDiagTroubleCodeDisplayTroubleCode'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbDiagTroubleCodeDisplayTroubleCode'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbDiagTroubleCodeDisplayTroubleCode | | + | {{ClassificationActivity | GetDbDiagTroubleCodeDisplayTroubleCode | Gets the display trouble code of the [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbDiagTroubleCode related terms]] | NONE | - }} |
== OTL Syntax == | == OTL Syntax == | ||
− | |||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | BooleanTerm = DiagDataBrowsingPlus.IsDbDiagServiceRepetitive(DbDiagServiceTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== Description == | == Description == | ||
− | + | '''GetDbDiagTroubleCodeDisplayTroubleCode''' returns True if MVCI-Server returns eREPEATED in getRepetitionMode otherwise False. If getRepetitionMode is not supported and [[Extensions.DiagDataBrowsingPlus.NotSupportedException|NotSupportedException]] shall be thrown. | |
− | + | ||
− | {{ | + | {{Note|NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getRepetitionMode}} |
− | {{ | + | |
− | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.Boolean|Boolean]] | Returns True if MVCI-Server returns eREPEATED in getRepetitionMode otherwise False.}} | |
== Properties == | == Properties == | ||
− | |||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| | + | {{TableRowPropertie1| DbDiagService | [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] | [[Term]] | - | [1..1] | The element addresses the [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] which is checked whether it is repetitive or not.}} |
|} | |} | ||
− | |||
== OTL Examples == | == OTL Examples == | ||
− | |||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | DiagCom.ComChannel | + | DiagCom.ComChannel ComChannel; |
+ | DiagCom.DiagService DiagService; | ||
+ | DiagDataBrowsingPlus.DbDiagService DbDiagService; | ||
+ | Boolean MyBoolean = false; | ||
− | + | /// Flow | |
− | + | ComChannel = DiagCom.GetComChannel("LL_GatewUDS", NULL, false); | |
− | + | DiagService = DiagCom.CreateDiagServiceByName(ComChannel, "DiagnServi_ReadDataByIdentActuaTestStatu"); | |
− | + | DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService); | |
+ | MyBoolean = DiagDataBrowsingPlus.IsDbDiagServiceRepetitive(DbDiagService); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== See also == | == See also == | ||
− | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/> | |
+ | [[Extensions.DiagCom.CreateDiagServiceByName|CreateDiagServiceByName]] <br/> | ||
+ | [[Extensions.DiagCom.CreateDiagServiceBySemantic|CreateDiagServiceBySemantic]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel|GetComChannelDbComChannel]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetDbComChannelDbDiagServices|GetDbComChannelDbDiagServices]] |
Revision as of 11:10, 10 September 2018
Contents
Classification
Name | GetDbDiagTroubleCodeDisplayTroubleCode |
Short Description | Gets the display trouble code of the DbDiagService |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbDiagTroubleCode related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
BooleanTerm = DiagDataBrowsingPlus.IsDbDiagServiceRepetitive(DbDiagServiceTerm);
Description
GetDbDiagTroubleCodeDisplayTroubleCode returns True if MVCI-Server returns eREPEATED in getRepetitionMode otherwise False. If getRepetitionMode is not supported and NotSupportedException shall be thrown.
![]()
NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getRepetitionMode
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Boolean | Returns True if MVCI-Server returns eREPEATED in getRepetitionMode otherwise False. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DbDiagService | DbDiagService | Term | - | [1..1] | The element addresses the DbDiagService which is checked whether it is repetitive or not. |
OTL Examples
DiagCom.ComChannel ComChannel;
DiagCom.DiagService DiagService;
DiagDataBrowsingPlus.DbDiagService DbDiagService;
Boolean MyBoolean = false;
/// Flow
ComChannel = DiagCom.GetComChannel("LL_GatewUDS", NULL, false);
DiagService = DiagCom.CreateDiagServiceByName(ComChannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DbDiagService = DiagDataBrowsingPlus.GetDiagServiceDbDiagService(DiagService);
MyBoolean = DiagDataBrowsingPlus.IsDbDiagServiceRepetitive(DbDiagService);
See also
GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
GetComChannelDbComChannel
GetDbComChannel
GetDbComChannelDbDiagServices