Is it possible to reschedule a report??

Hi Friends,
I have encountred a quick question by a customer like " Is it possible to re-schedule a report" what I  could in Crystal reports.
As of now I came know we can schedule a report at specified a date and time but how to re-schedule a report immediately.
Regards,
Venkat

You can try using SSRS cascading parameter.
http://technet.microsoft.com/en-us/library/aa337498(v=sql.105).aspx
http://markvsql.com/2013/08/ssrs-cascading-multi-value-parameters/
Regards, RSingh

Similar Messages

  • Error in rescheduling a report programatically

    Hi All,
    I am trying to reschedule a report to use a new password using a c# program. But when I run the new schedule, the instance always shows "running" status. If I click on the status, I get the message "An error has occurred: The property with ID SI_NAME does not exist in the object" .  Please find below the code snippet. Am I missing something?
    IDE: VS 2005
    Server : CRS 2008 V1
    BOE SDK Version: 12.0.1100.0
    What I am trying to do is
    1. Find the recurring schedules in the Crystal Server
    2. Load their parent reports
    3. Reschedule the parent reports
    4. Delete the old recurring schedule
    Is there any other way to update the properties (like db password) on a recurring schedule?
    =======================================================================
    SessionMgr sessionMgr = new SessionMgr();
    EnterpriseSession entSession = sessionMgr.Logon(lUid, lPwd, lServer, lAuth);
    EnterpriseService entService = entSession.GetService("InfoStore");
    InfoStore infoStore = new InfoStore(entService);
    string query = "select SI_ID, SI_NAME, SI_PARENTID from ci_infoobjects where si_recurring = 1 and SI_NAME = 'TEST REPORT'";
    InfoObjects infoObjs = infoStore.Query(query);
    foreach (InfoObject infoObject in infoObjs)
        //Get the si_id for the parent report
        strParentID = infoObject.ParentID.ToString();
        //Load the parent report object
        string rptquery = "Select SI_NAME, SI_ID From CI_INFOOBJECTS Where SI_KIND='CrystalReport'And SI_ID =" + strParentID;
        InfoObjects infoObjects = infoStore.Query(rptquery);
        InfoObject infoObjectrpt = infoObjects[1];
        Report report = (Report)infoObjectrpt;
        SchedulingInfo schedulingInfo = report.SchedulingInfo;
        schedulingInfo.Type = CeScheduleType.ceScheduleTypeDaily;
        schedulingInfo.RightNow = false;
        ReportFormatOptions rfo = report.ReportFormatOptions;
        rfo.Format = CeReportFormat.ceFormatPDF;
        ReportPrinterOptions reportPrinterOptions = report.ReportPrinterOptions;
        reportPrinterOptions.Enabled = true;
        reportPrinterOptions.Copies = 1;
        reportPrinterOptions.FromPage = 1;
        reportPrinterOptions.ToPage = 1;
        infoStore.Schedule(infoObjects);
        //Delete existing schedule
        infoObject.DeleteNow();
        infoStore.Commit(infoObjects);
    infoStore.Dispose();
    infoObjs.Dispose();
    ========================================================
    Thanks
    Ajith

    Hi All,
    Can someone help me with this please? I am not able to schedule a report using sdk. It does create an instance, but it fails with the error "Information is needed before this report can be processed.". The instance also shows around 15 parameters for a report that has only 5 parameters.  Any  help is highly appreciated.
    Thanks
    Ajith

  • Is it possible to run ALV report in background if Yes how?

    is it possible to run ALV report in background if Yes how?

    Hi,
    Why not?Through se38 only you create ALV report. there you can give your report name and go to program on menu bar - click - execute buton- click-Background . You will get new screen there you can choose Execute immediate or schedule.
    <REMOVED BY MODERATOR>
    Cheers,
    Chandra Sekhar.
    Edited by: Alvaro Tejada Galindo on Mar 4, 2008 2:12 PM

  • Is it possible to optimize a report painter?

    Hi Experts,
    Is it possible to optimize a report painter? How?
    It's too risky too edit the codes since all of the programs are SAP Standard programs. I already added indices in to the customized tables. But still it takes me 12 minutes to excute this report painter.
    I tried to debug the codes there are several and nested perform routines inside the loop.Have you tried modifying a report painter program?
    Thanks. Points will be given...

    hi,
    Check this -
    For Report Painter
    http://help.sap.com/saphelp_47x200/helpdata/en/66/bc7d2543c211d182b30000e829fbfe/content.htm
    http://searchsap.techtarget.com/searchSAP/downloads/Teach_yourself_SAP_C20.pdf#search=%22CREATE%20REPORT%20USING%20SQVI%20%2C%20SAP%22
    Re: Interactive ALV
    With Regards
    Madhu

  • Is it possible to call diff  report queries when called from form

    hello all
    I want to know if it is possible to call different report queries when called from oracle 9i form .
    i tried to use he
    SET_REPORT_OBJECT_PROPERTY(REPORT_QUERY = 'q_diff' )
    option and actualy called the report name
    but it dint seem to work !!!
    also is it possible to chng the title of the browser at runtime

    Sandeep,
    this property is used with passing Record Groups as data parameters from Forms.
    Passing the query name indicates that the values contained in the record group substitutes the result of the named query. This may work in client/server Reports, but it definitively doesn't work on teh Web because you can't pass a Record Group as a data parameter in this environment.
    Te problem with changing a Reports query is that you must meet the same number of columns and column types as they exist in the Report. I didn't spend much time with XML based runtime customization in Reports. I think that you can change the Reports query through this feature. In Forms you would create the XML file using text_io and the merge it with an existing Reports. I never did this before. So it could be that all I am saying does not work in the end. Before following this idea, you may better ask in teh Reports forum on OTN if it is possible to use the runtime customization feature to modify the Reports query.
    Fran

  • Is it possible to create a Report Object in a menu?

    Hi all,
    I 'm working on an oracle report wherein the user will not give any parameter.
    They would like to view the report by clicking on the menu option for this report and it should then open the report in an new browser window
    in pdf format.
    My question:
    Is it possible to create a report object in the menu?how can we do this?
    I'm working on Oracle reports version Report Builder 10.1.2.0.2
    TIA

    Thanks for your prompt reply.
    Through form I'm able to create report object and report is displayed successfully.
    I'm using the following code:
    DECLARE
              report_id Report_Object;
              ReportServerJob VARCHAR2(100);
              rep_status VARCHAR2(50);
    BEGIN
              report_id:= find_report_object('Report1');
              SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'vouno='||:vouno||' paramform=no');
              ReportServerJob:=run_report_object(report_id);
              rep_status:=REPORT_OBJECT_STATUS(ReportServerJob);
              WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
              LOOP
                        rep_status := report_object_status(ReportServerJob);
              END LOOP;
              IF rep_status = 'FINISHED' THEN
              WEB.SHOW_DOCUMENT('http://sushma:8889/reports/rwservlet/getjobid'||
              substr(ReportServerJob,instr(ReportServerJob,'_',-1)+1)||'?'||'server=rep_sushma','_blank');
              ELSE
                        message('Error when running report');
              END IF;
    END;
    I'm not able to use the same code in Menu, as there is no way to create report object "Report1"
    Or is there any was to create object.
    So in place of report_id:= find_report_object('Report1');
    I used report_id:= find_report_object('c:\.... *.RDF');

  • Is it possible to run a report from another machine?

    Lets say you design a report on machine A that contains the CR Developer Software Package.
    Is it possible to execute the report from machine B that does not contain CR Developer Package?
    Is there tool or a command that you can run that will execute the report created in machine A?
    Thanks in advance,
    Zack H.

    Crystal Enterprise (or BOE) will run a report developed on machine A and imported to a repository on the CE/BOE machine.  Is that what you mean?  Or, I suppose anything that can run a Crystal Report given the file name could run it if the UNC path is given for the file name (assuming database connections are set up on the running machine)...
    HTH,
    Carl

  • Is it possible to add sub-reports at runtime?

    Post Author: saibot83
    CA Forum: General
    Hello,I have a vast amount of reports. The user can select a list of reports and group them.  I want the user to be ableto treat the report group as a single report (I.e. export to a single pdf file instead of 10 etc.) Is is possible to create an empty report that I can use to group all the reports that the user has selected into one?or Is it possible to design  a report at runtime? I am using CR with VS .NET 2005. And have not found a way.  Does the Developer version of CR allow me to do this? Any help will be greatly appreciated. Best Regards,Tobias  Any help will be appreciated.

    Post Author: [email protected]
    CA Forum: General
    At first thought, if each subreport is a parameter, you can put a subreport in each section and conditionally suppress the section when
    isnull(?Parameter)

  • Possibility to have BI reports as a Gadget in igoogle

    Hi Guys,
    Would you know if it is possible to have bi reports as a gadget in igoogle and if yes, how I would do that?
    Regards
    B.

    Hi Vasu,
    If I understand you correct, you want to group the data on Region level and add a Region parameter on the report. If I have anything misunderstood, please point it out.
    In MDX, there is no direct equivalent to a "GROUP BY". Currently, adding a Region attribute is by far the easiest way to do this. With an attribute the query is trivial and it will work in other client tools like Excel. If you want to achieve it on query
    level, you have to manually generate members to aggregate each Region. I am afraid it will be much more complex. Here is a blog about GROUP BY query on MDX, please refer to the link below.
    http://geekswithblogs.net/darrengosbell/archive/2009/01/28/mdx-equivalent-of-a-filtered-group-by-in-sql.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Is it possible to develop Flexsible reports in apex as Hyperion pivot?

    dear friends
    Is it possible to develop Flexsible reports in apex as Hyperion pivot, Tree
    extendable, drog & drop report as in Hyperion interactive reports?
    regrards?

    Is it possible to create these reports with Business Publisher?
    regards

  • Is it possible to create dynamic reports using iReports in netbeans ?

    Hi
    I want to know that is it possible to create dynamic reports using netbeans? Dynamic reports means based on user selection(for eg. say by selecting values from combo boxes) some query will be genatated and fetch the query result from data base and displayed results in iReports only my problem is i am working on Netbeans IDE and i have installed iReports as plugins in netbeans IDE. and i am not able to find any tutorial that show me how to work with iReports under netbeans IDE. and how to create dynamic reports in iReports. If u know any such tutorial then can you send me link plz...!
    Thanks

    What do you mean by "in Start Menu"? Do you mean Live tile? See https://msdn.microsoft.com/en-us/library/windows/apps/hh465403.aspx
    https://msdn.microsoft.com/en-us/library/windows/apps/dn468032.aspx
    Best Regards,
    Please remember to mark the replies as answers if they help

  • Proxy error when Rescheduling a report

    When rescheduling a report  we get "An error has occurred: $Proxy8" after we click the Parameter tab.  Restarting the browser and rebooting the computer do not fix the problem.

    Sometimes I have the same problem.  So what I do is logging off , wait some miutes and log in again and I reschedule again the report.
    In this link someone explained a workaround for this behavior:
          Rescheduling PDF Reports Error
    hope this helps.

  • Is i possible to base a report on a pl/sql stored procedure

    Is i possible to base a report on a pl/sql stored procedure?
    If Yes please give directions on how to do it.
    /morten

    Hello Morten,
    In Reports 9i, with new feature JDBCPDS its possiable to create a report against a existing stored procedure.
    Using JDBCPDS, user can access any JDBC-enabled data source. You can access database like Oracle, DB2, Sybase, ODBC Data Sources, etc using supporting
    JDBC Drivers. User can also connect ODBC Data Sources like SQL Server, MS-Access, Excel etc.
    User can create a JDBC Query angainst a SQL Query or Stored Procedure in any of mentioned dataSource.
    Following is the syntax of the Oracle Stored Procedure, which can be used as Data Source with JDBCPDS.
    Steps to create a JDBCPDS Report through Report Builder : http://otn.oracle.com:8877/reports/help/ - > JDBCPDS- > How To
    //----------Package definition for Ref cursor ----------/
    package test_Procedure as
    type empcurProcedure5 is ref cursor;
    end test_tryProcedure5;
    // -----------Procedure definition ---------//
    test_Procedure(p_emp_cv out test_tryProcedure5.empcurProcedure5,
    p1 in NUMBER) is
    begin
    update emp set sal=sal + 50 where deptno > P1
    open p_emp_cv for select * from emp where deptno > P1;
    end test_Procedure;
    Procedure first parameter will be Ref Cursor and will be used to return the resultSet to JDBC Query.
    User should create first this procedure in Database. Then in JDBC Query Dialog, user can call this stored procedure by specifying procedure name.
    test_Procedure(40)
    Please see ORACLE_HOME/reports/conf/jdbcpds.conf for more Connection and
    JDBC-Driver information.
    With Regards
    Reports Team

  • Rescheduling Excel Reports Error ($Proxy4, $Proxy5)

    Similiar to Reschduling PDF Reports in Crystal Reports 12 thread (Re: Rescheduling PDF Reports Error;), I am unable to re-schedule excel reports.  Crystal Reports 12 is giving a proxy4 or proxy5 error message when clicking on either the parameter section or print settings section of the report prior to scheduing.
    Is this resolved in a later fix pack or service pack?  I am currently using Crystal Reports 12.1.0
    Edit:  Corrected Version #
    Thanks!
    Edited by: Jeff F. on Feb 15, 2011 5:13 PM

    ADAPT01113079
    Problem Description: Same functionality works fine in XIR2 and all its packages. However, this
    functionality breaks from XI 3.0.
    In Infoview schedule the report to pdf format, and once it goes to success.
    Click on the reschedule option and then click on the parameter option.
    The error "An error has occurred:$Proxy4" will be thrown.
    Target Fix: XI 3.0 FP1
    Workaround: No
    It looks like this was fixed in FP1 released a while ago. Can you download patches from SMP or ESD?
    Also I'm moving this post to the administration forum, that's where server issues should be posted for maximum response.
    Regards,
    Tim

  • Is it Possible to Create Custom Report in SOLMAN

    Hi Experts,
                         I am new to SOLMAN. I have one question. Is it Possible to create our own custom Reports in SOLMAN. If possible
    tell me the variuos types of reports and how we can create.

    Hi
    SAP Solution Manager can be used for entire ALM so you need to clearly specify which area and what report you are talking about
    http://www.sdn.sap.com/irj/sdn/alm-getting-started
    General transaction code for reporting is
    SOLAR_EVAL
    it helps you to build the entire project report phase wise or for service desk or for charms or test management etc
    check if that you are looking for.
    regards
    Prakhar

Maybe you are looking for

  • What to do when you have a new mac but an old Ipod??????

    Hi everyone I'v got bit of a problem. I just got a new mac, and I want to get all my songs from my ipod in the itunes on the new mac. Is this possible, cause I simply just can't see how this is suppose to be done. Any out there who know??

  • Is my Mac Pro 9 compatible?

    Hi The school I work for have Logic Pro 8 on a G5 Power Mac quad running OS x 10.5.8 ( 4 x 2.5 Ghz Power Mac processors, 4 Gb RAM ). I heard that this might not run Logic Pro 9 , or at least Apple won't support Power Mac processors. Do I need to reco

  • Adding two double numbers is a problem

    Hi friends.. when we try to add the two double numbers say, 119.52, 10.00 here we should get 129.52 but it is giving as 129.51999999999998 Here i want to round this to two digits after decimal point if i round the above value i will get 129.52 and th

  • CUP 5.3 SP8 - Requests with several roles that have different approvers

    Hello, Here is a simplified version of a scenario we are testing in CUP: A Request to add 2 roles to a user is created. Role 1 has Role Approver1 only Role 2 has Role Approver 2 only When Role Approver1 logs into CUP to approve Role 1, he still sees

  • Uninstall Acrobat Pro

    I want to clean up one PC but, when trying to uninstall Adobe Acrobat 8.1.2 Professional from control panel, the message says The patch package could not be opened. Any ideas?