Problem opening freehand files stored in linux server

hi,
i have mac and i work using a file server that has a linux.
The problem is that when i saved a freehand file, after cloosing
the program and reconect to the local server, i try to open the
file but freehand ask me for the images the the document has. Is
like freehand forget the links of the images or can't find it in a
linux server where they are when i create the file.
Anyone knows what can i do?
thanks

Yes, i know if we put the images in the same folder or i we
embedded de images in the document the problem doesn't ocurre, but
we used to work with the same image in lots of documents, like ads,
catalogues, flyers,... and we can't put each image in each folder
the disk quote will increase a lot. Moreover if we embedded the
images the document file will be higger and it's not good to send
it .
Thanks

Similar Messages

  • Opening a file stored at application server

    Experts,
        I have put a document on application server using DATASET .
       Now I want to open the same file from there only.
       ho to do that.
    Thnx in Advance
    Chetan

    Hi Chetan ,
    U can use following code to open the file u created in application server.
    1.
    data: <dataset_name>(25)  value '.\tmp\file_sarang_01.txt'.
    open dataset <dataset_name> for input in text mode encoding UTF-8
    read dataset <dataset_name> into itab_wa.
    Append itab_wa to itab.
    close dataset <dataset_name>
    loop at itab.
    write: itab-field1 , itab-field2 .
    endloop.
    2.  U can use transaction CG3Y  , to save file from application server to presentation server directly.(A short cut for u)
    I hope this solves ur problem
    Reagrds.
    Note: Reward if useful

  • Opening pdf files stored on server

    Hi
    We have an application in which we display pdf files stored on the server.
    Pdf files opens in a new browser.
    User selects the invoice number from a list and based on the invoice selected, we get a pdf file from R/3 system. This file is stored in a particular folder on the server. We extract this file from the folder to show it to the user in a separate browser.
    This functionality works fine in the development system but not in test system.
    We have recently installed our test system and have done all required settings in config tool.
    Config Tool --> Display configuration --> HttpHttps --> Root and Alias folder.
    But despite this the functionality is not working.
    Is there some other setting that I have missed.
    Unfortunately these settings were done in the dev system by someone else and I do not have a document for it.
    Can anyone help me please.
    This is very urgent for me as we are plannning to migrate our production system as well. I may face the same problem over there as well.
    Regards
    Vineet

    Hi,
    We have the same requirement at our client end. Could you please guide me for the same?
    Regards,
    Sachin Mahajan

  • Create a Document with an original file stored on application server

    Hello,
    I start with document managment system : i am able to create new document (CV01N) manually, add a local file and check-in this file.
    Now we need to store file which are stored on the SAP Application Server.
    Firstly, in the GUI of transaction CV01N, i don't know how to browse file on application server. All files i can't attach as original, are files i can access from my computer.
    Is it possible to access also on application server files ?
    Moreover, i have to define function module which have to
    - Create a document (DMS)
    - Attach an orginial file which is stored on application server
    - Check-in the file
    This function module will be called from a web application
    I define this kind of function and run it correctly with a local file (stored on my computer) : i call BAPI "BAPI_DOCUMENT_CREATE2" and "BAPI_DOCUMENT_CHECKIN2"
    But i don't how to do with a file stored on application server. I see also note 504692 and try a program like ZZUZTEST_TEST_CHECKIN which use FM CVAPI_DOC_CHECKIN but it return an error Error uploading  E:\usr\sap\TD1\DVEBMGS00\data\FACTURE.txt" (this path and file exist on application server and is really the file i want to checkin)
    Please could you confirm what i search, is possible or not.
    If possible, could help me with some explanations and guidelines and perhaps a sample ?
    Thank you very much.
    Regards,
    Eric
    The function used
    FUNCTION Z_TEST_CHECKIN.
    Checkin the first original of a document info record *
    from the application server and/or in the background *
      data   : w_host like BAPI_DOC_AUX-HOSTNAME.
      data: lf_line(255).
      data: ls_draw like DRAW,
            ls_message_cvapi like messages,
            lt_files_cvapi type standard table of CVAPI_DOC_FILE,
            lt_files_cvapi_header like CVAPI_DOC_FILE.
      data: lt_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE,
            vo_originals LIKE cvapi_doc_file OCCURS 0 WITH HEADER LINE.
      ls_draw-dokar = 'ZFT'.
      ls_Draw-doknr = '0000000000000004500000032'.
      ls_Draw-dokvr = '00'.
      ls_Draw-doktl = '000'.
    Read Originals contained in the document info record
      CALL FUNCTION 'CVAPI_DOC_GETDETAIL'
        EXPORTING
          pf_batchmode    = 'X'
          pf_hostname     = ' '
          pf_dokar        = ls_draw-dokar
          pf_doknr        = ls_draw-doknr
          pf_dokvr        = ls_draw-dokvr
          pf_doktl        = ls_draw-doktl
          pf_active_files = 'X'
        IMPORTING
          psx_draw        = ls_draw
        TABLES
          pt_files        = vo_originals
        EXCEPTIONS
          not_found       = 1
          no_auth         = 2
          error           = 3
          OTHERS          = 4.
      IF sy-subrc <> 0.
        WRITE 'Error returned by CVAPI_DOC_GETDETAIL'.          "#EC NOTEXT
        EXIT.
      ENDIF.
    Check if we can really access the file from the application server
      read table vo_originals index 1.
      open dataset vo_originals-filename for input in text mode ENCODING DEFAULT.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'not found'.
      endif.
      read dataset vo_originals-filename into lf_line.
      if not sy-subrc is initial.
        message e500(26) with vo_originals-filename 'read error'.
      endif.
      lt_originals             = vo_originals.
      lt_originals-STORAGE_CAT = 'SAP-SYSTEM'.
      append lt_originals.
      w_host = sy-host.
      CALL FUNCTION 'CVAPI_DOC_CHECKIN'
      EXPORTING
      PF_DOKAR = ls_draw-dokar
      PF_DOKNR = ls_draw-doknr
      PF_DOKVR = ls_draw-dokvr
      PF_DOKTL = ls_draw-doktl
    PS_DOC_STATUS =
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    *PF_HOSTNAME =  w_host
    PS_API_CONTROL =
    PF_REPLACE = ' '
    PF_CONTENT_PROVIDE = 'SRV'
      IMPORTING
      PSX_MESSAGE = ls_message_cvapi
      TABLES
      PT_FILES_X = lt_originals
    PT_COMP_X =
    PT_CONTENT =
      IF ls_message_cvapi-msg_type CA 'EA'.
        ROLLBACK WORK.
        MESSAGE ID '26' TYPE 'I' NUMBER '000'
        WITH ls_message_cvapi-msg_txt.
      ELSE.
        COMMIT WORK and wait.
      ENDIF.
    ENDFUNCTION.

    This is a bit tricky. I spent lots of hours about this .
    You have to set PF_HOSTNAME with your name of your AS and gives the path to the file on the server.
    You wrote
    *PF_HOSTNAME = w_host
    But beware: if you have more thän one AS you have to fix one AS for upload or you have to find the servers name of the file. A better way can be to share one folder by each AS.
    You also have to decide between HTTP or FTP.
    You wrote:
      PF_FTP_DEST = 'SAPFTPA'
      PF_HTTP_DEST = 'SAPHTTPA'
    You must define only one ! Then you have to check your settings in SM59 about working right.
    Pls rate, if this was helpful.
    Regards,
    Markus

  • Opening a file succeeds in Linux but fails in Windows

    Hi,
    I have written an addon to OO Writer. It works properly with GNU-Linux (Ubuntu 9.04, JAVA 6)
    I tried it under Windows 7 RC (I have no other Windows OS available)
    I have a problem opening a file.
    Here is the code I use
    class Dictionary {
       ArrayList brutEntry = new ArrayList();
       ArrayList entryList = new ArrayList();
       DicEntry temp = null;
       public boolean enamdictEnabled;
       public boolean edictEnabled;
        * @param dicFileName A String representing the name of the edict  file which contains the dictionary entries
        * Each entry correspond to a line of the file
        * The dictionary must be EUC-JP coded.
        * @exception exceptions No exceptions thrown
       Dictionary(String dicFileName, String signature) {
          File f=new File(dicFileName);
             WarningHandler.displayMessage("I did; File f=new File(dicFileName); with "+dicFileName+" as a file name"+
                     "\nthe reselt is: "+f.toString()+" with f.toString()");
          BufferedReader i = null;
          try {
          i = new BufferedReader(new InputStreamReader(new FileInputStream(f), "EUC-JP"));//dicFileName
             String str1 = null;
             while ((str1 = i.readLine()) != null) {
                // System.out.println(signature+"making a new entry"+Integer.toHexString(index));
                temp = new DicEntry(str1);
                temp.entrySignature = signature;
                entryList.add(temp);
          } catch (IOException ex) {
             System.out.println("Error message: "+ex.getMessage());
             Logger.getLogger(Dictionary.class.getName()).log(Level.SEVERE, null, ex);
             WarningHandler.displayMessage("There was a problem opening or reading the " + dicFileName +
                     " dictionary file. Please check that your file and filepath are correct and" +
                     "that your dictionary file is EUC-JP encoded");
          } finally {
             try {
                i.close();
             } catch (IOException ex) {
                Logger.getLogger(Dictionary.class.getName()).log(Level.SEVERE, null, ex);
      At first I used
         i = new BufferedReader(new InputStreamReader(new FileInputStream(dicFileName), "EUC-JP"));//dicFileNamewithout the intermediate File creation but the result is the same, under Linux it works and under Windows it fails opening the file.
    From my WarningHandler.displaymessage method I can see taht the file name is correctly (at least I guess) as it is:
    /home/jaaf/jilt/theFileName with Linux
    c:\Users\jaaf\jilt\thefileName with Windows
    For information the file theFileName is EUC-JP encoded and contains Japanese Characters
    Thank you for help
    Edited by: meaulnes on Jul 8, 2009 5:19 AM
    Complementary information after investigation
    I split the line
    i = new BufferedReader(new InputStreamReader(new FileInputStream(f), "EUC-JP"));//dicFileName
    in 3.
    It seems that FileInputStream and InputStreamReader pass without problem.
    But the line
    i=new BufferedReader(isr); where isr is the InputStreamReader makes the program crash (Even the catch is not treated).
    The message I get is:
    Run Time Error
    prog C:\ProgramFiles\OPenOffice.org3\program\soffice.bin
    The application has requested the RunTime to terminate it in an unusual way.
    please contact application support....
    Edited by: meaulnes on Jul 8, 2009 5:31 AM

    Hi,
    Thank You for help;
    I used stack trace
    It seems that the error comes from the encoding.
    Here is the trace:
    java.io.UnsupportedEncodingException: EUC-JP*
    +     at sun.nio.cs.StreamDecoder.forInputStreamReader(Unknown Source)+
    +     at java.io.InputStreamReader.<init>(Unknown Source)+javascript:void(0);
    +     at com.zoraldia.openoffice.Dictionary.<init>(Dictionary.java:71)+
    +     at com.zoraldia.openoffice.Jilt.createDictionaryDialog(Jilt.java:2477)+
    +     at com.zoraldia.openoffice.Jilt.dispatch(Jilt.java:1948)+
    Jul 8, 2009 4:23:32 PM com.zoraldia.openoffice.Dictionary <init>*
    SEVERE: null*
    java.io.UnsupportedEncodingException: EUC-JP*
    +     at sun.nio.cs.StreamDecoder.forInputStreamReader(Unknown Source)+
    +     at java.io.InputStreamReader.<init>(Unknown Source)+
    +     at com.zoraldia.openoffice.Dictionary.<init>(Dictionary.java:71)+
    +     at com.zoraldia.openoffice.Jilt.createDictionaryDialog(Jilt.java:2477)+
    +     at com.zoraldia.openoffice.Jilt.dispatch(Jilt.java:1948)+
    I don't understand why on Linux it works but not on Windows

  • I'm having a problem opening my files -..

    I'm having a problem opening my files …..for example if i want to download something off the internet and run it after it always opens in Textedit which is annoying…..other programs open fine which are dmg but the exe files won't run….i need help

    If you are in fact running Mac OS 9 or earlier, which is from 2001 or earlier, .dmg files are disk image files like the .smi files used under Mac OS 9, but they are only Mac OS X compatible.   They are frequently used to store Mac OS X only installer disk image files.  .exe files are are Windows and MS-DOS executable files which can only run with Windows or DOS virtualization:
    https://discussions.apple.com/docs/DOC-2741
    Most Mac OS 9 programs you'll be able to download either have a .sea, .sit, or .hqx suffix in their file name and are able to be opened with the old Mac OS 9 copy of Stuffit Expander.
    If you are using another operating system, please go to Apple menu -> About this Mac and tell us what you are running.  You posted to the Mac OS 9 forum, hence my response.    If there is an X in the name, you posted to the wrong forum, and I'll have this post redirected and try to answer if I have time.

  • How to open a file created at the server through form/report at client end

    How to open a file created at the server through form/report at client end
    Dear Sir/Madame,
    I am creating a exception report at the server-end using utl file utility. I want to display this report at the client end. A user doesn't have any access to server. Will u please write me the solution and oblige me.
    Thanks
    Rajesh Jain

    One way of doing this is to write a PL/SQL procedure that uses UTL_FILE to read the file and DBMS_OUTPUT to display the contents to the users.
    Cheers, APC

  • Can you open freehand files in CS6?

    can you open freehand files in CS6? I have been using both illustrator & freehand for 15 years & have thousands of work files being freehand.
    It seems very disappointing to have to keep an old version of illustrator just to open these files. I also find it interesting that many of the key tools that freehand had over illustrator are not translated into the newer versions of illustrator. Something simple like you still can't have a unique picture bullet • before text in illustrator. In freehand you could cut & paste any graphic into the text you were designing.

    saturn234 wrote:
    can you open freehand files in CS6? I have been using both illustrator & freehand for 15 years & have thousands of work files being freehand.
    No. The conversion plugin didn't make it into CS6 so the last import function was CS5.5 
    It seems very disappointing to have to keep an old version of illustrator just to open these files.
    At this point, it is the only way to make your files convert into Illustrator although I've had some luck with exporting to EPS or (if your FH graphics are simple enough) save as AI format. Keep your eyes on this project however : http://www.stagestack.com/
    I also find it interesting that many of the key tools that freehand had over illustrator are not translated into the newer versions of illustrator. Something simple like you still can't have a unique picture bullet • before text in illustrator. In freehand you could cut & paste any graphic into the text you were designing.
    As a fellow FreeHand user, I couldn't agree more. Other users of both programs have said this endlessly over the years here. A litany of features are still m.i.a. since FHMX was acquired years ago... including inline graphics. It's almost comical.

  • Hyperlink to a file stored on a server

    Hi guys,
    I've created dynamic pdf in LCD. It allows creating hyperlinks, but unfortunately only to web locations. I'd like to create a link that connects to a file stored on a server based on the DFS file system.
    Is it possible to do something like that? It has to work with Adobe Reader.
    Thanks for your help.
    Marian

    I believe the access to the file system is blocked for security reasons.
    Paul

  • Problem opening PDF files for Adobe Reader

    Problem opening PDF files for Adobe Reader.
    I installed the latest adobe reader for my Mac. Everything is set up. Every time i go to open a pdf file, this shows up...
    "Before viewing PDF documents in this browser you must launch adobe reader and accept the End User Licence Agreement, then quit and relaunch the browser."
    I installed it through the adobe reader website for free. And even though it says 'by clicking "install now" you are agreeing to accept the user licence agreement terms and conditions' it still says i need to accept the T&C's.
    I've tried uninstalling and reinstalling it and same thing over and over again.
    Can someone help!?!?!
    Please contact me via email direct ASAP at....
    [email protected]
    Thank you
    Message was edited by: nick khzouz

    Adobe Reader PDF problems wrote:
    "Before viewing PDF documents in this browser you must launch adobe reader and accept the End User Licence Agreement, then quit and relaunch the browser."
    Did you actually try doing what the message suggests?  Open Adobe Reader and accept the EULA?

  • Problems opening .pdf files created in Windows in MAC

    My clients that are using Macs are having problems opening password protected PDFs that I created in Windows. Any suggestions?

    Are your clients using Adobe Reader on Mac, or the built-in Mac OS Preview?  Preview does NOT support the full PDF standard :(.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 26 Sep 2011 15:04:18 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problems opening .pdf files created in Windows in MAC
    Problems opening .pdf files created in Windows in MAC
    created by Hollcy<http://forums.adobe.com/people/Hollcy> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3939175#3939175

  • Problems opening pdf-files from KM of portal

    Hi,
    we store documents in our portal in KM. When I use pdf-files that where not saved with Office2007 tools I get the problem, that I can open the file once. If I open it the second time I get the error message "file doesn't start with "%PDF-". and the file will not be opend. If I delete the temporary files in the internet explorer, the file can be opended, again.
    If I open the file directly in the internet explorer I don't have those problems, so it seems, that the portal uses a different viewer than the internet explorer itself. 
    Has anyone an idea how to solve this problem?
    Regards
    Ulrike

    Ulrike,
    I think this is a known issue.
    Affected versions:
    o KMC SAP NetWeaver 7.0 (formerly named 2004s) SP 14
    o KMC SAP NetWeaver 7.0 (formerly named 2004s) SP 15
    If you have the above KMC and SP Versions then you need to follow the below SAP note:
    Note 1146711 - Problem opening PDF files.
    Have you checked the belowSAP Note?
    Note 954627 - Issues with opening/displaying PDF files from KM
    Regards,
    Karthick Eswaran

  • Problem open pdf files from windows xp or W2K3(Not from Windows 7)

    Hi,
    i have some pdf files in a shared folder(W2K3).These are in other subfolders.Some of them cannot be opened .Right click options are limited (photo below).The weird thing is that happens when you try to open the files either from the server or a windows xp machine.From Windows 7 are opening normally.I thought of being an issue with file directory .Any idea ?
    Thanks

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

  • Problem opening PDF files with adobe

    I cannot get adobe to open my pdf files. Not from internet nor from desktop.
    I downloads fine,. I have installed and reinstalled several times.
    If I try to open it looks like it opens but closes immediately. I tried to open adobe, but nothing. A grey screen and that's it. I cannot access the help button

    Yes, I finally got it working using number 2:-) Thank you very much
    2013/8/1 Pat Willener <[email protected]>
       Re: Problem opening PDF files with adobe  created by Pat Willener<http://forums.adobe.com/people/pwillener>in
    Adobe Reader - View the full discussion<http://forums.adobe.com/message/5557146#5557146

  • Problem opening .dmg files?

    Hi all,
    I've recently been having problems opening .dmg files -- specifically for a recent Adobe update, and the latest VLC update.
    Checking with their support, it seems that it's not a problem that others are experiencing.
    I get the following message:
    I'm on the 2007 27" iMac, with my OS (SL) being up to date.
    Any suggestions?
    Thx!

    Could be either.
    Check out your own stuff as far as you can. Your router diagnostics page should be able to tell you what sort of download speed you're getting, or you can use SpeedTest http://speedtest.net/
    Check your phone line from the main terminal to the router for loose connections, kinks that may be hiding broken wires and such. Check or replace the line filter that seperates the modem line from the phone.
    Then get your ISP to check out their end, and the phone company likewise.
    Hope you can find the source.

Maybe you are looking for

  • IDOC_INPUT_ORDERS with error message RV45A-VBAP_SELKZ (2) is not input fiel

    Hi I am creating a multiple line sales order from Idoc and using the FM IDOC_INPUT_ORDERS. The idoc is processed with status 51 with error message RV45A-VBAP_SELKZ (2) is not input field. It only happens for Idocs that are processed 1st time (re-proc

  • Getting access denied error while importing file using input type="file"

    Hi All, I am using struts application wherein I need to import file for some purpose.I have used input type="file" for the same which goes like: <input type="file" id="uploadFile" name="uploadFile" size="50"> I have the import button on which I have

  • Can't get email address for printer won't accept password

    Went to eprint center to register printer, worked fine,but when we tried to give printer email address so we can email to printer from remote locations won't accept password no matter what itry This question was solved. View Solution.

  • CAN'T DOWNLOAD JANUARY SOFTWARE UPGRADE!!

    hey so ok this is what's happening. before we start YES I have updated to both ipod touch software 1.1.3. AND to itunes 7.6! I plug in my iPod, open iTunes, and go to the iTunes store. I click on the "January software upgrade" link on the store's hom

  • Phone vibrates every 10 seconds - no reason

    when my phone has "vibrate on silent" enabled, it vibrates every 10 seconds for no reason. i took my phone to the genius bar and they couldn't figure it out. my phone is out of warranty and unfortunately i didn't buy applecare. the genius bar suggest