Scheduled CUIC Reports losing filtering criteria.

CUIC 10.01
ICM 9.0
We have a reoccurring issue where some scheduled reports fail with this message:
"SCHEDULED REPORT EXECUTION FAILED - DATA-PROCESSING-CENTER-ERROR"
When I access the report, the filtering criteria is missing.  Once I define the criteria and save the report, it works again.  This has happened to a few different scheduled reports and is not limited to one report type/definition.
Any ideas?
Thanks!

here you go: 
https://software.cisco.com/download/special/release.html?config=7743258e122971fd6cfad709bbc2ce5a

Similar Messages

  • Scheduling CUIC reports on CCX 9

    I have been exploring the embedded CUIC that comes with UCCX 9.0.   I am able to run basic reports just fine, but am not able to determine how to schedule reports using relative time periods.
    What I am trying to do is schedule a daily report, that emails me summary info for CSQ activity.
    When I try to schedule the report, it makes me specify an absolute date and time range.  For example Jan 1 2013 00:00:00 through Jan 1 2013 23:59:59.   I can run this report through the scheduler, and each time I receive the report, it shows data from Jan 1.  
    I can't seem to figure out how to specify relative times.   The help documentation makes mention of using the 'relative time' option, but I don't see it and can not figure out how to configure this.
    Does anyone know what I am doing wrong ?

    As soon as I upgraded to 9.0.2 I saw the relative options.  They were right next to the absolute time option.   I'm not sure why you wouldn't see it.  Are you looking at existing scheduled reports?  maybe you have to delete them and recreate or something.   Can you pull up a report that you never use and see if you see the relative options there ?

  • Scheduling a report based on Criteria

    Hi guys very new to SSRS, just wondered is it possible to schedule a report to be automatically emailed out subject to criteria.
    For example, I have a report which covers 6 departments (each dept a member of staff who runs it).
    My report runs on a daily basis but may only have activity for 3 departments one day and 1 the next or all the day after. Instead of sending blank reports out, what I'm looking to acheive is send out a report daily ONLY if there is something to send.
    SQL Server 2008 R2 RTM

    Alternatively, create your subscriptions with execution dates in the past. Set them up exactly how you need with the parameters and recipients.
    Once this is completed, you can use SQL Server Agent to schedule a job to check if there will be data in the report, and if there is, call the subscription from the Reporting Server.
    I used this code to find the report(s) I want to call, and have them executed. You will need to replace [REPORTINGSERVICESDB] with name of your SSRS database.
    CREATE PROC [dbo].[SpawnReports] (@reportName VARCHAR(MAX))
    AS
    BEGIN
    DECLARE @eventType VARCHAR(18), @eventData VARCHAR(36)
    DECLARE c1 CURSOR FOR
    SELECT s.eventType, s.eventData
    FROM [REPORTINGSERVICESDB].dbo.Schedule s
    INNER JOIN [REPORTINGSERVICESDB].dbo.ReportSchedule rs
    ON s.ScheduleID = rs.ScheduleID
    INNER JOIN [REPORTINGSERVICESDB].dbo.subscriptions ss
    ON rs.SubscriptionID = ss.SubscriptionID
    INNER JOIN [REPORTINGSERVICESDB].dbo.catalog c
    ON ss.Report_OID = c.ItemID
    WHERE c.Name = @reportName
    OPEN c1
    FETCH c1 INTO @eventType, @eventData
    WHILE @@FETCH_STATUS <> -1
    BEGIN
    EXEC [REPORTINGSERVICESDB].dbo.AddEvent @EventType=@eventType, @EventData=@eventData
    FETCH c1 INTO @eventType, @eventData
    END
    CLOSE c1
    DEALLOCATE c1
    END
    You can then call the report(s) by name:
    EXEC dbo.spawnReports 'Accounting Report'
    Now it's just a case of checking your report has data, and if so, calling the subscription.
    Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

  • Scheduling a report in CUIC

    Hi,
    Can I schedule a report in CUIC and I want that report to dumped in a specific location.  Is this possible ?
    I know the other options are to email the scheduled reports or to make it available in the dashboard. But, I do not need them. I need the scheduled reports to be dumped ina specific location.

    We actually use a vbs script to move the "scheduled" report to a network share location.  Set the .vbs to run using Task Schedule.  Here is one of the scripts we use:
    dim dtmToday, dtmFileDate
    dtmToday = Date
    On Error Resume Next
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set LogFile = FSO.OpenTextFile("C:\DonnaLogs.txt",8,TRUE)
    Set objFOlder = FSO.GetFOlder("C:\Documents and Settings\ciscouccxreport\Desktop\Donna Reports")
    Set datafiles = objFOlder.Files
    NumberofFiles = DataFiles.count
    If NumberofFiles < 8 Then
        Dim objMessage
            Dim strTextBody
            Dim strEmailTo     
            Dim intInstance 
            Dim strEnableCount
    Dim DiffTime
            'Initialize the objects
            Set objMessage = CreateObject("CDO.Message")
            objMessage.Subject = "Donnas Reports failed"
                objMessage.From = "[email protected]"
                objMessage.To = "[email protected];[email protected];[email protected]"
                 objMessage.TextBody = "Donnas Reports failed today"  & VBCRLF & VBCRLF
                'Set email TextBody
                'objMessage.TextBody = strTextBody
                'Set email TextBody
                'objMessage.TextBody = strTextBody
            '==This section provides the configuration information for the remote SMTP server.
            objMessage.Configuration.Fields.Item _
            ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
            'Name or IP of Remote SMTP Server
            objMessage.Configuration.Fields.Item _
            ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail65002.edps.dom"
            'Type of authentication, NONE, Basic (Base64 encoded), NTLM
            'objMessage.Configuration.Fields.Item _
            '("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
            'Server port (typically 25)
            objMessage.Configuration.Fields.Item _
            ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
            'Use SSL for the connection (False or True)
            objMessage.Configuration.Fields.Item _
            ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
            'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
            objMessage.Configuration.Fields.Item _
            ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
            objMessage.Configuration.Fields.Update
            '==End remote SMTP server configuration section==
            'Send the email
            objMessage.Send
            'Destroy the object
            Set objMessage = Nothing
        End if
    LogFile.WriteBlankLines(1)
    LogFile.WriteLine("[CHECKING DONNA'S REPORT STATUS " & NOW & "]" )
    For Each objFile in objFolder.Files
        dtmFileDate = objFile.DateLastModified
        intDaysDifference = DateDiff("d", dtmFileDate, dtmToday)
        If intDaysDifference < 2 Then
        Err.clear
               FSO.CopyFile objFile.Path, "\\deptpublic\deptpublic\HR\Phone Reports\Monthly Reports\"
        If Err = 0 then
      LogFile.WriteLine(" COPIED " & objFile.Path & " to \\deptpublic\deptpublic\HR\Phone Reports\Monthly Reports\")
        Else
      LogFile.WriteLine(" **ERROR " & Err.Number & " copying " & objFile.Path & " to \\deptpublic\deptpublic\HR\Phone Reports\Monthly Reports\")
      LogFile.WriteLine(" ******* " & Err.Description)
      Err.clear
        End If
        Else
    If intDaysDifference > 2 Then
        Err.clear
        FilePath = objFile.Path
               If objFile.DELETE = 0 Then
      LogFile.WriteLine(" DELETED " & FilePath)
        Else
      LogFile.WriteLine(" **ERROR " & Err.Number & " DELETING " & objFile.Path)
      LogFile.WriteLine(" ******* " & Err.Description)
      Err.clear
        End If
    End If
        End If
    Next
    LogFile.WriteLine("[COMPLETING DONNA'S UPDATE " & NOW & "]" )
    LogFile.Close

  • CUIC reporting in UCCX 9

    Dear Experts,
    I have 2 issues with CUIC reporting.
    the first issue is related to filter in the report. for example, for agent detail summary, I want to apply 2 filter, the first one is the agent name, the 2nd one is the call type (incoming, outgoing, ..etc ). it only apply the agent name and forget the call type. it apply only one filter.
    how we can apply 2 filters or more ?
    the 2nd issue is related to the custom report, I want to create a custom. the documentation said, you need to right click on the category or sub category and create a new one. unfortunately, I use the right click and nothing happened.
    waiting your feedback.
    Thanks in advance
    Anas  

    Amer is referring to CUIC Premium, not CCX Premium. CUIC is a separate product also used with UCCE and comes in two editions. Cisco has packaged the CUIC Standard edition with CCX as it is primarly attempting to be an HRC replacement first. HRC only allowed one filter criteria as well.
    CUIC Premium is not cheap for production use (just wait until you ask for a quote)! In the second situation the suggested workaround is to buy the non-production lab license of CUIC Premium, design the report definition there, then export and import it into the embedded CUIC instance. Don't forget you would also need to build a new stored procedure in Informix to go with the report. Alternatively, you could subcontract the report development to a partner who already has this in place.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Date error when scheduling webi reports

    Hi,
    When i click the prompt option in re schedule the scheduled webi report, i got the error "while trying to invoke the method java.util.date.gettime() of a null object loaded from a local variable 'date' "
    The BI version is 4.1 SP03
    The scheduled webi reports failing and got the error as "Unparseable date: "01/01/1900" "
    How to solve this issues?
    Regards,
    Kathir

    This might fix it from the note http://service.sap.com/sap/support/notes/1981477
    Create a WebI report that uses a date object in the Query Filters
    Schedule the report
    Reschedule by manually entering date value which shows only date and no timestampExample: 12/31/2007
    Reschedule by selecting date value from the calendar which shows date timestampExample: 12/31/2007 12:00:00 AM
    Create a biar file using the Import Wizard and migrate to BI 4.1 SP2
    BI 4.1 SP2 BILaunchPad, navigate to and Right click the report and go to “History”
    Right click the instance without a timestamp for the date parameter and select “Reschedule”
    Click on “Prompts” on the left menu and note an error is produced:This error occurred: while trying to invoke the method java.util.Date.getTime() of an object loaded from local variable ‘date’
    Attempting to schedule this instance (as Run Now or Reschedule) without selecting a Prompt value fails with the error:  Unparseable date: “12/31/2007”
    Using the instance with a timestamp works as expected

  • Report data filters depending on user

    I have web intelligence report returning data grouped by departments. Is it possible to filter report data by department for user logged in depending on user's department?
    Thanks
    Edited by: Denis Sapunkov on Aug 19, 2010 12:58 PM

    This can be achieved in 3 ways:
    1. In Web Intelligence
    Providing you have a table in your database that holds username and department you create a webi report where you select "Dept. Username", "Department" and all other objects you require for your report.
    - Run the Query
    - Create a new variable called CurrentUser => Formula: =CurrentUser()
    - Create a new variable called "Department Filter" => Formula: =If([CurrentUser] = "Dept. Username" ; "Yes" ; "No")
    - Create a new report filter: Department Filter = "Yes"
    This will only return the deprtment for the user that is currently logged on to BO.
    2. On universe level you could use access restrictions to achieve this
    3. If you require to schedule the report, you could create a group for each department and assign this group to a profile that filters on department.
    Hope this helps!

  • Scheduling Usage reports

    I am attempting to set up a scheduled usage report however the y-axis information does not show on screen during the scheduling set up. I have attempted the following in both versions 7.1/8.0 and using IE/Firefox. Is this a bug or am I missing a step in the process?
    Here are the steps I followed to attempt setting up a scheduled usage report:
    1) Change the UI_REPTS_XML_USAGE_TITLE Task Definition to visibility='schedule'
    2) Navigate to Server Tasks tab, Manage Schedule subtab
    3) Under the Tasks Available For Scheduling section, click Usage Report
    You will notice the Configure Y-Axis Settings section shows the helper text plus the add and remove buttons but does not enable you to select any criteria. Any suggestions?
    NOTE: If you go to Reports tab and click on Password Change Chart the y-axis information is configurable.

    This is definitely starting to look like a bug to me. I see other bugs that relate to usage reports and they include steps and expected outcomes that differ from what we're seeing. I definitely recommend opening a case so that this can be reproduced, documented, and then a bug can be filed if necessary.
    Regards,
    Alex

  • Unable to schedule a report to email and print

    I have been working on a task to both print and email a report to recipients whose email addresses are obtained at runtime.  So far I am able to email the report as a PDF attachment, however, I am not able to get the report to print.  I have three thoughts as to why the report is not printing.
    1. The printer is in a subdomain under the domain where InfoView and the Enterprise server reside.
    2. It is not possible to schedule a report for both an SMTP and print destination simultaneously.
    3. The format is causing an issue in printing - the SDK API states "Printer is a report format specific destination and can only be used when the report object is a Crystal Report."
    I have looked at the scheduled report in InfoView and can see that the print settings I am passing are correctly set for the scheduled instance.  Does anyone know if there is a problem with trying to schedule printing and email at the same time, or if the report format must be .rpt?
    Below is my code. Thank you for your time.
    String query = "Select SI_ID, SI_NAME, SI_PROCESSINFO, SI_SCHEDULEINFO, SI_SCHEDULE_STATUS From CI_INFOOBJECTS Where SI_ID=" + reportId;
            IInfoObjects results = null;
            ISchedulingInfo schedulingInfo = null;
            try {       
               results = iStore.query(query);           
            } catch( SDKException sdke ){
               logger.error(sdke);
            if( !results.isEmpty() ){
                // get the actual report object from collection and set scheduling information
                IInfoObject report = (IInfoObject)results.get(0);
                schedulingInfo = report.getSchedulingInfo();
                schedulingInfo.setType(CeScheduleType.ONCE);
                schedulingInfo.setRightNow(true);
                schedulingInfo.setRetriesAllowed(3);           
                try {
                    Set<String> keys = destinations.keySet();
                    Iterator i = keys.iterator();
                    while( i.hasNext() ){
                        String dest = (String) i.next();
                        if(dest.equals(CrystalDestinations.EMAIL)){
                            // get the destination object and set it to SMTP plugin
                            List emailAddress = destinations.get(CrystalDestinations.EMAIL);
                            IDestination destinationObject = schedulingInfo.getDestination();
                            destinationObject.setName("CrystalEnterprise.SMTP");    
                            IDestinationPlugin smtpPlugin = (IDestinationPlugin) iStore.query("SELECT * FROM CI_SYSTEMOBJECTS WHERE SI_PARENTID = 29 AND SI_NAME='CrystalEnterprise.SMTP'").get(0);
                            ISMTPOptions smtpOptions = (ISMTPOptions) smtpPlugin.getScheduleOptions();
                            smtpOptions.setDomainName( emailDomain );
                            smtpOptions.setServerName( smtpHost );
                            smtpOptions.setSMTPUserName( smtpUser );
                            smtpOptions.setSMTPPassword( smtpPass );
                            smtpOptions.setSubject( "Email for report " + report.getTitle() );
                            smtpOptions.setMessage( "This is the message body" );
                            smtpOptions.setSenderAddress( smtpUser + "@cdrh.fda.gov" );
                            smtpOptions.setSMTPAuthenticationType( ISMTPOptions.CeSMTPAuthentication.LOGIN );
                            for(int j = 0; j < emailAddress.size(); j++ ){
                                smtpOptions.getToAddresses().add( emailAddress.get(j) );
                            destinationObject.setFromPlugin( smtpPlugin );                                                                               
    } else if ( dest.equals(CrystalDestinations.PRINT) ){
                            List printers = destinations.get( CrystalDestinations.PRINT );                   
                            IReportPrinterOptions printerOptions = ((IReport)report).getReportPrinterOptions();
                            printerOptions.setCopies(1);
                            printerOptions.setEnabled(false);
                            printerOptions.setPrinterName( (String)printers.get(0) );                   
                            printerOptions.setPageLayout(IReportPrinterOptions.CeReportLayout.USE_SPECIFIED_PRINTER_SETTING);
                    List reportPrompts = ((IReport)report).getReportParameters();
                    for(int j = 0; j < reportPrompts.size(); j++){
                        IReportParameter prompt = (IReportParameter) reportPrompts.get(j);                   
                        if(prompt.getParameterName().equals(mdrParamName)){
                          IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                          v.setValue(reportParameters.get(mdrParamName));
                        } else if(prompt.getParameterName().equals(addressParamName)){
                            IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                            v.setValue(reportParameters.get(addressParamName)); 
                    IReportFormatOptions format = ( (IReport) report).getReportFormatOptions();
                    format.setFormat(IReportFormatOptions.CeReportFormat.PDF);
                    iStore.schedule( results );

    Hi Jason,
    Based on your code, I could not tell if you were scheduling a Crystal Report or a WebI document.
    Regardless, what I would suggest is you try scheduling the report/document on InfoView.
    Once you schedule it on InfoView, you can retrieve the instance on Query Builder (or through code) and compare the properties that are being set through InfoView and the one you set through your code.
    This should indicate if you are missing some properies or have set some properties incorrectly.
    Hope this helps.
    Regards,
    Dan

  • Error when scheduling WEBI report to FTP server

    Hi
    We are getting error "destination directory error. CrystalEnterprise.Ftp: 550 Requested action not taken" while scheduling WEBI report to FTP server.
    Any help would be appreciated
    Regards,
    Anisa

    Hi All,
    I want a run my report once by scheduling, so i provide a time interval for scheduling a report
    start date/ time : 11:38:AM 10/30/2011
    end date/time : 11:43:AM 10/30/2011
    after completion of end time....report is failed and fetching an error
    Error : Object could not be scheduled within the specified time Interval
    Any solution for resolving this error

  • OBIEE error while scheduling the report.

    Hi,
    I scheduled one report in OBIEE tool for 8.30 pm but that report get failed.
    I executed the same report many times with the same database configuration, same FTP configuration,
    I never get such exception before.
    In the morning i again execute that report with same configuration and it works.
    I am unable to find the cause of the error.
    bellow is the error description.
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.sql.SQLException: ORA-01033: ORACLE initialization or shutdown in progress
    could any body please explain what is the exact cause of the issue.

    The oracle Db you are connected is being shut-down.

  • Error while scheduling DESKI report in infoview

    I m scheduling a DESKI report to users enterprise inbox from infoview using a server group. This server group has DesktopIntelligence Job server, Destination Job server, Adaptive Job server and Program Job servers and all these servers are running.
    When I schedule the report to boldusers enterprise inboxbold it get failed and shows this error message
    bolddestination DLL disabled. []: [CrystalEnterprise.Smtp] bold
    I m wondering what has to be enabled for scheduling a report to infoview's own inbox.

    Abhilash
    You are correct that it shows all the prompts but only when we run the report either directly from the CR Designer or via View on Demand in Infoview/CMC.
    But if I try to schedule an instance of this report, I am getting a check box in the parameter section which says "Show unused parameters" to see this dyanamic prompt. And When I check that box in Infoview still I am not able to select any value for this prompt as it's greyed out.
    Hope I am able to explain my query to you.
    Also attached a screen shot of the scenario for your reference.

  • Error Code:942 While Scheduling a report in BI Publisher

    Hi All,
    I am trying to schedule one report in BI Publisher.
    After Clicking Submit Button while scheduling report,i get following error:
    Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 080319)): oracle.toplink.exceptions.DatabaseException Internal Exception: java.sql.SQLException: ORA-00942: table or view does not exist Error Code: 942 Call: UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + 50 WHERE SEQ_NAME = 'JOB_ID_SEQ' Query: DataModifyQuery()
    Kindly Help me in resolving this issue
    Regards
    Amrita Singh

    i know the issue,i can give quick fix, but in-order to make sure you don't get another glitch like this.
    I would recommend, you to install the scheduler in another schema or another db.
    Re-installing the scheduler schema tables will fix this.

  • Scheduling a report in bi publisher

    Hi guys,
    I am new to BIP Can any one help me out in how to schedule a report through email in BI Publisher??
    Regards,
    Sai

    i know the issue,i can give quick fix, but in-order to make sure you don't get another glitch like this.
    I would recommend, you to install the scheduler in another schema or another db.
    Re-installing the scheduler schema tables will fix this.

  • Can not view/schedule Crystal Reports in new BOE XI 3.0 Installation

    Hello,
    I'm having an issue on a brand new installation of BusinessObjects XI 3.0 on AIX 5.2 (using WebSphere 6.0). Installation went smoothly and migration went fine. Can log in, pull up CMC, InfoView (all other apps). But scheduled Crystal Reports (as well as viewing Crystal Report thru InfoView) are failing with the following errors (which to me seem interrelated):
    *(1) Error in File ~cec0c55d91e0e015.rpt: The request could not be submitted for background processing*
    *(2) Error in Report XXX: Failed to load database information*
    *(3) An error occurred while creating a subprocess in the processing server. [RCIRAS0604]*
    These three errors indicate to me that the report engines are having issues opening the files, pulling the data and generating the reports. We've checked to make sure that the account that BOE is running under has all the permissions it needs - and it has.
    I just turned on tracing (-trace) on the report job processing servers and I'm watching the logs as I retrace my steps...
    Any ideas? Would appreciate any feedback...
    Thanks,
    Will

    Turns out this is a pretty nasty issue on Unix environments. Being that the BOE application is developed on Windows then ported to Unix environments, the services (daemons) still end up depending on an emulated registry (MainWin) sort of like in a Windows environment.
    For some reason (we're still trying to figure this out), the BOE registry entries got corrupted and then started preventing the processing servers (which in the case of CR ultimately depend on  CRPE - Crystal Reports Print Engine) from opening up and processing CR files.
    We engaged BusinessObjects/SAP support and have been able to resolve this issue on our test AIX system. The resolution included deleting all the mainwin (mw) tmp directories and files in the root temp directory and also in the
    /bobje/enterprise120/aix_rs6000/crpe>
    directory. Then we stopped all BOE services and reran the MW script to regenerate registry entries. This repair was a pretty intricate multi-step process. The SAP Technical Rep who worked on this case is writing a knowledge base article (an SAP note). Once I get details, I'll update this post.
    The good news about this issue is that the upcoming SP1 of XI 3.0 removes the dependency on the mw registries...
    Will

Maybe you are looking for

  • Sharepoint 2013 Foundation Restore

    Hi All! I try to restore backup from my Sharepoint 2013 Foundation SP1 (Standalone) server to another server with same configuration in the same domain. But I have a problem in restoring process. I run command: "PS C:\temp> Restore-SPFarm -Directory

  • Dynamic action on radio group in tabular form

    Hi, I'm very new to APEX and I've tried searching the web, but I can't seem to find a good answer for my problem. I have a page in APEX with a tabular form with 6 columns. The last column is supposed to show/hide a button for each row based on the va

  • N-gage problems

    I have a nokia n95 8gb  RM-421 Firmware- 11.2.011 When i went on the site it says my version is not compatible with the n-gage application. Is there any way to get around this problem? This really sucks seeing as my old N95 was the right version and

  • WLS 6.1 sp4 - JVM Crash

    Hi, We are running WLS6.1 sp4 on Red Hat Linux 7.3, Java HotSpot(TM) Server VM (1.4.1_01-b01 mixed mode) on 2CPU box. We have encountered several JVM crashes (unpredictable, abot once-twice a day). The load on the server is light, currently execute t

  • JDK problems

    i just installed jdk1.1.6 and also commm API.. I can compile my java programs...but however i cannot run them.. after javac myfile.java java myfile"can't find class TestComm" am i missing something in my installation?