HypIsConnectedToSharedConnections
Describes the Oracle Smart View for Office VBA function, HypIsConnectedToSharedConnections.
Cloud data provider types: Oracle Analytics Cloud - Essbase, Planning, Planning Modules, Financial Consolidation and Close, Tax Reporting
On-premises data provider types: Oracle Essbase, Oracle Hyperion Planning, Oracle Hyperion Financial Management
Description
HypIsConnectedToSharedConnections() determines 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 Example_HypIsConnectedToSharedConnections()
Dim vtRet As Variant
vtRet = HypIsConnectedToSharedConnections ()
MsgBox(vtRet)
End Sub