HypDisconnectAll
Oracle Smart View for OfficeのVBA関数、HypDisconnectAllについて説明します。
クラウド・データ・プロバイダ・タイプ: Oracle Analytics Cloud - Essbase、Planning、Planning Modules、Financial Consolidation and Close、Tax Reporting
オンプレミス・データ・プロバイダ・タイプ: Oracle Essbase、Oracle Hyperion Planning、Oracle Hyperion Financial Management
説明
HypDisconnectAllは、接続されているすべてのユーザーを切断し、ユーザー認証を無効化するセキュリティ対策です。「すべて切断」メニュー・アイテムに相当します。
構文
HypDisconnectAll()
戻り値
正常に終了した場合は0を戻し、それ以外の場合は該当するエラー・コードを戻します。
例
Declare Function HypDisconnectAll Lib "HsAddin" () As Long
Sub Example_HypDisconnectAll()
sts = HypDisconnectAll()
End Sub