"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

Similar Messages

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

  • What can be done to avoid getting the following error when trying to delete unused clips he operation could not be completed.  *** -[__NSArrayM insertObject:atIndex:]: object cannot be nil

    what can be done to avoid getting the following error when trying to delete unused clips in Imovie 09 "the operation could not be completed.  *** -[__NSArrayM insertObject:atIndex:]: object cannot be nil"  I use to get these type of error messages when trying to delete unsused clips from a large event 60 minutes or longer, but now I get this message when trying to reduce a 4 minute event.
    Also, does anyone know if there is a limit to the total amount of space that can be taken up by Projects in Imovie 09
    Thanks for any help

    Zachy,
    It goes something like this...
    Put your new drive in the enclosure. Use Disk Utility to format it, etc. I'd give it a slightly different name than the original. Let's say you have Old Disk and New Disk as your drive names. Use Carbon Copy Cloner to copy Old Disk to New Disk. Now you should have an exact copy, which you can test by rebooting and holding down the Option key. Choose New Disk from the list and let it boot, make sure all is well.
    Shut down and physically swap the drives. Take Old Disk and put it in the enclosure. Now your system has a new disk with a lot more space and you can reformat your old disk and just use it for large files or whatever.

  • HT2905 can someone please tell me why I do not get the delete from disk option when trying to delete duplicate items

    can someone please tell me why I do not get the delete from disk option when trying to delete duplicate items

    The content must be in the iTunes directory structure for that option to appear.

  • 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

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

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

  • 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

  • My ipad will no longer connect to the laptop. it comes up with usb not recognized. also when trying to connect to the power the first time i connect, nothing, but when i unplug from ipad and plug in a second time it charges

    my ipad will no longer connect to the laptop. it comes up with usb not recognized. also when trying to connect to the power the first time i connect, nothing, but when i unplug from ipad and plug in a second time it charges

    yeah tried all that. the only thing that i havent tried is to delete itunes completely and restart. its the same with the ipad. i havent done a master reset. i just think it has to be something rather simple as it acknowledges that i have plugged in the ipad as it makes the noise it just come up usb not recognized. it shows up as an unknown device that doestn have  any drivers
    its driving me round the bend at the minute

  • I no longer get the dialog box when trying to delete rejected photos.

    I have always used the Delete Rejected Photos. . . selection to get rid of the photos I have flagged as rejected. However, after the rejected photos are shown, the dialog box no longer appears with the option to Delete from Disc or to Remove from the LR Catalog. I don't know if this problem began with LR 3.4 or before, but the timing was close. It isn't that I don't know how to use the function because I have been using it for years. Any help would be appreciated.

    Since I had 358 photos out of almost 2800 flagged as 'rejected' I did not
    want to loose all my work. I selected the rejected photos and then flagged
    them all with a 'yellow' color. I then displayed all photos with a yellow
    flag and 'Un-rejected' them. I highlighted a small amount of them, about 30,
    and rejected them and then went to the Delete Rejected photos. the pop-up
    came up and I was able to delete them. Since the rest of my yellow flagged
    photos were still showing I rejected another chunk of them and so on till
    they were all deleted. When trying to delete a group that had published
    photos within I got a box warning me that if I deleted them the published
    ones could no longer be managed by LR. That is alright with me. It would be
    nice if the software would somehow flag those that had been published. All
    the dialog box said was that one or more of the group had been published. I
    did not know which.
    Thanks again for expert help!
    Jack

  • Error message when trying to delete pdf in 10.1

    With 10.0.03 everything in Acrobat worked fine. In 10.1 I get an error when trying to delete pdf files I've recently worked on. The message says:
    "Are you sure you want to move this file to the Recycle Bin? Then "file name".pdf, Type: Adobe Acrobat Document, Size: 153 KB, Date modified: 6/18/2011 3:28 PM.
    Other times the message is:
    "The action can not be completed because the file is open in Acrobat.exe. Choose file again. Then "file name".pdf, Type: Adobe Acrobat Document, Size: 153 KB, Date modified: 6/18/2011 3:28 PM. Try Again"
    This happens everytime I try to either delete the file using a menu to delete or drag the file to the Recycle Bin by hand.
    Only way to get out of the loop is to log out then log in. This only started happening after updating to 10.1.
    Anyone else see this problem and know how to fix it?

    Just a suggestion but I have found on WIn 7 that showing a pdf in the
    Preview view can make win think the file is open and locked for editing. The
    little icon on the taskbar makes it easier to turn the preview on and off. I
    always check my open explorer windows now when I get messages like that and
    it usually clears it up. Hope it works foryou.
    Jean Notte
    [email protected]

  • I photo crahses when trying to delete a large batch of photos

    I exported my photo library twice by mistake and now I need to delete around 90.000 photos. The problem is, iPhoto crashes when trying to delete the photographs, and I'd really like to avoid moving them over and delete them in smaller batches, it would take me ages.
    Is there anyway I can manually access the files in the iPhoto trash and delete them in the Mac trash?
    Thnaks for the help.

    I exported my photo library twice by mistake
    sorry but this is not clear - exporting copies photos form the iPhoto library to your hard drive outside of the iPhoto library and does not change the contents of the iPhoto librar in any way
    If you mean imported (as opposed to exported) were you importing a previous iPhoto library into a new iPhoto library? If so you never do that - it does not work and creates massive duplication
    Since we have no idea what you have done these are just guesses but if you did import an old library into a new one then simply quit iPhoto and drag the new (bad) one to the desktop, drag the old one to the pictures folder (default location) and launch iPhoto - it will open and convert as needed the old library and you are good to go
    If none of these guesses are correct then you will have to open the iPhoto trash in iPhoto (NEVER make any changes of any sort to the structure or content of the iPhoto library using the finder - there are NO user servicable parts in there), select them all and assign a keyword (like trash) and then right click and return to library - then using the keyword to find them delete in small batches (100 or so) emptying the iPhoto trash after each small batch
    LN

  • 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

  • Error when trying to delete a vendor from SC

    Hi all,
    I am encountering a problem when trying to delete a vendor from a contract and assign preferred vendor.
    The messages are
    "Enter exactly one partner of type preferred vendor"
    "Partner data couldnot be determined".
    In BBP_PD, I find two entries in partner table with partner_fct = 39.
    I am also not able to delete one of this entry.
    Please suggest.
    Thanks
    Nandalal

    Hi Nandlal,
    Can you see the business partner nos correctly for the vendors you are trying to assign?
    Are these vendors assigned to pur org?
    DO you get all greens in BBP_BP_OM_INTEGRATE?
    BR
    Dinesh

  • 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

Maybe you are looking for

  • Where is Bridge support in Dreamweaver 2014?

    Dreamweaver 2014 does not have Browse Bridge in File menu and you can't drag files from Bridge into Dreamweaver without being told the file is not in the root folder even though it is. Has Adobe removed Bridge support from Dreamweaver 2014? That is a

  • How to track the Last Execution of a Custom Program

    Hi all, I want to know the last execution date of a Cutom Z program. Kindly tell me as where do we see the same. Is there any table where this is being saved.

  • Reg: ADF_FACES-60097

    Hi, We have a popup in a page, while clicking OK button in the popup, we are getting the issue like… java.lang.NullPointerException ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:S

  • Converting excel formulas to javascripts

    Hello, I am not experience in Excel formulas and creating "if" statements in Adobe Acrobat, so I'm hoping someone can help me with this. I have two problems. 1.  Here is an excel formula that I need to convert over to javascripts. Can someone help wi

  • Looking for Don Archibald

    Sorry Don, this was the only way I could figured out how to ask you a direct quesiton. You have been able to pull out some great links to apple docs that I have yet to figure out how to search for them and get the exact same documents. I was wonderin