CRS 2k8 v1 - Scheduling report to export DAILY with a set of parameter?

Dear all,
I have a report file (AccountBalance.rpt) with 2 parameter : BranchID, CurrencyType. Belongs to BranchID , this report will display all accounts balance of this Branch.
Example :If  I input BranchID : 000200, It will display all accounts balance in Sai Gon Branch.
Would you please tell me How to schedule to export this report ( to .pdf) for every Branch?
Thanks,

You may consider to use publication for this.

Similar Messages

  • After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    After creating a new slideshow I export it with the  setting HD 1080p it is then saved as a .mov i then create a dvd in idvd and the quality is not  as good as the original photo's when viewed on the monitor or a TV, am i doing something wrong?

    DVD's are only 640 x 480 (interlaced), so yes, the quality is not nearly as good.  You should probably create your .mov in DV format to best match the DVD format

  • Schedule report to run daily

    Hi,
    I want the Inventory Audit Report to run automatically daily (and thereby update the Last Evaluated Price).
    I know the report scheduler can schedule reports for user queries, but I need this out-of-the-box B1 report to run automatically with a predefined schedule.
    Thanks,
    Ajay Audich

    Hi Ajay,
    You can not Schedule Standard Report for Scheduling for Email.
    Please check below link for Scheduling Report and Email.
    How to Schedule Report Execution and Mailing
    You can also do this by ALERT Function of SAP B1.
    Please try to create Customized Query and Schedule for Specific Time Interval.
    Please check below link for ALERT MANAGEMENT.
    SAP Business One Queries and Alerts Management
    https://help.sap.com/saphelp_sbo882/helpdata/en/45/06437557240484e10000000a155369/content.htm
    If you have any issue in Creating Query then let us know.
    Hope this help
    Regards::::
    Atul Chakraborty

  • PL/SQL report running slow even with Shared_Servers set to 10

    I am running into a problem with a PL/SQL query that displays in the Report region. I have changed my Shared_Servers parameter and that has not helped. There are less than 10 users on the system. I ran debug and the app is running a long time (10 seconds) in "rows loop: 20 row(s)" where 20 is the number of rows displayed per page. If I run the query in regular SQL, then the results are displayed almost instantaneously. Any ideas?

    I figured out my problem. My statistics were out-of-date on one of my tables. I re-analyzed the table and that solved the problem. Now the results display within milliseconds. What a huge difference that made.

  • Crystal Report 10 Export Excel (with gridlines)

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

  • Copy structure of one report to another but with new set of data providers

    Hi,
    I have a requirement to copy the entire structure of a report into another new report but the new report will have a new set of data providers.
    How can we achieve this in BO V5.1.8?
    Thanks in Advance for your help.

    Hi,
    First thing first Take a copy of existing report,
    1.Open the report in edit mode.
    2.Click on the edit query.
    3.Click on the properties tab.
    4.Click on the universe name and change the universe with the new one.
    5.Now map the dimentions and measure of the new data provider to the old one.
    6.Run the report.
    Hope this will help you.
    Cheer,
    Ravichandra K

  • Scheduled report corruption

    Hi, we have been using BO Enterprise 11 for sometime without any problems, but recently scheduled reports are being produced with varying format issues. Sometimes a report is OK, but the next time it runs the layout of the report will be corrupted.
    Correct:
         Analysis of Open MCR Changes, by Logging Category not assigned to a Release
         Open Changes     Logged today
         Logging Category :     C MCR CANDIDATE      65      1
         Logging Category :     C MCR CHANGE      3      1
          68      2
         Analysis of Open MCR Changes, by Logging Item not assigned to a Release
         Logging Item:     MCR ORDER MANAGER SYSTEM      16
         Logging Item:     MCR WEBSITE LIVE      16
         Logging Item:     MCR ORDER PLACEMENT MANAGER SYSTEM      4
    Incorrect
         A
         Open Changes     nalysis of Open MCR Changes, by Logging Category not assigned to a Release     Logged today
         Logging Category :     C MCR CANDIDATE      65      1
         Logging Category :     C MCR CHANGE      3      1
          68      2
         A
         nalysis of Open MCR Changes, by Logging Item not assigned to a Release
         MCR ORDER MANAGER SYSTEM      16
         Loggi
         MCR WEBSITE LIVE      16
         Loggi
         MCR ORDER PLACEMENT MANAGER SYSTEM      4
         Loggi
    Any thoughts?
    Andy

    The problem is that, as Kappy says, the backup software cannot know the files have been corrupted. Hard drive damage - a frequent cause of corruption - can be repaired, but only an application that can read a particular file might know if it has been corrupted, and even then it might not be apparent until you notice errors in the data that the file should contain.
    The only way to protect against corruption is to:
    1) Keep incremental backups, like Time Machine does
    2) Keep a minimum of two _completely separate_ backups
    3) Use two different backup programs (I like Time Machine + [Carbon Copy Cloner|http://www.bombich.com>)
    4) Archive important files periodically to CDs, DVDs or additional hard drives and store them away somewhere cool, dry and dark and don't touch them again. Note that, even stored properly, they dyes in home-burned CDs and DVDs will eventually degrade and destroy the data they contain, so don't rely on these for seriously long-term storage.

  • Differentiate between report and generated scheduled report - report list

    How do I differentiate between a (.rpt) report and a (scheduled generated report) from this report (.rpt with data) when I list all the reports on the server.
    I need this information because when I view the scheduled report, I do not need to set the parameters via the crystal viewer.
    Thanks in advance.
    JM

    Ted.
    I am not sure why the scheduled report is saying si_instance=false.
    So I scheduled the sample report - Drilldown and named the scheduled instance as "DrilldownInstance",
    it created two info objects. One has SI_INSTANCE = true and the other has SI_INSTANCE = false!!!!!
    select * from CI_INFOOBJECTS
    where
    SI_PROGID = 'CrystalEnterprise.Report'
    and SI_KIND = 'CrystalReport'
    and si_name LIKE '%DrilldownInstance%'
    I presume it should have only created one object, and set si_instance=true
    Thanks,
    JM
    P.S
    Sorry to be a bother! but this is driving me nuts!
    Edited by: jam mend on Jan 20, 2009 9:07 PM

  • How to run report on command line with user parameter?

    Hi,
    How do I run oracle report on command line (batch) with pre-set User Parameter values ? e.g. :P_1 ='SYSDATE' , :P_2 = 'DEPT_NO'
    Thanks

    Hello,
    If you are using rwrun :
    rwrun report=myreport destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    If you are using rwclient , just add server=<reports server name> :
    rwclient server=myrepsevrername report=+myreport+ destype=file desname=c:\temp\myreport.pdf desformat=pdf P_1='SYSDATE' P_2='DEPT_NO' userid=scott/tiger@dbalias
    Regards

  • Crystal Reports Server - Scheduling Report Exports

    Dear Experts,
    We are using Crystal Reports Server XI Edition and we would like to schedule report exports. Crystal Reports Server configuration console allows us to automate report exports but apparently we could not find a way to pass report parameters and formulas from any export management tab. Naturally, each report needs to take different parameters but to our knowledge CRS management console does not have a screen that prompts us to key in or to read dynamic report parameters and formula. It simply uses the default report parameters. Can you confirm this please?
    To overcome this limitation, we are thinking of developing something like a script that directly interacts with CRS. The script would pass the name of the report, the report parameters and other relevant details like CMS username/ password.Do you think this is possible and if yes can you please point us to the key APIs required for scheduling report exports?
    My sincere thanks for your assistance.
    Kind Regards,
    Joseph.

    You are able to change the parameters for the report within the Central Management Console under the processing tab before scheduling. 
    Here is some sample applications that you can refer to in regards to doing this using the api:
    [http://www.businessobjects.com/global/doc/dev_zone/Java_SApps_q405.zip|http://www.businessobjects.com/global/doc/dev_zone/Java_SApps_q405.zip]

  • Scheduling a webi report and export the result in PDF on local disk

    I'm working with the new SDK to schedule a report and export its result on my local c:\ hard disk drive. My code give no errors at run but I do not find the file on my root.
    The Instance counter of the report increase each time, so there is a refresh.
    Is something wrong in the following lines? I just follow the examples give in the documentation for scheduling.
    Thanks in advance !
    Here is my code :
                   Destinations oDestinations = Destinations.Factory.newInstance();
                   Destination[] oDestination = new Destination[1];
                   oDestination[0] = Destination.Factory.newInstance();
                   oDestination[0].setName("CrystalEnterprise.DiskUnmanaged");
                   DiskUnmanagedScheduleOptions diskOptions = DiskUnmanagedScheduleOptions.Factory.newInstance();
                   String[] destinationFile = new String[1];
                   destinationFile[0] = "c:\\" + report_name + ".pdf";
                   DestinationFiles destinationFiles = DestinationFiles.Factory.newInstance();
                   destinationFiles.setDestinationFileArray(destinationFile);
                   diskOptions.setDestinationFiles(destinationFiles);
                   oDestination[0].setDestinationScheduleOptions(diskOptions);
                   oDestinations.setDestinationArray(oDestination);
                   System.out.println("Getting report...");
                   ResponseHolder respons = this.platform.get("path://InfoObjects/<path to report>/" + report_name, null);
                   InfoObjects reports = respons.getInfoObjects();
                   if (reports == null)
                        return;
                   Webi myReport = (Webi)reports.getInfoObjectArray()[0];
                   System.out.println("Getting scheduling info...");
                   SchedulingInfo schedulingInfo = myReport.getSchedulingInfo();
                   boolean newSchedulingInfo = false;
                   if (schedulingInfo == null)
                        schedulingInfo = SchedulingInfo.Factory.newInstance();
                        newSchedulingInfo = true;
                   System.out.println("Setting scheduling info...");
                   schedulingInfo.setRightNow(Boolean.TRUE);
                   schedulingInfo.setScheduleType(ScheduleTypeEnum.ONCE);
                   schedulingInfo.setDestinations(oDestinations);
                   WebiProcessingInfo webiProcessingInfo = myReport.getWebiProcessingInfo();
                   if(webiProcessingInfo == null) {
                        webiProcessingInfo = WebiProcessingInfo.Factory.newInstance();
                   WebiFormatOptions webiReportFormatOptions = webiProcessingInfo.getWebiFormatOptions();
                   if(webiReportFormatOptions == null)
                        webiReportFormatOptions = WebiFormatOptions.Factory.newInstance();
                   System.out.println("Setting Format...");
                   webiReportFormatOptions.setFormat(WebiFormatEnum.PDF);
                   webiProcessingInfo.setWebiFormatOptions(webiReportFormatOptions);
                   myReport.setWebiProcessingInfo(webiProcessingInfo);
                   if (newSchedulingInfo)
                        myReport.setSchedulingInfo(schedulingInfo);
                   System.out.println("Schedule...");
                   this.platform.schedule(reports);
                   System.out.println("Schedule done...");

    Hi Jerome,
    I have gon ethrough your code again and there we are missing the destination plugin.
    We have to query the info store to get the disk unmanaged plugin.
    Below is the code
    IDestinationPlugin destPlugin = null; //Destination plugin returned by InfoStore Query
            IDiskUnmanagedOptions diskUnmanagedOptions = null; //Object returned by the getSchedulingOptions() method
            List listDestination = null; //List object to hold destination file location
            IDestination destination = null; //Destination Interface
            //retrieve the Scheduling Options and cast it as IDiskUnmanagedOptions
            //This interface is the one which allows us to add the file location
            //for the scheduling
              for(int i = 0; i< oInfoObjects.getResultSize();i++)
               oInfoObject = (IInfoObject) oInfoObjects.get(i);
               destPlugin = (IDestinationPlugin)iStore.query( "SELECT * from CI_SYSTEMOBJECTS WHERE SI_PARENTID=29 and SI_NAME='CrystalEnterprise.DiskUnmanaged'").get(0);
              diskUnmanagedOptions = (IDiskUnmanagedOptions) destPlugin.getScheduleOptions();
            listDestination = diskUnmanagedOptions.getDestinationFiles();
              String dest = "c:\\";
            listDestination.add (dest + oInfoObject.getTitle()+".pdf");
              schedInfo = oInfoObject.getSchedulingInfo();
            schedInfo.setRightNow(true);
            schedInfo.setType(CeScheduleType.ONCE);
            //retrieve the IDestination interface from the SchedulingInfo object
            //use the setFromPlugin() to apply the changes we made to the
            //IDestinationPlugin object returned from the IStore
            destination = schedInfo.getDestination();
            destination.setFromPlugin(destPlugin);
              iStore.schedule(oInfoObjects);
    Regards,
    Prithvi

  • CRS 2008 Scheduled Report Runs Twice

    All,
    I have been using CRS 2008 for about 6 months now and have had scheduled reports running since the beginning. Last month I created new schedules for each report and deleted the old schedule. However, although the old schedule no longer shows in the History tab, it appears to still be running. As of right now, I have only one schedule per report, however, each report gets processed and saved out twice. This did not start happening until I created new schedules and deleted the old ones.
    Is there something else I have to do (or can do) in order to completely remove the old schedules or fix the new ones if that happens to be the issue?
    Thanks,
    Tom

    Fritz,
    Each report (of which there are 9 at this point), is set up in the following manner:
    1. Scheduled to run once a day (times staggered by 5 minutes for each starting at 12:15am)
    2. 6 are delivered to a folder on the network, 3 are delivered via email
    3. All have the same naming structure: InstanceTitle_DateTime.FileExt
    4. Each are formated as PDF
    Originally, the six that are delievered to a network folder were also delivered via email as well. This issue only started happening after I deleted those email deliveries. Also, the 3 that are still delivered via email and have never been modified after first being set up are now being run twice as well.
    After looking in the network folder this morning, it appears that only four of the six were run twice last night, while all six were run twice for the two nights before that.
    This is very frustrating since I have already deleted and started from scratch and still have this issue. Any help would be greatly appreciated. Thanks.

  • Excel exports/scheduled reports missing data labels

    Hi All,
    New to the forum so apologies if this has already been posted/answered.
    When saving Webi reports to Excel or reviewing scheduled reports in Excel myself and other recipients are noticing corrupted bar chart graphics whereby the only data labels visible is the first on the left only....all of that data is there in the hidden sheets yet not being displayed
    My own IT dept have been banging on about IE versions but this makes no sense as recipeints of the scheduled reports are also seeing the same problem and they're obviously not viewing/saving anything via a browser session.
    Does anyone have any clues as to what might be causing this...have reviewed all of the Excel 2007 options but nothing jumps out at me.
    Many thanks in advance
    SimonMc

    Hello,
    It uses custom views:
    SELECT MONTHS_BETWEEN (LAST_DAY (TRUNC (SYSDATE)), O278343.ACTUAL),
    O278047.ORGANISATION,
    O278047.JOB,
    O278047.GRADE,
    O278047.LOCATION,
    O278047.CAR_ENTITLEMENT,
    O278047.PENSION,
    O278047.ASSIGNMENT_CATEGORY,
    O278047.SUPERVISOR,
    O278047.NORMAL_HOURS,
    O278160.FIRST_NAME,
    O278160.LAST_NAME,
    O278160.GENDER,
    O278160.DATE_OF_BIRTH,
    O278160.ETHNIC_ORIGIN,
    O278160.EMPLOYEE_NUMBER,
    O278160.HIRE_DATE,
    O278160.ORIGINAL_HIRE_DATE,
    O278315.SALARY,
    O278315.PERCENTAGE_INCREMENT,
    O278315.SALARY_FROM,
    O278315.REASON_FOR_CHANGE,
    O278343.LEAVING_REASON,
    O278343.ACTUAL,
    O278481.PERSON_TYPE,
    O279218.COST_CODE,
    O288690.POST_CODE,
    O278343.ADDITIONAL_LEAVING_REASON
    FROM APPS.XX_ASSIGN O278047,
    APPS.XX_PERSON O278160,
    APPS.XX_SALARY O278315,
    APPS.XX_SERVICE O278343,
    APPS.XX_PERSONTYPE O278481,
    APPS.XX_COSTING O279218,
    APPS.XX_ADDRESS O288690
    WHERE ( (O278160.PERSON_ID = O278047.PERSON_ID)
    AND (O278160.PERSON_ID = O278343.PERSON_ID)
    AND (O278047.ASSIGNMENT_ID = O278315.ASSIGNMENT_ID(+))
    AND (O278160.PERSON_ID = O278481.TYPE_PERSON_ID)
    AND (O278047.ASSIGNMENT_ID = O279218.ASSIGNMENT_ID)
    AND (O278160.PERSON_ID = O288690.PERSON_ID))
    AND (TRUNC (SYSDATE) BETWEEN O278481.PT_EFFECTIVE_START
    AND O278481.PT_EFFECTIVE_END)
    AND (O278343.ACTUAL BETWEEN O279218.EFFECTIVE_FROM
    AND O279218.EFFECTIVE_TO)
    AND (O278343.ACTUAL BETWEEN O278047.ASSIGN_START_DATE
    AND O278047.ASSIGN_END_DATE)
    AND (O278343.ACTUAL IS NOT NULL)
    AND ( (MONTHS_BETWEEN (LAST_DAY (TRUNC (SYSDATE)), O278343.ACTUAL)) <=
    18)
    AND (O278481.PERSON_TYPE = 'Ex-employee')
    AND (NVL (TO_DATE (O288690.ADDRESS_DATE_TO),
    TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')) > TRUNC (SYSDATE))
    AND (O278315.SALARY_FROM(+) <= TRUNC (SYSDATE))
    AND (NVL (TO_DATE (O278315.SALARY_TO(+)),
    TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')) > TRUNC (SYSDATE))
    AND (TRUNC (SYSDATE) BETWEEN O278160.EFFECTIVE_DATE_FROM
    AND O278160.EFFECTIVE_DATE_TO)
    AND (TRUNC (SYSDATE) >= O288690.ADDRESS_DATE_FROM);
    Thanks
    Sarah

  • Need to Automate a Report to Export to File in CR9 Developer

    Post Author: KJ7
    CA Forum: General
    Hi... I'm not even sure if this is possible. I've got a fairly basic report - a control table with a key field that links to another table "work orders" with a primary key... from there, I have a few other tables (client, project, rooms, etc.) with ancillary keys which link back to that secondary table & give supporting information/details.
    I need to run this report nightly - which basically gives me the daily schedule by work order - and export the file to a file location as a CSV (ideally with "|") as the character separator (but tabs are OK too). 
    I've got the developer version of CR9 - because that (CR9) is what the other software we're running our SQL server utilizes to run the software is compatable with. 
    Can anyone out there tell me if what I need to do is even possible? (I'm not sure I an upgrade is an option).
    Thanks so much!
    ~Kara

    <p>Check this post in forum</p><p><a href="/node/1952"><font color="#048ed9">Handling CSV files from Crystal 10</font></a></p><p>Rahul</p>

  • Ssrs scheduled report

    Hello,
    Users are using a report daily which has two parameters:
    @Date and @clientName
    The users run this report for different month-ends manually...
    This report is now scheduled to run on the 10th of every month at 2:00 am. with th efollowing parameters:
    The @Date is set for the last day of the previous month.
    The @ClientName is always the same. i.e. @client1
    The way I have scheduled it is, say today is 21st July 2014, I placed the date 30 june 2014 into the @Date parameter.
    Question:
    Instead of me typing the date for the @Date parameter, i.e. 31 june 2014, how can the report do this so that it knows what @Date parameter to use when it automatically runs.
    If I do not manually change the @Date parameter, then for the following month it still uses 31 june 2014 but I have to manually change the scheduled report and enter 31 july 2014 for the next run and so forth.
    Remember that I do not want to change the format of the report because the users run this report too and they use different dates.
    Any suggestions please?

    Hi arkiboys,
    According to your description, you want the report can auto type the last day of the previous month as the @Date value, rather than manually type the date. To fix this issue, we can type the last day of the previous month with expression as the default value
    for the @Date. Then it automatically runs with the default date based on the date, without manually modification. For more details, please see:
    Edit the report with Report Builder.
    Right-click the @Date parameter to open the Report Parameter Properties dialog box.
    Click Default Values in the left pane.
    Specify a value with the expression below:
    =dateadd("d",-day(today),today)
    Users can change the date for the @Date parameter to others based on their region when he view the report.
    Hope this helps.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • How to switch analog output between two waveform frequencie​s

    Hello, I'm using a fairly simple VI to generate a square wave at our analog output board.  I have the square wave controls in one panel of a sequence structure, and a "release" function in the other panel of the sequence. Currently the VI is programm

  • Hide one value coming from DB in LOVs on ADF pages.

    Hi, We need to hide one value from user from List of values. We are populating the List of values from DB through Web service data control. We have L1 L2 L3 L4 L5 in the list of values But we dont want to see L5 in the list of values on the screen. N

  • SQL Query Report Very slow

    Hi I have a sql query report that is taking very long to render.The query on sql developer comes back in less than a second.Any ideas on what could be wrong?

  • How to save table data in MII MDO

    How to save table data in MII MDO - please do samples.....

  • Why won't my DVD play but works in Encore

    I have just finished editing a video of my daughter's school play using Premier Pro CS5. I used After Effects to create an opening motion menu with three user choices: Play Show Select Scene Select Song The links are all corect and everything does wh