Classification
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