Posts

Showing posts from October, 2015

Open SSRS report through code with selected records

S3_ServiceOrderController            controller =  new  S3_ServiceOrderController();          S3_ServiceOrderContract              rdpContract =  new  S3_ServiceOrderContract();          ; // Added by Pramod on 24 th march 2015 start         controller.getReportName( ssrsR eportStr (S3_ServiceOrder1, ProformaPurchaseOrderDesign));         controller.parmShowDialog( fals e );         controller.parmReportContract( ).parmRdpContract(rdpContract) ;         rdpContract.parmPurchId( PurchParmTable.PurchId);         controller.startOperation();      // Ended Download the xpo f...