プライマリ・コンテンツへ移動
Oracle® Smart View for Office開発者ガイド

E88265-01
目次に移動
目次

前
次

AnalysisProperties

説明

分析のプロパティをフェッチします。

構文

Function AnalysisProperties(

connectionContext As String,

sourcePath As String,

analysisName As String

) As SVReportProperty()

パラメータ

connectionContext: Oracle Business Intelligence Enterprise EditionプロバイダのURL。

sourcePath: 分析のパス。

analysisName: 分析の名前。

戻り値

SVReportPropertyの配列。配列の各要素は、分析の1つのプロパティを表します。SVReportPropertyの名前メンバーにはプロパティの名前が含まれ、値メンバーにはプロパティの値が含まれます。

Sub TestAnalysisProp()

Dim BIReport As IBIReport
Set BIReport = New SmartViewOBIEEAutomation

Dim result As Variant

result = BIReport.AnalysisProperties(“http://xxx.com:xxxx/analytics/jbips”,"/shared/SmartView/OBIEE", "svdevusr")

End Sub