IsParameterized: Boolean;
The IsParameterized property returns True, if the cube used as the express report data source is a parameterized cube.
Sub Main;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
s: String;
Begin
MB:=MetabaseClass.Active;
Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
If Expr.IsParameterized Then
s:="Yes";
Else
s:="No";
End If;
End Sub Main;
After executing the example the s variable contains Yes if the express report is based on a parameterized cube. Express report identifier - EXPRESS_REPORT.
See also: