Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetTextTableElementLongNameID"

From emotive
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
== OTL Syntax ==
 
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
/// Local Declarations
+
StringTerm DiagDataBrowsingPlus.GetTextTableElementLongNameID(TextTableElementTerm textTableElement);
String StringVariable;
 
/// Flow
 
StringVariable = DiagDataBrowsingPlus.GetTextTableElementLongNameID(TextTableElementTerm);
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
Line 14: Line 11:
 
'''GetTextTableElementLongNameID''' returns the ID for the LongName of the [[Extensions.DiagDataBrowsingPlus.TextTableElement|text table element]].
 
'''GetTextTableElementLongNameID''' returns the ID for the LongName of the [[Extensions.DiagDataBrowsingPlus.TextTableElement|text table element]].
  
{{Note|NOTE — The appropriate MVCI system operation is MCDTextTableElement::getLongNameID}}
+
{{Note|The appropriate MVCI system operation is MCDTextTableElement::getLongNameID}}
  
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the ID for the LongName of the [[Extensions.DiagDataBrowsingPlus.TextTableElement|text table element]].}}
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Returns the ID for the LongName of the [[Extensions.DiagDataBrowsingPlus.TextTableElement|text table element]].}}

Latest revision as of 08:38, 2 November 2018

Classification

Name GetTextTableElementLongNameID
Short Description Gets the long name ID of the TextTableElement
Class Term
Extension OTX DiagDataBrowsingPlus extension
Group TextTableElement related terms
Exceptions NONE
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm DiagDataBrowsingPlus.GetTextTableElementLongNameID(TextTableElementTerm textTableElement);

Description

GetTextTableElementLongNameID returns the ID for the LongName of the text table element.

Icons Note.png The appropriate MVCI system operation is MCDTextTableElement::getLongNameID

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 ID for the LongName of the text table element.

Properties

Name Data Type Class Default Cardinality Description
TextTableElement TextTableElement Term - [1..1] The element addresses the TextTableElement (MCDTextTableElement) which long name ID shall be returned.

OTL Examples

/// Local Declarations

DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<DiagDataBrowsingPlus.TextTableElement> List_TextTableElement;
String MyString;

/// Flow

Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "", false), "DiagnServi_ReadDataByIdentECUIdent")), {"Param_RecorDataIdent"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_TextTableElement = DiagDataBrowsingPlus.GetDbParameterTextTableElements(DbParameter);
MyString = DiagDataBrowsingPlus.GetTextTableElementLongNameID(List_TextTableElement[0]);

See also

GetComChannel
CreateDiagServiceByName
CreateDiagServiceBySemantic
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterBySemantic
GetParameterDbParameter
GetDbParameterTextTableElements