HypDisconnectAll

Oracle Smart View for OfficeのVBA関数、HypDisconnectAllについて説明します。

クラウド・データ・プロバイダ・タイプ: Oracle Analytics Cloud - EssbasePlanningPlanning ModulesFinancial Consolidation and CloseTax Reporting

オンプレミス・データ・プロバイダ・タイプ: Oracle EssbaseOracle Hyperion PlanningOracle Hyperion Financial Management

説明

HypDisconnectAllは、接続されているすべてのユーザーを切断し、ユーザー認証を無効化するセキュリティ対策です。「すべて切断」メニュー・アイテムに相当します。

構文

HypDisconnectAll()

戻り値

正常に終了した場合は0を戻し、それ以外の場合は該当するエラー・コードを戻します。

Declare Function HypDisconnectAll Lib "HsAddin" () As Long
Sub Example_HypDisconnectAll()
sts = HypDisconnectAll()	
End Sub