Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
== Description == | == Description == | ||
− | '''GetDbDiagServiceDisabledAdditionalAudiences''' returns a list of strings of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] in ODX. An empty list will be delivered if no disabled audiences defined. | + | '''GetDbDiagServiceDisabledAdditionalAudiences''' returns a list of [[Core.DataTypes.SimpleDataType.String|strings]] of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] in ODX. An empty list will be delivered if no disabled audiences defined. |
{{Note|NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getDbDisabledAdditionalAudiences}} | {{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 [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] in ODX.}} | + | {{TermReturnValue| [[Core.DataTypes.ComplexDataType.ContainerDataType.List|List]] | Returns a list of [[Core.DataTypes.SimpleDataType.String|strings]] of the short names of all disabled "Additional Audiences" (MCDDbAdditionalAudiences) for this [[Extensions.DiagDataBrowsingPlus.DbDiagService|DbDiagService]] in ODX.}} |
== Properties == | == Properties == |
Revision as of 06:41, 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