How to run Our Design in SalesPackingSlip Standard SSRS report? To run our Design in a standard SSRS Report(SalesPackingSlip), do this in the controller class. //Class Declaration Part in the controller class MenuItemName reportChina; #define.chineseReport('SalesPackingSlipOriginal') #define.reportDesign('SalesPackingSlip.ReportNew') //outputReport Method in controller To run the report protected void outputReport() { if (this.parmReportChina() == #chineseReport) { this.parmReportName(#reportDesign); this.parmReportContract().parmReportName(#reportDesign); formLetterReport.parmReportRun().settingDetail().parmReportFormatName(#reportDesign); } super(); } //parmReportChina Method in controller To set a...
How to calculate On Hand Inventory Per Day class KK_OnHandPerDay { /// <summary> /// Runs the class with the specified arguments. /// </summary> /// <param name = "_args">The specified arguments.</param> public static void main(Args _args) { ItemId itemId; InventTrans inventTrans; InventDim inventDimCriteria, inventDimLoc; InventDimParm inventDimParm; InventSumDateDim inventSumDateDim; TransDate start, finish; int c; int onHandTotal; InventLocationId inventLocationIdLoc; start = str2date("6/24/2019", 213);//3/12/2019 ...
Comments
Post a Comment