Schedule Report Error - Error in File (Operation not yet implemented)

Crystal Reports Server XI R2
Microsoft SQL Server 2003 SP2
We have a report that is run for 100s of Schools once a month.  We started getting the below message.  We tried to manually run the report from the CMC and get the same message. 
Any suggestions on how to resolve this?   
Thanks,
Lisa
Status: Failed
Printer: The instance is not printed.
External Destination: None
Data Refresh Settings:  Use the server defaults
Start Time 4/7/09 3:10:21 PM
End Time 4/7/09 3:10:33 PM
Server Used: CO-APT01.reportjobserver
Error Message:  Error in File D:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\CO-APRT02.reportjobserve\~tmp4cc5a1e77c49110.rpt:  Operation not yet implemented.

Hi Rene,
Try this as remedy to your problem.
Whenever you are using the New Page before for a Group, go to Section Expert for the corresponding section and check the New Page Before property and go to Conditional formula and type the following:
Not OnFirstRecord
Whenever you are using the New Page after for a Group, go to Section Expert for the corresponding section and check the New Page After property and go to Conditional formula and type the following:
Not OnLastRecord
HTH...
Thanks,
Amogh

Similar Messages

  • Error while exporting to PDF - Operation not yet implemented

    Hi,
        We using C# Dot Net 2005 and Crystal Report for Dot Net 2005 and we are trying to export to PDF file.  In one of the reports, we are using a Font "Shree-Kan-0850' from Shree Samhita, a SDK to build application in Indian regional languages. But we are getting an error as follows:-
    "Error in File C:\Document~1....\{....}-.rpt: Operation not yet implemented.". When we tried in various sites and forums found that it was due to some non-standard fonts. We have checked that if we remove Shree-Kan-0850 font from report, it works fine and once included the error comes. So problem might by from this font. Whether Crystal report is not supporting other than Windows standard fonts or the problem with PDF? Because with same font we can export to DOC, XLS etc. Please guide us how to solve this?
    Thanks and regards,
       Rajeev Vandakar, Bangalore.

    Unfortunately, it looks like that font has many issues. Googling 'Univers Condensed Fonts .net' gets a number of interesting posts. E.g.;
    Univers 67 Bold Condensed Font does not show in my Flash Fonts List
    See if you can select the font in the properties window of the VS.NET IDE.
    It would also be interesting to see if the following will work in a new test app:
    Private Sub Form1_Load(ByVal sender As System.Object,
    ByVal e As System.EventArgs) Handles MyBase.Load
         Label1.Font = New Font("Univers 57 Condensed Font – Univers 57 Condensed", 12, FontStyle.Regular)
    End Sub
    - Ludek

  • Export PDF Error - Operation Not Yet Implemented

    Dear All,
    i am trying to export a crystal report to pdf and it is ending in following error:
    Error
    Error in File CrystalReportTestBlankReport {D781AF0B-642B-4FB5-BC4B-F05D5934DA2F}.rpt: Operation not yet implemented.
    You may test yourself at here : [http://esolutionscurry.co.in/crystalreporttestpage.aspx|http://esolutionscurry.co.in/crystalreporttestpage.aspx]
    Please note there are no issues in opening report and exporting to word, rtf and excel. Just PDF export is not working.
    My Server Configuration is : windows server 2008 R2 Standard, Dot Net Framework 4 and Plesk Parallel 10.3
    I have installed Crystal report 13 (the one that is available for use with Visual Studio 2010)
    I am able to export the report from within the Visual Studio Localhost, but this fails in IIS.
    Please help.. this issue is killing me everyday.
    Thanks in advance..
    Regards,
    Ankit Singhal

    Hello, I had a similar problem, and finally, thanks to this thread I could find the solution.
    In development enviroment the application worked, but in production it didn't work (W2k8 with IIS 7 and MVC3 with Crystal Reports 11). When I tried to generate a pdf document I got the error:
    Operation not yet implemented.
    I tried to solve the trouble by reading a lot of information about CR. I discarded troubles with the font, so I focused in the temp dir in CR. I wanted to avoid give permissons to the application user to the windows temp dir.
    Finally I found out there's a registry key that can change the temp directory in CR:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer\TempDir
    I have an x64 OS, so in the x86, it should be
    HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Report Application Server\InprocServer\TempDir
    This key doesn't exist by default. I created this with the value: D:\CRTemp, but I keep the same error, but I could check that when I generated the reports, some files appeared in that directory.
    So my research continued. Thanks to your advices, I used the Process Monitor to see what was happening, so I could see the real problem. It was that the CR was trying to read a file called D:\CRTEMPReport{.....}.rpt.
    So I changed the Key, with a final backslash (D:\CRTemp\). When I changed that, everything worked fine, using that new key.
    Maybe my experience can help people with similar troubles.
    Thanks for your advices Ludek.

  • Operation not yet implemented when exporting crystal report to pdf

    Thank you in advance,
    When running the line **** export within the following code, I am getting the following error message:
    "Error in File C:\DOCUME1\rborda\LOCALS1\Temp\TimeDetailTest {00DC8730-45CD-4A29-8854-C44BBD5B5230}.rpt: Operation not yet implemented."
    I tried the following solution registering dlls, but still did not solve the problem above:
    regsvr32 "C:\Program Files\Common Files\Crystal Decisions\2.0\bin\crtslv.dll"
    regsvr32 "C:\Program Files\Common Files\Crystal Decisions\2.0\bin\ExportModeller.dll"
    regsvr32 "C:\Program Files\Common Files\Crystal Decisions\2.0\bin\tslv.dll"
    CODE:
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.ReportAppServer
    Imports CrystalDecisions.Web
    Imports CrystalDecisions.ReportSource
    Partial Public Class _Default
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        End Sub
        Private Sub btnRunReport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRunReport.Click
            'Try
            Dim ConInfo As New CrystalDecisions.Shared.TableLogOnInfo
            Dim oRptDoc As New ReportDocument
            Dim expo As New ExportOptions
            Dim oDiskFileDestinOption As New DiskFileDestinationOptions()
            Dim strCrystalReportFilePath As String
            Dim strPdfFileDestinationPath As String
            Dim crParameterDiscreteValue As ParameterDiscreteValue
            Dim crParameterFieldDefinitions As ParameterFieldDefinitions
            Dim crParameterFieldLocation As ParameterFieldDefinition
            Dim crParameterValues As ParameterValues
            strCrystalReportFilePath = "C:\TimeDetailTest.rpt"
            strPdfFileDestinationPath = "C:\TimeDetailTest0814.pdf"
            oRptDoc.Load(strCrystalReportFilePath) 'loads the crystalreports in to the memory
            'Create parameter objects
            'Provide Parameter values
            crParameterFieldDefinitions = oRptDoc.DataDefinition.ParameterFields
            crParameterFieldLocation = crParameterFieldDefinitions.Item("StartPeriod")
            crParameterValues = crParameterFieldLocation.CurrentValues
            crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
            crParameterDiscreteValue.Value = #7/6/2008#
            crParameterValues.Add(crParameterDiscreteValue)
            crParameterFieldLocation.ApplyCurrentValues(crParameterValues)
            crParameterFieldLocation = crParameterFieldDefinitions.Item("EndPeriod")
            crParameterValues = crParameterFieldLocation.CurrentValues
            crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
            crParameterDiscreteValue.Value = #8/2/2008#
            crParameterValues.Add(crParameterDiscreteValue)
            crParameterFieldLocation.ApplyCurrentValues(crParameterValues)
            'Export Information
            oDiskFileDestinOption.DiskFileName = strPdfFileDestinationPath    'path of file where u want to locate ur PDF
            oRptDoc.ExportOptions.DestinationOptions = oDiskFileDestinOption
            oRptDoc.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
            oRptDoc.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
           oRptDoc.Export()
        End Sub
    End Class

    I got the same error message when trying to export a report to Excel format.  This happened with an existing report that had always exported with no problem, until I added a couple of new formulas. After investigating, I discovered that one of my formulas was returning a divide by zero error if a date range was too small.  Once I fixed that formula, it began exporting again with no problem.  I discovered this by trying to export to PDF (since all of the situations discussed here involved PDF) and that was when it returned the divide by zero error.

  • Java.lang.UnsupportedOperationException: Method not yet implemented

    Hi
    I work on a project that use java api version 1.2, after the deployment of the web application and using it I have had the following error message:
    [Mon Oct 16 11:52:51 GMT 2006] Memory used: 24467288 Error: org.epoline.soprano.Csstart: A fatal error occured in SOPRANO: Method not yet implemented : java.lang.UnsupportedOperationException: Method not yet implemented
         at javax.mail.internet.MimeBodyPart.setFileName(MimeBodyPart.java:156)
    here is the code:
    // attach the file to the message
    FileDataSource fds = new FileDataSource(fileName);
    attach.setDataHandler(new DataHandler(fds));
    attach.setFileName(fds.getName());
    it sseems that the method setFileName of MimeBodyPart class throw the exception. I tried to change the jar to version 1.3.3 or 1.4 but nothing change. Can you help me. Thanks

    here is the Exception stack trace:
    [Tue Nov 07 11:57:01 GMT 2006] Memory used: 43627528 Error: org.epoline.soprano.Csstart: A fatal error occured in SOPRANO: Method not yet implemented : java.lang.UnsupportedOperationException: Method not yet implemented
         at javax.mail.internet.MimeBodyPart.setFileName(MimeBodyPart.java:156)
         at org.epoline.soprano.container.xmlOutput.LstXmlOutput.sendResultByMail(LstXmlOutput.java:812)
         at org.epoline.soprano.xmlOutput.XmlOutput.doSendResultByMail(XmlOutput.java:437)
         at org.epoline.soprano.xmlOutput.XmlOutput.doValid(XmlOutput.java:87)
         at org.epoline.soprano.share.CsServlet.doIt(CsServlet.java:475)
         at org.epoline.soprano.share.CsServlet.doWork(CsServlet.java:857)
         at org.epoline.soprano.share.CsServlet.doPost(CsServlet.java:685)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:419)
         at org.apache.catalina.servlets.InvokerServlet.doPost(InvokerServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.epoline.soprano.hibernate.HibernateFilter.doFilter(HibernateFilter.java:39)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:534)
    I'm using tomcat version 5.0.30, I don't know where to go next.
    thanks

  • Workflow not yet implemented

    Hi Guys
    When I am trying to launch my workflow in MDM I am getting a error message saying Work flows "not yet implemented" Please guide me with the step I am missing
    I completed all the basic steps.
    and I am using
    Trigger action is Record Add
    Max records is 1
    Max time launch 0hrs
    Thanks in Advance

    Hi Phaniraj
       Kindly confirm the following Register setting is done or not:
    <b>START > RUN > regedit</b>
    HKEY_CURRENT_USER > SOFTWARE > SAP > MDM5.5 > CLIENT > WORKFLOW : Worlkflow Enabled is TRUE
    Hope this might solve your issue.
    Kindly revert to me if this is done and you still face the issue.
    thanks
    Alexander
    Note: Please reward the points, if found helpful.

  • Java.lang.UnsupportedOperationException: Not yet implemented

    help~!
    I got this error msg "java.lang.UnsupportedOperationException: Not yet implemented".
    I was just trying trying to run my program that pick up information/records and to ftp to the ftp server.
    Kindly advise.
    PS/ i googled but could not find much info on this exception
    Below is a small segment of my code on the ftp:
              if(haveRecord && haveAlert){
                       String filename = outFilePath+new java.util.Date().getTime()+"_"+outFileName;
                       aml.exportFile(filename);
                       eventlog.writeln("Message list " + filename + " generated");
                       eventlog.writeln("FTP " + filename );
                       DosCommander.exec("cmd /C ftpBatch ", eventlog);
                       eventlog.writeln("Move " + filename + " to archive");
                       System.gc();
                       DosCommander.exec("cmd /C moveFile \"" + filename +"\"", eventlog);
                   }else{
                       eventlog.writeln("No message for this round");
                       stopPoll();
                   }

    Hi
    I am not exactly too clear on what you mean
    btw if it helps, im using 1.5.0_11.... does the version matters??
    my exact error msg is this:
    [2007-06-15 16:42:22] Error in trigger [Error] java.lang.UnsupportedOperationExc
    eption: Not yet implemented
    java.lang.UnsupportedOperationException: Not yet implemented
            at Logger.writeIn(Logger.java:105)
            at DosCommander.exec(DosCommander.java:33)
            at PartialFillAlerter.trigger(PartialFillAlerter.java:383)
            at MainAlerter.main(MainAlerter.java:13)
    [2007-06-15 16:42:22] Error in trigger [Error] java.lang.UnsupportedOperationExc
    eption: Not yet implementedi've check Logger.writeIn (line 105) (for example)
    and the code is
        void writeIn(String string) {
            throw new UnsupportedOperationException("Not yet implemented");
        }     So what am i suppose to do next? If i have called it "unintentionally", how do i un-call it?
    Sorry .... first time encounter this exception.... so might take up some time to understand and rectify this.
    Thanks you for ur understanding n patience
    btw, it could be great if any of you can show me the steps or things to check/look out for ... so that the exception could be rectify! thanks!
    Message was edited by:
    peachtea
    Message was edited by:
    peachtea

  • "error loading media-file could not be played"-when viewing webcams

    When trying to load a webcam, picture loads but will not stream.
    The following error message appears "error loading media-file could not be played"
    Everything functions when using Google Chrome.
    Any help would be much appreciated. The operating system is Vista.

    Thank you for you reply - much appreciated.
    I am a bit confused - if I do not have a player installed, how come that everything is OK when I use Google Chrome as a browser?
    Many thanks,
    Jimmy

  • Why do I get an error msg that reads "operation not allowed" whenever I try to Remove Attributes from my timeline?

    On any given project, whenever I select everything in my timeline and try to remove all the attributes, I get an error message that reads "operation not allowed."
    If I select a smaller chuck of files on my timeline and hit remove attributes, it works, but this isn't the case if I select everything in my timeline.
    How do I fix this? Thanks!

    Have you tried trashing your Final Cut Pro preferences? It is usually the first step when FCP begins to act in unexpected ways.
    Download Preference Manager (free) from Digital Rebellion
    http://www.digitalrebellion.com/prefman/
    and use it to trash your preferences - they will be set to default the next time you open FCP.
    If that does not remedy the problem, do you have any still images in your timeline that are not RGB, or are greater than 4000 pixels in the widest dimension?
    Is your source material in an FCP7 edit friendly codec?
    MtD

  • Tying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel.  Help

    am tTying to install itunes and I get error message "This file does not have a program associated with it for performing this action.  Please install a program, or if one is already installed, create an association in the Default Programs control panel. Can anyone help me?

    Hi,
    Here is a similar thread for your reference:
    There is no email program associated to perform the requested action. Please install an email program or, if one is already installed, create an association in the Default programs control panel
    http://social.technet.microsoft.com/Forums/en/w7itproappcompat/thread/036e3cf6-bff7-4ef2-bd0a-555cd2399ad4
    Hope this helps
    Vincent Wang
    TechNet Community Support

  • Error Message** This file does not appear to be a photshop file

    Okay.. so I have been researching forums and have seen this message throughout, my issue seems to be slightly different. When I am in Encore CS3 and trying to create a menu, I import my background designed in photoshop, have the buttons set up correctly, test it in the preview screen and everything works correctly, the file is recognized as a psd file, and even saves as a project in encore. When I go to build my DVD I get an error saying "This file does not appear to be a photoshop file, although when I check the properties it recognizes it as a psd.. any suggestions?

    Adam,
    Not sure that I understand this message:
    And Actually yes I do have a circle in my button to play now.
    Can you enlighten me a bit. Does this mean that En has accepted the PSD, or something else.
    If something else, I would also look closely at the Layers in the PSD. While I do not recall very small Layers creating an issue in En, they have been known to do so in PrPro. This is often something like a very small logo, on a Layer by itself, with nothing but transparency around it. In PrPro, a message, similar to yours is offered up, but that is in Import, and you got it only with the Build.
    Too bad that the Check Project function is not a full pre-flight test of all Assets, like in InDesign, but it falls short, as it only checks for DVD-compliance in the navigation. I've filed Feature Request for more, but since En is built on the Sonic AuthorCore modules, I suppose that it's not as easy, as I would have hoped for.
    Good luck, and help me understand the above,
    Hunt

  • Error During Import: File Could Not Be Imported

    I am trying to load some .AVI movies from my digital camera into iMovie; most of them will, but 1 or 2 for some reason will not. I have played some of these videos on my old G3, which I replaced with this new computer; most loaded in OK.
    The clips that won't load look smaller than the others when playing (don't know why). I played the movies and converted them to Quicktime again in MPEG Streamclip and they played fine (also in VLC PLayer, FWIW).
    I am getting this error message: Error during Import: File Could Not Be Imported.
    Also, I am trying to change the orientation of one clip that I inadvertently shot sideways; I did this in Bitlist but it won't load now into iMovie. Is there away to change the orientation in Quicktime (I'm not buying QT pro) or another free converter that will work?
    Thanks in advance...

    try to ...
    * open the avi/mpegs in Streamclip
    * choose 'DV stream' as export option
    * in the 'DV stream' dialog, you're offered the option 'turn'.. rotate in the wanted direction and choose '75%' size to get all into the video...

  • Error creating AIR file: could not generate timestamp

    I have been getting this error the last few days.
    Error creating AIR file: could not generate timestamp:
    sun.security.validator.BalidatorException:PKIX path building failed:
    sun.security.provider.certpath.SunCertPathBuilderException: unable to find
    valid certificatio path to requested target.
    https://timestamp.geotrust.com/tsa
    I found one thread saying this url must be accessible but when I go there I get "404 -- page not found".
    Since this was working now it is not I'm looking for a direction.

    Hey Karthik,
    First of all, are you using ECLIPSE? What is your development
    Environment. I had run into same issue, after hours of trying
    different things, I installed the FLEX BUILDER and was able to
    create the application without any issues. I have also noticed that
    FLEX BUILDER works more smoothly than Eclipse and since then I have
    been developing within FB.
    Thanks.

  • Error code; original file could not be found, would you like to locate it?

    when i try to transfer songs from my library to my ipod shuffle, i get this error message (error code; original file could not be found, would you like to locate it?). Then an exclamation point(!) in the first column it appears next to the song in the library.
    When i go to the folder mymusic/itunes/itunesmusic folder, the song is there, but why is there an exclamation point next to the song in the library? And how do I restore all these songs, and what causes this?

    Sounds like your iTunes .ITL library file got corrupted.
    What are the iTunes library files?
    There are some posts around here by Buegie on how to fix that...

  • When I try to import pictures from media card to iPhoto, I'm getting the error 'The following file could not be imported. The file is in an unrecognized format.'  The file is a jpeg and I've never had this problem before.

    When I try to import pictures from media card to iPhoto, I'm getting the error 'The following file could not be imported. The file is in an unrecognized format.'  The file is a jpeg and I've never had this problem before.

    What version of iPhoto?
    What colour profile is the shot?
    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

Maybe you are looking for