ICustomAttributeServiceGetEffectiveValuesForAccount Method |
Retrieve the effective custom attribute value of an account.
Namespace:
Dundas.BI.AccountServices
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (9.0.0.1000)
SyntaxIDictionary<Guid, CustomAttributeValue> GetEffectiveValuesForAccount(
Guid accountId
)
Function GetEffectiveValuesForAccount (
accountId As Guid
) As IDictionary(Of Guid, CustomAttributeValue)
IDictionary<Guid, CustomAttributeValue^>^ GetEffectiveValuesForAccount(
Guid accountId
)
abstract GetEffectiveValuesForAccount :
accountId : Guid -> IDictionary<Guid, CustomAttributeValue>
Parameters
- accountId
- Type: SystemGuid
ID of the account.
Return Value
Type:
IDictionaryGuid,
CustomAttributeValue
A dictionary containing all effective custom attributes of the account with the specified ID
having the ID of the custom attribute as the key and the corresponding
CustomAttributeValue
object as the value.
Exceptions| Exception | Condition |
|---|
| ArgumentException | accountId is Empty. |
| NotFoundException | The account with the specified ID was not found. |
| NoPrivilegeException |
The caller is not a system administrator or tenant administrator for the tenant associated with the account.
|
| InvalidSessionException | The caller context is not associated with a valid session. |
See Also