Difference between revisions of "Extensions.DiagDataBrowsing.GetResponseParameterList"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetResponseParameterList'''}}[[Category:DiagDataBrowsing]] | {{DISPLAYTITLE:OTX '''GetResponseParameterList'''}}[[Category:DiagDataBrowsing]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetResponseParameterList | Return names of all response parameters of diagnostic services | [[Term]] | [[Extensions.DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[DiagDataBrowsing terms]] | - | - }} | + | {{ClassificationActivity | GetResponseParameterList | Return names of all response parameters of diagnostic services | [[Term]] | [[Extensions.DiagDataBrowsing|OTX DiagDataBrowsing extension]] | [[Extensions.DiagDataBrowsing#Terms|DiagDataBrowsing terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 9: | Line 9: | ||
== Description == | == Description == | ||
− | '''GetResponseParameterList''' returns a list of strings containing the names of all response parameters of a | + | '''GetResponseParameterList''' returns a list of strings containing the names of all response parameters of a given diagnostic service . |
+ | |||
+ | {{Note|NOTE — In the case of a MVCI/ODX based system, the returned list shall contain the SHORT-NAMEs of all PARAM objects (enclosed in a PARAMS object of the first POS-RESPONSE). In case a response parameter is a complex parameter (e.g. a STRUCT) there is NO deep recursion into that parameter.}} | ||
{{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Return names of all response parameters of diagnostic services}} | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Return names of all response parameters of diagnostic services}} | ||
Line 16: | Line 18: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| DiagService | [[Core.DataTypes.ComplexDataType.DiagService|DiagService]] | [[Term]] | - | [1] | | + | {{TableRowPropertie1| DiagService | [[Core.DataTypes.ComplexDataType.DiagService|DiagService]] | [[Term]] | - | [1] | This element represents the diagnostic service whose response parameters shall be listed.}} |
|} | |} | ||
Revision as of 04:50, 26 September 2018
Contents
Classification
Name | GetResponseParameterList |
Short Description | Return names of all response parameters of diagnostic services |
Class | Term |
Extension | OTX DiagDataBrowsing extension |
Group | DiagDataBrowsing terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagDataBrowsing.GetResponseParameterList(DiagServiceTerm);
Description
GetResponseParameterList returns a list of strings containing the names of all response parameters of a given diagnostic service .
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 | Return names of all response parameters of diagnostic services |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
DiagService | DiagService | Term | - | [1] | This element represents the diagnostic service whose response parameters shall be listed. |
OTL Examples
List<String> List1;
DiagCom.ComChannel ComChannel1;
DiagCom.DiagService DiagService1;
ComChannel1 = DiagCom.GetComChannel("LL_AccesStartInterUDS", "", false);
DiagService1 = DiagCom.CreateDiagServiceByName(ComChannel1, "DiagnServi_ReadDataByIdentActuaTestStatu");
List1 = DiagDataBrowsing.GetResponseParameterList(DiagService1);
See also
GetComChannelList
GetEcuVariantList
GetDiagServiceList
GetRequestParameterList
GetAllowedParameterValueList