HypOpenForm

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

クラウド・データ・プロバイダ・タイプ: PlanningPlanning ModulesFinancial Consolidation and CloseTax Reporting

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

説明

HypOpenForm ()は、指定されたフォームを開きます。

構文

HypOpenForm (vtSheetName, vtFolderPath, vtFormName, vtDimensionList(), vtMemberList())

ByVal vtSheetName As Variant

ByVal vtFolderPath As Variant

ByVal vtFormName As Variant

ByRef vtDimensionList() As Variant

ByRef vtMemberList() As Variant

パラメータ

vtSheetName: 関数を実行するワークシートの名前。vtSheetNameがNullまたはEmptyの場合、アクティブなワークシートが使用されます。

vtFolderPath: フォルダのパス名

vtFormName: データ・フォームの名前

vtDimensionList(): 未使用

vtMemberList(): 未使用

戻り値

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

Public Declare Function HypOpenForm Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtFolderPath As Variant, ByVal vtFormName As Variant, ByRef vtDimensionList() As Variant, ByRef vtMemberList() As Variant) As Long

Sub Example_HypOpenForm()
  Dim DimList() As Variant
  Dim MemList() As Variant
  sts = HypOpenForm(Empty, "/Forms/data1", "data1", DimList, MemList)
  MsgBox (sts)  
End Sub