HypIsConnectedToSharedConnections

Data Source Types: Essbase, Planning, Financial Management, Hyperion Enterprise

Description

HypIsConnectedToSharedConnections() checks whether SmartView is connected to Shared Connections.

Syntax

HypIsConnectedToSharedConnections ()

Return Value

Return: true if Smart View is connected to Shared Connections, otherwise false.

Example

Declare Function HypIsConnectedToSharedConnections Lib "HsAddin" () As Variant
Sub SubIsSharedConnectedTest()
Dim vtRet As Variant
vtRet = HypIsConnectedToSharedConnections ()
MsgBox(vtRet)
End Sub