Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbParameterDisabledAdditionalAudiences"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:OTX '''GetDbParameterDisabledAdditionalAudiences'''}}Category:DiagDataBrowsingPlus == Classification == {{ClassificationActivity | GetDbParameterDisabledAdd...") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbParameterDisabledAdditionalAudiences'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbParameterDisabledAdditionalAudiences'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbParameterDisabledAdditionalAudiences | | + | {{ClassificationActivity | GetDbParameterDisabledAdditionalAudiences| Gets the data type of the [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbParameter 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;"> | ||
− | + | ListTerm = DiagDataBrowsingPlus.GetDbParameterDisabledAdditionalAudiences(DbParameterTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== Description == | == Description == | ||
− | + | '''GetDbParameterDisabledAdditionalAudiences''' returns a [[Core.DataTypes.ComplexDataType.ContainerDataType.List|list]] of [[Core.DataTypes.SimpleDataType.Strings|strings]] (Shortnames) of all disabled Additional Audiences. The list may be empty if there are no MCDDbAdditionalAudiences available. | |
− | + | ||
− | {{ | + | {{Note|NOTE — The appropriate MVCI system operation is MCDDbTableParameter::getDbDisabledAdditionalAudiences[]::getShortname}} |
− | {{ | + | |
− | + | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of [[Core.DataTypes.SimpleDataType.Strings|strings]] (Shortnames) of all disabled Additional Audiences.}} | |
== Properties == | == Properties == | ||
− | |||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{ | + | {{TableRowPropertie2| dbParameter | [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] | [[Term]] | - | [1..1] |The element addresses the [[Extensions.DiagDataBrowsingPlus.DbParameter|DbParameter]] (MCDDbTableParameter) which disabled Additional Audiences shall be returned.}} |
|} | |} | ||
− | |||
== OTL Examples == | == OTL Examples == | ||
− | |||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | DiagCom. | + | DiagCom.Parameter Parameter; |
+ | DiagDataBrowsingPlus.DbParameter DbParameter; | ||
+ | List<String> List_String; | ||
− | + | /// Flow | |
− | + | Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentActuaTestStatu")), {"Param_RequeServiId"}); | |
− | + | DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter); | |
− | + | List_String = DiagDataBrowsingPlus.GetDbParameterDisabledAdditionalAudiences(DbParameter); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== See also == | == See also == | ||
− | + | [[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/> | |
+ | [[Extensions.DiagCom.CreateDiagServiceByName|CreateDiagServiceByName]] <br/> | ||
+ | [[Extensions.DiagCom.ExecuteDiagService|ExecuteDiagService]] <br/> | ||
+ | [[Extensions.DiagCom.GetFirstResponse|GetFirstResponse]] <br/> | ||
+ | [[Extensions.DiagCom.GetRequest|GetRequest]] <br/> | ||
+ | [[Extensions.DiagCom.GetParameterByPath|GetParameterByPath]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetParameterDbParameter|GetParameterDbParameter]] |
Revision as of 04:01, 13 September 2018
Contents
Classification
Name | GetDbParameterDisabledAdditionalAudiences |
Short Description | Gets the data type of the DbParameter |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbParameter related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagDataBrowsingPlus.GetDbParameterDisabledAdditionalAudiences(DbParameterTerm);
Description
GetDbParameterDisabledAdditionalAudiences returns a list of strings (Shortnames) of all disabled Additional Audiences. The list may be empty if there are no MCDDbAdditionalAudiences available.
![]()
NOTE — The appropriate MVCI system operation is MCDDbTableParameter::getDbDisabledAdditionalAudiences[]::getShortname
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 | Returns a list of strings (Shortnames) of all disabled Additional Audiences. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
dbParameter | DbParameter | Term | - | [1..1] | The element addresses the DbParameter (MCDDbTableParameter) which disabled Additional Audiences shall be returned. |
OTL Examples
DiagCom.Parameter Parameter;
DiagDataBrowsingPlus.DbParameter DbParameter;
List<String> List_String;
/// Flow
Parameter = DiagCom.GetParameterByPath(DiagCom.GetRequest(DiagCom.CreateDiagServiceByName(DiagCom.GetComChannel("LL_GatewUDS", "EV_GatewLear_006", false), "DiagnServi_ReadDataByIdentActuaTestStatu")), {"Param_RequeServiId"});
DbParameter = DiagDataBrowsingPlus.GetParameterDbParameter(Parameter);
List_String = DiagDataBrowsingPlus.GetDbParameterDisabledAdditionalAudiences(DbParameter);
See also
GetComChannel
CreateDiagServiceByName
ExecuteDiagService
GetFirstResponse
GetRequest
GetParameterByPath
GetParameterDbParameter