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.

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

  • 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.

  • 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

  • Handling of this ADSVALUE type is not yet implemented

    Hi,
    I have setup an authentication source to import groups from our MS AD server. On running a job, I am getting the error below. The auth source does not pass a username/password since I am able to browse the AD anonymously. I was hoping I could get more details regarding the error via log4net but strangely, log4net is not generating a ADAWSLog.txt file (level=INFO).
    Jul 7, 2006 5:07:04 PM- PTAuthSourceAgent::ProcessGroups: Call to retrieve the groups on this auth source failed. Please check that the authentication source server is online.
    *** Exception: com.plumtree.server.impl.soap.OpenSoapException: Error in function AWSProvider.GetGroups (): Error in function SOAPEnvelope.Restore (arrayText == [B@864e43): SOAP fault: faultcode='soap:Server' faultstring='Server was unable to process request. --> Unable to create GUID string for group LDAP://server:389/path. Error message: Handling of this ADSVALUE type is not yet implemented (type = 0xb).: GetGroupsInternal error looping through results: GetGroupsInternal Error in GetGroups'
    at com.plumtree.openfoundation.util.XPException.GetInstance(XPException.java:371)
    at com.plumtree.server.impl.users.providers.AWSProvider.GetGroups(AWSProvider.java:554)
    at com.plumtree.automationserver.agents.PTAuthSourceAgent.ProcessGroups(PTAuthSourceAgent.java:857)
    at com.plumtree.automationserver.agents.PTAuthSourceAgent.PerformOperation(PTAuthSourceAgent.java:266)
    at com.plumtree.automationserver.shell.PTJobShell.perform(PTJobShell.java:628)
    at com.plumtree.automationserver.shell.PTJobShell.runJob(PTJobShell.java:210)
    at com.plu
    mtree.automationserver.shell.PTJobShell.run(PTJobShell.java:100)
    Caused by: com.plumtree.server.impl.soap.OpenSoapException: Error in function SOAPEnvelope.Restore (arrayText == [B@864e43): SOAP fault: faultcode='soap:Server' faultstring='Server was unable to process request. --> Unable to create GUID string for group LDAP://server:389/path. Error message: Handling of this ADSVALUE type is not yet implemented (type = 0xb).: GetGroupsInternal error looping through results: GetGroupsInternal Error in GetGroups'
    at com.plumtree.openfoundation.util.XPException.GetInstance(XPException.java:371)
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(SOAPEnvelope.java:68)
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(PTWebService.java:1017)
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(PTWebService.java:906)
    at com.plumtree.server.impl.users.providers.AWSProvider.GetGroups(AWSProvider.java:547)
    ... 5 more
    Caused by: com.plumtree.server.impl.soap.OpenSoapException: SOAP fault: faultcode='soap:Server' faultstring='Server was unable to process request. --> Unable to create GUID string for group LDAP://server:389/path. Error message: Handling of this ADSVALUE type is not yet implemented (type = 0xb).: GetGroupsInternal error looping through results: GetGroupsInternal Error in GetGroups'
    at com.plumtree.server.impl.soap.SOAPParser.LoadInternal(SOAPParser.java:681)
    at com.plumtree.server.impl.soap.SOAPParser.LoadBinary(SOAPParser.java:590)
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(SOAPEnvelope.java:65)
    ... 8 more
    Jul 7, 2006 5:07:04 PM- *** Job Operation #1 failed: ProcessGroups failed(282610)
    Jul 7, 2006 5:07:04 PM- Done with job operations.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Have you solved this issue? I have the same error message, although all my servers are up, and pingable.
    Thanks,
    Dave

  • JDBC 2.0 feature is not yet implemented Internal Exception

    I succeed in testing movie merge sample
    I can insert lines in tables movies
    My database source is defined on oracle lite bpel db
    Here a summary of the steps I follow to create a copy of merge projet from scratch
    New project TestMovies
    Asynchronous
    New PartnerLink
    Define Adapter Sevice
    database adater
    service name dbwrite
    My connection
    Perform select insert
    import system.movies
    finish
    add an invoke task
    partner link as
    merge operation
    autocreate variable invoke_1_merge_inputvariable
    change requestmessage to Movies project schema file
    add assing task
    copy rule from inputvariable to invoke_1_merge_inputvariable
    When I invoke the process with BPEL console I get an error:
    <part name="summary" >
    <summary>file:/C:/Oracle/OraBPEL/integration/orabpel/domains/default/tmp/.bpel_TestMovies_1.0.jar/dbwrite.wsdl [ dbwrite_ptt::merge(MoviesCollection) ] - WSIF JCA Execute of operation 'merge' failed due to: DBWriteInteractionSpec Execute Failed Exception. unknown failed. Descriptor name: [unknown]. ; nested exception is: ORABPEL-11616 DBWriteInteractionSpec Execute Failed Exception. unknown failed. Descriptor name: [unknown]. Caused by Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.DatabaseException Exception Description: java.sql.SQLException: JDBC 2.0 feature is not yet implemented Internal Exception: java.sql.SQLException: JDBC 2.0 feature is not yet implemented Error Code: 0. </summary>
    </part>
    <part name="detail" >
    <detail> Exception Description: java.sql.SQLException: JDBC 2.0 feature is not yet implemented Internal Exception: java.sql.SQLException: JDBC 2.0 feature is not yet implemented Error Code: 0</detail>
    </part>
    Then I investigate to the files created by the db adapter the main difference between the sample and the project I create is :
    - diffrence between movie.java
    sample file is
         private String title;
         private String director;
         private String starring;
         private String synopsis;
         private String genre;
         private String runTime;
         private Timestamp releaseDate;
         private String rated;
         private String rating;
         private String viewerRating;
         private String status;
         private String totalGross;
         private String deleted;
         private String sequenceno;
         private Timestamp lastUpdated;
    my file is
         private String title;
         private String director;
         private String starring;
         private String synopsis;
         private String genre;
         private String runTime;
         private Timestamp releaseDate;
         private String rated;
         private String rating;
         private String viewerRating;
         private String status;
         private String totalGross;
         private String deleted;
         private String sequenceno;
         private Timestamp lastUpdated;
         in the sampe every thing is in string and in my file some fields are Timestamp object...
         What's going wrong with my work
         Any help will be very appriciated.
         I one work what's going wrong with my database adatper
         Emmanuel

    Hi Clemens,
    I try to change palltformClassName in the oc4j-ra file to the one declared in wdsl. Then I change in the wsdl file the location to match the one of oc4j-ra. Then I restart the BPEL server. Here is my declaration in oc4j-ra
         <connector-factory location="eis/DB/OracleLite" connector-name="Database Adapter">
              <config-property name="driverClassName" value="oracle.lite.poljdbc.POLJDBCDriver"/>
              <config-property name="connectionString" value="jdbc:polite4@localhost:100:orabpel"/>
              <config-property name="userName" value="system"/>
              <config-property name="password" value="any"/>
              <config-property name="minConnections" value="1"/>
              <config-property name="maxConnections" value="5"/>
              <config-property name="minReadConnections" value="1"/>
              <config-property name="maxReadConnections" value="5"/>
              <config-property name="usesExternalConnectionPooling" value="false"/>
              <config-property name="dataSourceName" value=""/>
              <config-property name="usesExternalTransactionController" value="false"/>
              <config-property name="platformClassName" value="oracle.toplink.internal.databaseaccess.OraclePlatform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="tableQualifier" value=""/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="true"/>
         </connector-factory>
    But we I try to redo the test I still get the same error...
    Do you have any magic solution ;-)
    If not I can still use the declaration in the wsdl file...
    Emmanuel

  • 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

  • Method not yet implemented at javax.mail.internet.MimeMessage

    What will cause the following error?
    java.lang.UnsupportedOperationException: Method not yet implemented
         at javax.mail.internet.MimeMessage.<init>(MimeMessage.java:89)
         at com.pe.app.inhouse.module.util.DateUtilTest.testBB(DateUtilTest.java:61)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at junit.framework.TestSuite.runTest(TestSuite.java:208)
         at junit.framework.TestSuite.run(TestSuite.java:203)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)

    [http://www.google.com/search?hl=en&q=javax.mail.internet.MimeMessage+jar+download]

  • 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

  • RSRV: W: Function not yet implemented

    Hello all.  I am trying to view the dimension table status using "transaction code RSRV===>Elementary Tests===>Database Tables===>Database Information about InfoProvider Tables".
    Whether I try this particular function or any other function in RSRV, I get the message:  "W: Function not yet implemented", and I can't get past it.
    Can anyone tell me how I can activate this functionality, using RSRV?  We are running BI 7.0, 2004s.  You see, I want to verify the stableness of existing cubes/dimension tables, as well as verify any new cubes/dimension tables, I create in the future.
    Thank you in advance.
    ErnLab

    Hi Franklin,
    I tried as per your suggestion but I still get the "Not implemented error" on Windows Phone 8.1. May be I am doing something wrong here. I have attached screenshot of the error.
    Below is the code I am trying,
    I am having a newDoc folder inside my app.
    I want to get all the files from inside this newDoc folder,which in turn have subfolders and files  so I am using orderByDate because
    CommonFileQuery.defaultQuery will return only files from current folder.
    var localAppFolder = Windows.ApplicationModel.Package.current.installedLocation;
    localAppFolder.getFolderAsync("newDoc").done(function(folderObject) {
    var temp = folderObject;
    var CommonFileQuery = Windows.Storage.Search.CommonFileQuery;
    var results = folderObject.createFileQuery(CommonFileQuery.defaultQuery);
    results.getFilesAsync().done(function getFilesSuccess(sortedFiles) {
    var pathArray = [];
    sortedFiles.forEach(function forEachFile(item) { pathArray.push(item.path);
    The above code works as expected on desktop. Can you kindly tell me where or what I am doing wrong as I am newbie to WinJS.
    Also I wanted to post screenshot of the error but was not allowed since my account is yet to be verified.

  • On a Mac ios10.10, using online service Export PDF, error message appears,"An error occurred while trying to access service."

    Can you advise steps I might take now?  On a Mac ios10.10, using online service Export PDF, error message appears,"An error occurred while trying to access service."

    Hi Ringdoc,
    Please see this document: "Error occurred when trying to access this service" when logging on to Acrobat.com
    Let us know how it goes!
    Best,
    Sara

  • "Not yet Implemented" when trying to delete a variable?

    Hello all,
    Is this a bug or is it still in development. When I am trying to delete not used custom varaibles it says "Not yet Implemented"
    Thanks,
    Kiran

    Hello,
    Use RSZDELETE transaction in BW to delete the custom objects.
    Regards,
    Ravindra

  • ORA-24123: feature IOT support is not yet implemented

    Hi,
    in 10G R2 when using DBMS_REPAIR
    I receive :
    ORA-24123: feature IOT support is not yet implemented
    ORA-06512: at "SYS.DBMS_REPAIR", line 293
    How should I implement SYS.DBMS_REPAIR ?
    Thank you.

    on one tablespace is ok;
    SET SERVEROUTPUT ON;
    declare
    V_SCHEMA VARCHAR2(20) :='GDJF';
    V_NUM NUMBER :=0;
    V_MAX NUMBER :=0;
    BEGIN
    SELECT MAX(LENGTH(TABLE_NAME)) INTO V_MAX FROM DBA_TABLES
    WHERE OWNER = V_SCHEMA;
    FOR T IN (SELECT TABLE_NAME FROM
    DBA_TABLES
    WHERE OWNER=V_SCHEMA
    AND TABLESPACE_NAME = 'CRM_DATA')
    LOOP
    dbms_repair.check_object(
    SCHEMA_NAME=>V_SCHEMA,
    OBJECT_NAME=>T.TABLE_NAME,
    REPAIR_TABLE_NAME=>'REPAIR_TABLE',
    CORRUPT_COUNT=>V_NUM);
    DBMS_OUTPUT.put_line('TABLE_NAME: '||
    RPAD(T.TABLE_NAME,V_MAX, ' ') ||
    ' -CORRUPTED BLOCKS : ' ||V_NUM
    END LOOP;
    END;
    /

  • JDBC 2.0 feature is not yet implemented

    Hi - I'm trying to use an updatable resultset, with no luck; the statement is created with the following parameters:
    createStatement( ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    Moving the cursor and reading works just fine; trying to update, e.g.
    ResultSet.updateString
    however, results in
    java.sql.SQLException: JDBC 2.0 feature is not yet implemented
    Your help is much appreciated ...

    Hi,
    Oracle 9i Lite JDBC driver implements JDBC 1.2 features plus some JDBC 2.0 features. Please check the documentation for what is supported.
    Ravi

Maybe you are looking for