ディレクトリのプロパティをフェッチします
Function DirProperties (
connectionContext As String,
sourcePath As String,
) As SVReportProperty()
connectionContext: Oracle Business Intelligence Enterprise EditionプロバイダのURL。
sourcePath: ディレクトリのパス。
AnalysisPropertiesの戻り値と同じです。SVReportPropertyの配列。配列の各要素は、分析の1つのプロパティを表します。SVReportPropertyの名前メンバーにはプロパティの名前が含まれます。値メンバーにはプロパティの値が含まれます。
Sub TestDirProp() Dim BIReport As IBIReport Set BIReport = New SmartViewOBIEEAutomation Dim result As Variant result = BIReport.DirProperties(“http://xxx.com:xxxx/analytics/jbips”,"/shared/SmartView/OBIEE/Yogini") End Sub