Posts

Showing posts from February, 2019

How to run Our Design in SalesPackingSlip Standard SSRS report?

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...
Image
How to create a table? In the AOT, expand the  Data Dictionary  node. Right-click the  Tables  node, and then select  New Table . Right-click the table, and then click  Properties . Rename the table by modifying the  Name  property. To specify the table as temporary, set the  Temporary  property to Yes. Modify additional table properties, as needed.  To delete the table, right-click it, and then click  Delete .