© 2026 InterSystems Corporation. All rights reserved.Privacy & TermsGuaranteeSection 508Contest Terms

Initial Release
This application generates an HTML report that validates whether each BI artifact in the namespace is functioning and identifies any errors encountered.
Are required a BI project deployed into any namespace
From your IRIS BI app, go to your IRIS terminal and execute:
$ zpm "install iris-bi-validator"
Or include as a dependency into your project module.xml file. See a sample:
<?xml version="1.0" encoding="UTF-8"?>
<Export generator="Cache" version="25">
<Document name="yourproject.ZPM">
<Module>
<Name>yourproject</Name>
<Version>1.0.0</Version>
<Dependencies>
<ModuleReference>
<Name>iris-bi-validator</Name>
<Version>*</Version>
</ModuleReference>
</Dependencies>
<Packaging>module</Packaging>
<SourcesRoot>src</SourcesRoot>
</Module>
</Document>
</Export>
$ Do ##class(dc.irisbivalidator.IrisBIValidator).ValidateAndGenerateReport("/home/irisowner/irisdev/validation_report.html")
** The path of the report can be any valid path in your environment **