Difference between revisions of "Extensions.DiagDataBrowsingPlus.GetDbDiagServiceDisabledAdditionalAudiences"

From emotive
Jump to navigation Jump to search
Line 9: Line 9:
  
 
== Description ==
 
== Description ==
'''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.
+
'''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}}

Revision as of 06:43, 10 September 2018

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.

Icons Note.png NOTE — The appropriate MVCI system operation is MCDDbDataPrimitive::getDbDisabledAdditionalAudiences

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
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