External Reconciliation calculation error when save

Hi,
I'm working with SAP B1 8.8 PL 15. When I am working with External Reconciliation and need to leave, I press Save button and close the window. Then when I came back the totals are diferent and other transaction are selected, I entered the same parameters. I saw this happens when select a lot of transaction (more than a hundred). Why that happens?

Hi,
Could post selection criteria and result for both case?
Thanks & Regards,
Nagarajan

Similar Messages

  • Error when save the query

    Hi All,
    We have migrated from 3.x to 7.0 (QA). In BEx analyzer when we save the new query the following error message getting.
    1. Program GP77SAI0MJZN9QMLKWR6SIGCYYA does not exist
    2.  An exception with the type CX_SY_PROGRAM_NOT_FOUND occurred, but was neither handled locally, nor declared in a RAISING clause
    3. Program error in class SAPMSSY1 method: UNCAUGHT_EXCEPTION
    Please help me from this error.
    Thanks in Advance
    Ravi

    Hi,
    Check following thread and underlying note..
    error when saving a query "CX_SY_PROGRAM_NOT_FOUND"
    Abhijeet
    Reward pts if useful..

  • Error when save as template

    HI
    i had use database attach to upgrade my sharepoint site from 2007 to 2010.
    i got following error when i click save as template on sharepoint 2010 after upgrade.
    can any know let me know how to fix it.
    Field type CrossSiteLookup is not installed properly. Go to the list settings page to delete this field.
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Correlation ID: ea0d7973-f237-4b45-8230-abb302b5c100
    Date and Time: 7/20/2010 7:22:06 PM
    Thanks kevin

    Unzip the CrossSiteLookupField.zip file to extract SPSolutions.SharePoint.CrossSiteLookupField.wsp file. There should be a install.bat file in the zip file. You can run it using command prompt. If you do not have an install file, you can either use
    Powershell commands or stsadm to install this feature.
    Here are the steps to install the feature using stsadm (I don't have a SharePoint VM near by. So commands should be simillar to the below ones)
    Open command prompt with elevated privileges
    Navigate to the folder where the SPSolutions.SharePoint.CrossSiteLookupField.wsp is extracted
    Execute the following commands:  "%CommonProgramFiles%\Microsoft Shared\web server extensions\14\BIN\stsadm.exe" -o addsolution -filename SPSolutions.SharePoint.CrossSiteLookupField.wsp
    "%CommonProgramFiles%\Microsoft Shared\web server extensions\14\BIN\stsadm.exe" -o deploysolution -name SPSolutions.SharePoint.CrossSiteLookupField.wsp -local -allowgacdeployment -allcontenturls

  • Error When Save Message Mapping

    Hi evreybody,
    I try to save my mapping. I did the test to check to know if everything is ok. The test is executed succesfully but when I try to save, I receive the following error message:
    Internal error: Unable to transfer changes for object Message Mapping MM_Order_Idoc | http://accenture.com/PI01/Idoc to change list "Standard Change List" (348cd3a0-f384-11dd-c70e-003005989c0a) since object still in change list "Standard Change List" (faa66160-f699-11dd-8a1b-003005989c0a)
    Thank you for your support,
    Mohamed.

    Release the lock by going to XI Admin page and check Integration repository and lock tab where you can see the objects locked ,release the lock and you can do the needed.
    Rajesh

  • Acrobat X Pro Error when Save As JPEG: Insufficient Disk Space to Perform Operation

    Using Acrobat X Pro when trying to save a PDF as an Image - JPEG format, the Acrobat application fails with an error: "Acrobat could not save a page in this document because of the following error: Insufficient disk space to perform the operation (Page 1)". Please help with a solution to this problem. The problem is not because of insufficient disk space on my PC.

    Thank you for the reply.
    Please can you help with the location of the TEMP folder and which temporary files to delete (file type/extension). Each of the these folders include an "Adobe" Folder. Each "Adobe" folder size is less than 1MB.
    I am using Windows 8.1 Enterprise 64-bit. I have the following Adobe Acrobat applications installed: Distiller X, X Pro and Reader XI. Is this combination perhaps causing the problem?

  • Error when save date in SQL database

    Hi all,
    I try to save a date in to a sql database, but when I run my program I get following error:
    Invalid object 11/21/05 9:32 AM of type java.sql.Date assigned to host variable 3.
    In my database table I have a fields date (type Data)en time type(Time).
    this is the source:
         public void createTitle(int title_id, String description, String user)
              throws SQLException {
              // TODO Auto-generated method stub
              Date date = new Date();
              String dateFormat = "YYYY-MM-DD";
              String timeFormat = "HH:mm:ss";
              SimpleDateFormat ddf = new SimpleDateFormat(dateFormat);
              SimpleDateFormat tdf = new SimpleDateFormat(timeFormat);
              String det = ddf.format(date);
              String creationTime = tdf.format(date);
              PreparedStatement newTitle = conn.prepareStatement("INSERT INTO BE_TITLE (TITLE_ID, DESCRIPTION, DATE_CREATE, TIME_CREATE, USER_CREATE) VALUES (?,?,?,?,?)");     
              try{
                   newTitle.setInt(1,title_id);
                   newTitle.setString(2,description);
                   newTitle.setDate(3, new java.sql.Date(date.getTime()));
                   newTitle.setTime(4, new java.sql.Time(date.getTime()));
                   newTitle.setString(5, user);
                   newTitle.executeUpdate();
              }finally{
                   newTitle.close();
    Can someone give me a solution for this error
    Richard

    Hi Richard,
    in your application, you atempt to insert a java.sql.Date value into a DATE column, which has non-zero time-components. Open SQL rejects such an atempt.
    Please allow me to quote from the OSS message (452727 2004), which Detlev refers to in his quote:
    <i>
    about one year ago, we had a very lengthy discussion on this issue - not only internally at SAP but also with Jonathan Bruce, the specification lead for JBDC at Sun.                                                                               
    We have the following dillema:                                                                               
    The javadoc of the constructor java.sql.Date(long) states:                                                                               
    "If the given milliseconds value contains time information, the driver will set the time components to the time in the default time zone (the time zone of the Java virtual machine running the application) that corresponds to zero GMT."                                                                               
    With Jonathan Bruce, we tried to clarify when this normalization should take place.                                                               
    1) Source code inspection shows that it is not the class java.sql.Date the performs the normalization.                                                                               
    2) The Javadoc states that the JDBC driver should perform the             
    normalization. If it is the driver, more open questions arrise:                                                                               
    a) When shall the normalization be performed?                             
       - if a setDate method is invoked?                                      
       - only for INSERT and update statements or also for all other parameters?                                                               
       - shall the getDate method perform the normalization?                  
       - what about set/getObject?                                            
       - the java Docs of set/getDate don't tell anything about normalization.                                                            
       - according to which time zone shall the value be normalized?          
         - UTC                                                                
         - vm time zone?                                                      
         - database time zone?                                                                               
    3) If an automatic normalization is performed, data will be modified upon insertion (or extraction) from the database. This means that we cannot quarantee if we insert and Date object retrieve it again that the two objects will be equal.
    In the discussion with Jonathan, we couldn't clarify the issue. However, Jonathan promised that the JDK should be modified in such a way that the JDK is responsible for the normalization. (So far such a change has not been done).                                                                               
    In order to be on the safe side, SAP chose that Open SQL should reject any Date values that are not normalized. This is what we have          
    implemented and documented. I agree, that in this repect, Open SQL is stricter than the JDBC standard demands.                                                                               
    To help the application with the task to normalize a Date (and Time) object, we offer the helper class                                      
    com.sap.sql.DateTimeNormalizer which you find in opensql.jar.                                                                               
    To come to a conclusion, the bevavoir you observed is from our side not a bug of Open SQL but a feature. Please use DateTimeNormalizer to normalize Date objects appropriately.                                  
    </i>
    I hope, you can follow our reasoning.
    Best regards,
    Adrian

  • Error  when Save to  BPM MDS

    OS : Windows 7 X64
    JDeveloper: 11.1.1.6.0.
    RCU : 11.1.1.6.0
    WebLogic : 10.3.5
    SOA Suite: 11.1.1.6.0
    Above is my BPM Suite installation environment.
    In Chapter 11 Using Process Composer , page 268. i followed the step by step, trying to create and publish BPM project template in BPM Studio to MDS.
    In this verion of Jdeveloper. the "Publish to BPM MDS" option is missing, instead of "Save to BPM MDS". SO,
    Right click on the QuoteProcessLab(project name) node and select the "Save to BPM MDS" menu,then "Save to BPM MDS" dialog pops up. when click the ok button.error occurs.
    oracle.bpm.metadata.exception.AbortedOperationMetadataException: BPM-70801: Metadata operation failed
         at oracle.bpm.metadata.impl.MdDomainImpl.createTemplateProject(MdDomainImpl.java:527)
         at oracle.bpm.pml.service.security.SecurityMdDomainDecorator.createTemplateProject(SecurityMdDomainDecorator.java:197)
         at oracle.bpm.pml.service.impl.StudioMetadataServiceImpl.saveTemplateProject(StudioMetadataServiceImpl.java:150)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog.publishTemplateProject(PublishMdsProjectDialog.java:372)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog.access$200(PublishMdsProjectDialog.java:66)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog$1.run(PublishMdsProjectDialog.java:108)
         at oracle.bpm.ui.peer.swing.SwingToolkit$JobFromRunnable.run(SwingToolkit.java:181)
         at foxtrot.AbstractWorkerThread$2.run(AbstractWorkerThread.java:49)
         at java.security.AccessController.doPrivileged(Native Method)
         at foxtrot.AbstractWorkerThread.runTask(AbstractWorkerThread.java:45)
         at foxtrot.workers.DefaultWorkerThread.run(DefaultWorkerThread.java:153)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.ejb.EJBException: ; nested exception is:
         java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650; nested exception is: java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:121)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:96)
         at $Proxy65.listHistoryChanges(Unknown Source)
         at oracle.bpm.metadata.update.UpdateFromBaseTemplateHelper.writeTemplateRevisionProperties(UpdateFromBaseTemplateHelper.java:57)
         at oracle.bpm.metadata.impl.MdDomainImpl.createTemplateProject(MdDomainImpl.java:500)
         ... 11 more
    Caused by: java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at weblogic.rjvm.MsgAbbrevJVMConnection.dispatch(MsgAbbrevJVMConnection.java:507)
         at weblogic.rjvm.t3.MuxableSocketT3.dispatch(MuxableSocketT3.java:330)
         at weblogic.socket.BaseAbstractMuxableSocket.dispatch(BaseAbstractMuxableSocket.java:298)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:950)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:888)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:339)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    Caused by: java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:560)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1582)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1495)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1315)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
         at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:36)
         at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1791)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1750)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
         at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
         at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
         at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:283)
         at weblogic.rjvm.MsgAbbrevInputStream.init(MsgAbbrevInputStream.java:213)
         at weblogic.rjvm.MsgAbbrevJVMConnection.dispatch(MsgAbbrevJVMConnection.java:498)
         ... 9 more
    oracle.bpm.metadata.exception.AbortedOperationMetadataException: BPM-70801: Metadata operation failed
         at oracle.bpm.metadata.impl.MdDomainImpl.createTemplateProject(MdDomainImpl.java:527)
         at oracle.bpm.pml.service.security.SecurityMdDomainDecorator.createTemplateProject(SecurityMdDomainDecorator.java:197)
         at oracle.bpm.pml.service.impl.StudioMetadataServiceImpl.saveTemplateProject(StudioMetadataServiceImpl.java:150)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog.publishTemplateProject(PublishMdsProjectDialog.java:372)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog.access$200(PublishMdsProjectDialog.java:66)
         at oracle.bpm.fusion.soa.mds.ui.PublishMdsProjectDialog$1.run(PublishMdsProjectDialog.java:108)
         at oracle.bpm.ui.peer.swing.SwingToolkit$JobFromRunnable.run(SwingToolkit.java:181)
         at foxtrot.AbstractWorkerThread$2.run(AbstractWorkerThread.java:49)
         at java.security.AccessController.doPrivileged(Native Method)
         at foxtrot.AbstractWorkerThread.runTask(AbstractWorkerThread.java:45)
         at foxtrot.workers.DefaultWorkerThread.run(DefaultWorkerThread.java:153)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.ejb.EJBException: ; nested exception is:
         java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650; nested exception is: java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:121)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:96)
         at $Proxy65.listHistoryChanges(Unknown Source)
         at oracle.bpm.metadata.update.UpdateFromBaseTemplateHelper.writeTemplateRevisionProperties(UpdateFromBaseTemplateHelper.java:57)
         at oracle.bpm.metadata.impl.MdDomainImpl.createTemplateProject(MdDomainImpl.java:500)
         ... 11 more
    Caused by: java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
         java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at weblogic.rjvm.MsgAbbrevJVMConnection.dispatch(MsgAbbrevJVMConnection.java:507)
         at weblogic.rjvm.t3.MuxableSocketT3.dispatch(MuxableSocketT3.java:330)
         at weblogic.socket.BaseAbstractMuxableSocket.dispatch(BaseAbstractMuxableSocket.java:298)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:950)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:888)
         at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:339)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    Caused by: java.io.InvalidClassException: org.eclipse.persistence.internal.indirection.DatabaseValueHolder; local class incompatible: stream classdesc serialVersionUID = 1128857921468654749, local class serialVersionUID = 4164360925847093650
         at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:560)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1582)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1495)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1315)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
         at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:36)
         at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1791)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1750)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1328)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
         at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
         at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
         at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:283)
         at weblogic.rjvm.MsgAbbrevInputStream.init(MsgAbbrevInputStream.java:213)
         at weblogic.rjvm.MsgAbbrevJVMConnection.dispatch(MsgAbbrevJVMConnection.java:498)
         ... 9 more

    I had the same problem while trying to "Save to BPM MDS" from jDeveloper, while I tried to save the BPM project to a directory (in terms of BPM Composer) in the BPM MDS, where the original project I checked out still was located in. The (old) project in the BPM MDS was still locked by the user I used to save the newer BPM perject version to BPM MDS. On the otherhand, I worked fine after I changed the applications name. Not what versioning should be like, but at least a workaround.
    Host setting:
    OS : Windows 7 x64
    jDeveloper: 11.1.1.7.0 on JDK 1.6.0_24 (x64)
    SOA Composite Editor: 11.1.1.7.0.00.08
    BPMN Editor: 11.1.1.7.0.0.8
    VM setting:
    JDK: 1.7.0_21 (x64)
    RCU : 11.1.1.7.0
    WebLogic : 10.3.6
    SOA Suite: 11.1.1.7.0
    BPM Suite: 11.1.1.7.0

  • Write permission error when Save for Web & Devices

    I'm using PS5.1.  When I try to Save for Web & Devices I'm getting write permission errors.  I haven't used this application for over a year, but it used to work fine. I'm not sure what changed. 
    I also used the Mac Disk Utility to Repair Permisions, but that didn't help. 
    Please help. 
    Thanks!

    The problem could be related to Mavericks permission problems. You can try the Bridge fix:
    Open Finder > (go) Computer > Macintosh HD (for me) > Users > Click once on the Home icon (main admin) > Get Info >
    click on lock and authorise bottom right > click on cog wheel drop down > click on 'Apply to enclosed items' > OK

  • Error when save project Access via 'NULL' object reference not possible PLM

    Dear All,
    we are using cProject (PLM)4.0
    When i create project & try to save ,system gives me error 'Access via 'NULL' object reference not possible'
    Steps
    1.Create project & element
    2.save
    showing below error
    Note
    The following error text was processed in the system PLD : Access via 'NULL' object reference not possible.
    The error occurred on the application server Ndimdev_PLD_20 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Error code: ICF-IE-http -c: 300 -u: PLMUSER1 -l: E -s: PLD -i: Ndimdev_PLD_20 -w: 0 -d: 20090702 -t: 164926 -v: RABAX_STATE -e: OBJECTS_OBJREF_NOT_ASSIGNED
    Please do needful
    Regards
    Ravindra

    Hi,
    Put a break point and check whther ur node and
    element instantiation is properly done.
    Thanks,
    Divya.S

  • Error when save workbook

    Hi,
    I did some changes in the workbook and when saving this in the "Save as existing workbook" the foll error gets:
    "Document store access caused errors in Sap Correction System". when i am saving as "Save as new workbook" it is working fine.
    How to rectify ?
    thanks in advance.

    Is the workbook locked under a transport ? open a new trabnsport and check the transport management system.
    Arun
    Assign points if useful

  • Error when save word file with easy dms

    Hey,
    When I want to save an word file with easy dms I got the following error:
    "An error occured while creating the original attribute for WWI".
    I have no idea why.
    Thanks for your support.
    BR,
    Christoph

    Hi Christoph,
    You need to check the following configurations
    1) Transaction DC20: Whether data carrier has been defined
    2) Transaction DC10: Define document types
    3) Transaction DC30: Define workstation application
    4) Transaction OAC0: Define content repositories
    5) Transaction CSADMIN: Check status of content repository
    Regards,
    Deepak Kori

  • Illustrator cs5 can't saved the file or unknown error when save

    Hello,
    I have couple of brand new Mac OS X 10.6.4 with Adobe Ilustrator CS5 running on Intel Xeon Quad Core and 3GB of RAM.
    All updates including OS have been applied recently. For some reasons, the file that was worked on any of this computer can't be saved to any other format other than illustrator template itself. When saved, it either just crashed or gave an error "an unknown error has occured".
    So, I save the file as template and tested on the PC configure that has 8GB of RAM, Intel Quad Core and still couldn't save the file into .ai format. Same error was given.
    I tested the illustrator on mac with few simple lines or vector graphics and it could save fine.
    I thought it was the file itself but it appeared to be not. Due to, same design method was produced on the old mac os system with cs2 worked fine.
    Does anyone know what is wrong? I called the Adobe techs and they transfered me to someone in India who didn't know what causing it either.

    Also, I tried to reset the prefs and settings, uninstall with cleaner tool and reinstall, reload the transparent setting, etc.. including some steps the adobe techs told me.
    It still gave same error.

  • Fireworks CS3 - Internal error when save as JPEG and batch mode

    Dears,
    I am being in trouble for all along these 7 days due to this
    error. I hope that someone may help me.
    After upgrading to CS3 from Fireworks 8, I am having this
    "internal error message" both when the preview for a JPEG export
    format is chosen (it works OK when the export format is either GIF
    or PNG) and when I work with batch operation.
    Everything is OK if I run Fireworks either as "root" user or
    as "adminplus" user ("adminplus" is the username of an extra user
    with administration privileges I created for testing).
    My operating system is MacOsX 10.5.4 and my computer is a
    MacBook2,1 (MacBook with Intel Core 2 Duo 2 GHz with 2GB RAM and a
    brand new 186,31 GB Hitachi Journaled HFS+ HD with 100GB free).
    I tried in many way to get the valuable differences in the
    Library files and privileges (looking to many forums, it seems this
    may be the cause, also confirmed by the fact that other users works
    fine) but I didn't get any special differences.
    I tried to trash the preferences but still the error is
    present.
    I tried with the master temporary file in MacOsX with
    terminal command "stat -x $TMPDIR" checked against command "id".
    User and privileges were OK but still the "internal error" was
    there.
    I tried with a simple reinstall for Fireworks CS3 and with a
    full reinstall of the full CS3 web standard suite and, moreover,
    uninstalling and reinstalling everything.
    I also tried with Fireworks 8 which was not removed by the
    upgrade and it has the same problems.
    May I receive a competent suggestion about how to diagnosis
    and solve the problem?
    Many thanks,
    Carmine

    OK. I solved it!
    Whoever will have the same problem may ask how I solved. It
    is not complicated but it is a long story. I succeed without any
    reinstall of operating system as suggested by the ADOBE support, in
    case any of the suggestions found everywhere, will give no result.
    I will be happy to explain what to do to whoever will need
    it.
    My very best wishes,
    Carmine

  • Error when save ERD diagram -an unnamed file contains invalid path

    Hello,
    When I try to save diagram I receive message "an unnamed file contains invalid path". Objects added to diagram are saved to repository but diagram is not...
    I'm using Designer 10g on Windows Server 2003

    I seem to remember there was a bug running certain of the Developer Suite products on Windows Server 2003. Think it was something to do with 10g versions and a missing dll. Probably best to search Oracle Support ( Metalink). I would first check your versions of both Designer and the database are certified agains Windows Server 2003. Good luck

  • Acrobat X (10.0.2) trows Error when SaveAs with relative paths

    Hi,
    I'm wondering if this is a bug in Acrobat X.
    When I try to execute the script
    this.saveAs("../TEST.pdf"); or this.saveAs({cPath: "../TEST.pdf"}); it always throws this exception.
    UnsupportedValueError: Value is unsupported. ===> Parameter cPath.
    I did a cross-check with Acrobat 9, there both scripts are working fine and my file is saved into the parent directory.
    What's going on here?

    That's courious,
    a moment ago it doens't work.
    I thought, it may be because of an restriction to the system drive (C:\).
    So I tried it on another drive, but the same result, again, again, again...
    Now, after I killed the whole Acrobat processes it works on every drive, from the console and through a folder level script for local drives and also network paths.
    On another computer I got the exception again.
    But then, after I executed the saveAs once with an absolute path it also works with relative paths.
    What the hell?

Maybe you are looking for

  • No Settings Passbook & Apple Pay in iPad Air 2

    I want to setup Apple pay on my iPad Air 2, which was received yesterday. I found the following instructions. To set up Apple Pay on iPhone 6 or iPhone 6 Plus, open Passbook and follow the steps below. On iPad Air 2 or iPad mini 3, go to Settings > P

  • IDOC Runtime error TIME_OUT has occurred

    Dears,           We are having a Machine to Machine Order interface, where huge volume of order files are being sent to SAP from legacy system through XML files which PI interface converts as Inbound IDOCs. The issue we are facing here is : when huge

  • UTF8 as system default character set

    Hi, I'm new to OSX and I moved to a new company few days ago. We work with Tiger workstations and servers, several Linux internet servers and Windows Laptops. One of the problems I have is to find a way to set UTF8 as the default character set for th

  • Mail settings for iCloud, etc

    I'm using 10.6.8. I see two kbases for setting up Apple Mail to work with iCloud email. But, one says it's specifically for 10.6. The other is for other email apps, using IMAP setup. But, wouldn't the IMAP settings in the second work for 10.6 as well

  • Cannot re-open DRM-prot pdf file on Bebook One

    Yesterday I bought a Bebook One. Charged the batteries of the Bebook. Installed Adobe Digital Editions (ADE) on my (Windows 7) computer. Authorized my computer. Bought two e-books on http://www.bol.com and downloaded them with ADE. Moved the books (p