Posts

Showing posts from September, 2025

SSRS report (document reports) from the form based report - only Controller and RDP

Controller   /// <summary> ///    The <c>InventABCController</c> class is the controller class for the <c>InventABC</c> SSRS report. /// </summary> class NXRSamplingResultReportController extends SrsReportRunController  {         public void prePromptModifyContract()     {         Query                   query;         QueryBuildDataSource    qbds;         EDF_SamplingTable       samplingTable;         if (this.parmArgs().record().TableId == tableNum (prodTable))         {             samplingTable   =   this.parmArgs().record() as prodTable;             query           =   this.getFirstQuery();   ...