AnalysisProperties
Description
Fetch the properties of an analysis.
Syntax
Function AnalysisProperties(
connectionContext As String,
sourcePath As String,
analysisName As String
) As SVReportProperty()
Parameters
connectionContext: The Oracle Analytics Cloud provider URL.
sourcePath: The path of the analysis.
analysisName: The name of the analysis.
Return Value
An array of SVReportProperty. Each element in the array represents one property of the analysis. SVReportProperty’s name member contains the name of the property, and the value member contains the value of the property.
Example
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