分析のプロパティをフェッチします。
Function AnalysisProperties(
connectionContext As String,
sourcePath As String,
analysisName As String
) As SVReportProperty()
connectionContext: Oracle BI EEプロバイダの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", "reshma")
End Sub