Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:OTX '''GetDbDiagServiceDisabledAdditionalAudiences'''}}Category:DiagDataBrowsingPlus == Classification == {{ClassificationActivity | GetDbDiagServiceDisable...") |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''GetDbDiagServiceDisabledAdditionalAudiences'''}}[[Category:DiagDataBrowsingPlus]] | {{DISPLAYTITLE:OTX '''GetDbDiagServiceDisabledAdditionalAudiences'''}}[[Category:DiagDataBrowsingPlus]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetDbDiagServiceDisabledAdditionalAudiences | | + | {{ClassificationActivity | GetDbDiagServiceDisabledAdditionalAudiences | Returns a list of strings of the short names of all disabled "Additional Audiences" | [[Term]] | [[Extensions.DiagDataBrowsingPlus|OTX DiagDataBrowsingPlus extension]] | [[Extensions.DiagDataBrowsingPlus|DbDiagService 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.GetDbDiagServiceDisabledAdditionalAudiences(DbDiagServiceTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== Description == | == Description == | ||
− | + | '''GetDbDiagServiceDisabledAdditionalAudiences''' returns a list of strings of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this DbDiagService in ODX. An empty list will be delivered if no disabled audiences defined. | |
− | + | ||
− | {{ | + | {{Note|NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getDbDisabledAdditionalAudiences}} |
− | {{ | + | |
− | + | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of strings of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this DbDiagService in ODX.}} | |
== Properties == | == Properties == | ||
− | |||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| | + | {{TableRowPropertie1| dbDiagService | [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] | [[Term]] | - | [1..1] | The element addresses the [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] whose 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;"> | ||
− | + | DiagDataBrowsingPlus.DbComChannel DbComChannel; | |
+ | List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService; | ||
+ | List<String> List_String; | ||
− | + | /// Flow | |
− | + | DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AllEmissRelatUDSSyste"); | |
− | + | List_DbDiagService = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannel); | |
− | + | List_String = DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences(List_DbDiagService[0]); | |
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | ||
== See also == | == See also == | ||
− | + | [[Extensions.DiagDataBrowsingPlus.GetComChannelDbComChannel|GetComChannelDbComChannel]] <br/> | |
+ | [[Extensions.DiagDataBrowsingPlus.GetDbComChannel|GetDbComChannel]] <br/> | ||
+ | [[Extensions.DiagDataBrowsingPlus.GetDbComChannelDbDiagServices|GetDbComChannelDbDiagServices]] |
Revision as of 04:34, 10 September 2018
Contents
Classification
Name | GetDbDiagServiceDisabledAdditionalAudiences |
Short Description | Returns a list of strings of the short names of all disabled "Additional Audiences" |
Class | Term |
Extension | OTX DiagDataBrowsingPlus extension |
Group | DbDiagService related terms |
Exceptions | NONE |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ListTerm = DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences(DbDiagServiceTerm);
Description
GetDbDiagServiceDisabledAdditionalAudiences returns a list of strings of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this DbDiagService in ODX. An empty list will be delivered if no disabled audiences defined.
![]()
NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getDbDisabledAdditionalAudiences
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 of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this DbDiagService in ODX. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
dbDiagService | DbDiagService | Term | - | [1..1] | The element addresses the DbDiagService whose disabled additional audiences shall be returned. |
OTL Examples
DiagDataBrowsingPlus.DbComChannel DbComChannel;
List<DiagDataBrowsingPlus.DbDiagService> List_DbDiagService;
List<String> List_String;
/// Flow
DbComChannel = DiagDataBrowsingPlus.GetDbComChannel(NULL, "LL_AllEmissRelatUDSSyste");
List_DbDiagService = DiagDataBrowsingPlus.GetDbComChannelDbDiagServices(DbComChannel);
List_String = DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences(List_DbDiagService[0]);
See also
GetComChannelDbComChannel
GetDbComChannel
GetDbComChannelDbDiagServices