Pdf forced dowload

I want to use the Firefox viewer for pdf files and have selected that choice under tools/options/applications. However, pdf files immediately move to save file. I just want to use the viewer. Thanks.

There are many security vulnerabilities that have been patched since version 21, see:
* https://www.mozilla.org/security/known-vulnerabilities/firefox/
If the font is small in the toolbar and bookmarks, that can be fixed through your Windows settings. Please see the tutorial:
* http://www.wintuts.com/How-to-change-font-size
If pages themselves have small font, you can also use [[Font size and zoom - increase the size of web pages|Firefox's zoom feature]]. This will help increase the size of web pages.
* To make things bigger, press '''Ctrl''' and '''&#43''' at the same time.
* To make things smaller, press '''Ctrl''' and '''-''' at the same time.
* To reset the size back to normal, press '''Ctrl''' and '''0''' at the same time.
You can also use the [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint]. add-on to change the default zoom level for all websites at once. After setting your global zoom level, you can still fine-tune the zoom on individual sites.
'''Using NoSquint:'''
#After installing NoSquint, make sure you have the Add-on Bar displayed:
#*Right-click the new tab button ("+") or a blank area of the tab bar to the right of it and choose Add-on Bar from the shortcut menu.
#Click the % on the Add-on Bar to call up site preferences, then click the Global Settings button, then the Zooming tab.
#*You can experiment with sizes larger than 125%, but it's not recommended that you go higher than 150% unless you have a large high-resolution monitor.
If there are particular sites that still present a problem, feel free to post their URLs.
As for those PDF files, what site are you downloading them from? Can they be viewed in Adobe Acrobat Reader after saving to your computer?

Similar Messages

  • Safari stucks when opening a pdf file, dowloading a compressed "rar" file

    Salam everybody,
    well here's the mess,
    I got a lot of troubles when browsing internet using Safari. Honestly, it's a very good and quick browser, but it's stacks and close when trying to open a pdf file in w web page.
    Other thing, when downloading from MegaShare, it stacks also when dealing with RAR files.
    is there any plugins that I should add to fix this
    Thank you.
    salam

    HI,
    There are no Mac viruses in the wild.
    I think the problem here is that you are running 10.3 (Panther). That limits you to how far you can go as far as Safari versions.
    Unfortunately, an iMac G3 can't support the latest versions of web browser content including Flash.
    Safari 4 requires:
    ▪ Any Mac running Mac OS X Leopard 10.5.7 or Mac OS X Tiger 10.4.11 and Security Update 2009-002
    ▪ Mac with an Intel processor or a Power PC G5, G4, or G3 processor and built-in FireWire®
    ▪ 256MB of RAM
    ▪ Top Sites and Cover Flow on Mac OS X Tiger require a Quartz-Extreme compatible video card. More details
    Carolyn

  • PDF force download via jsp not possible in IE ??????????????

    Hi guys,
              I am providing a jsp page which when displayed will prompt the user to Open or Save or Cancel on a PDF file. For some reason, the code is not working in Internet Explorer. Its working in Opera, Mozilla, Mozilla Firefox. But not working in IE. However, in my organisation, only IE is used. Therefore its paramount that it works in IE. Pls help me.
              Im attatching the snnipet of code that i am using.
              <%@ page language="java"%>
              <%@ page import="java.io.*"%>
              <%
              File file = new File ("C:\\Documents\\List.pdf");
              response.setContentType ("application/pdf");
              response.setHeader ("Content-disposition", "attachment; filename=List.pdf");
              BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
              ServletOutputStream outs = response.getOutputStream();
              byte bytes[] = new byte[4096];
              int i = 0;
              try
              while ((i = in.read(bytes,0,4096)) != -1)
              outs.write(bytes,0,i);
              catch (IOException ioe)
              ioe.printStackTrace();
              in.close();
              outs.flush();
              outs.close();
              %>
              The problem is as follows:
              The name of the jpf that forwards the requet to the jsp is DownloadPDFController.jsp and the url in IE comes as http://localhost:8053/downloads/DownloadPDFController.jpf
              Now, when this jpf runs and the control comes to the jsp, the pop-up box comes with three options Open, Save and Cancel. But the name of the file to be saved is not the PDF file but the jpf file that is displaying the file.
              This means that what actually is happening is that , the pop download box is coming with the name DownloadPDFController.jpf. I cant understand why its trying to save the JPF.
              The funny bit is that this happens only in IE and not in any other browser.
              Please help !!
              Thanks guys,
              Nikhil

    Put this at start:
              out.clear();
              if it does not work then... are you using post or get... use Post if you are using get...

  • Able to get mail but PDF is giving Error

    Dear All,
            Now I am able to get PDF file dowloaded into my Desktop and can see the content, but when sent it as mail, we are unable to see the content so we are getting the message that File is not properly decoded.
    Can anyone please help me.
    Regards,
    Satya.

    Hello,
    Check this sample code:
    REPORT ZV_JOB_READ NO STANDARD PAGE HEADING LINE-SIZE 255..
    * SAP-User       : VSM1KOR                                             *
    * Author (name)  : Mr.Vasanth M (CI/ISY21-IN)                          *
    * Development    : Mr.Vasanth M (CI/ISY21-IN)                          *
    * Created on/in  : 02.08.2007                                          *
    * Description    : OPL 1523: This is a Flexible to send the spool of a *
    *                  report to any email Id as PDF file.                 *
    TABLES: TSP01.
    DATA: SV_ADR TYPE SOMLRECI1-RECEIVER.
    SELECT-OPTIONS : P_EMAIL1 FOR SV_ADR NO INTERVALS.
    *DEFAULT '[email protected]',
    PARAMETERS: P_SENDER LIKE SOMLRECI1-RECEIVER,
    *DEFAULT '[email protected]',
                P_REPID LIKE SY-REPID, " Report to execute
                P_LINSZ LIKE SY-LINSZ DEFAULT 132, " Line size
                P_PAART LIKE SY-PAART DEFAULT 'X_65_132', " Paper Format
                P_SLSET LIKE SY-SLSET, "Variant name
                P_ODESCR LIKE SODOCCHGI1-OBJ_DESCR,
                P_ADESCR TYPE SO_OBJ_NAM,
                P_DELSPL AS CHECKBOX.
    *DATA DECLARATION
    DATA: GD_RECSIZE TYPE I.
    * Spool IDs
    TYPES: BEGIN OF T_TBTCP.
            INCLUDE STRUCTURE TBTCP.
    TYPES: END OF T_TBTCP.
    DATA: IT_TBTCP TYPE STANDARD TABLE OF T_TBTCP INITIAL SIZE 0,
          WA_TBTCP TYPE T_TBTCP.
    * Job Runtime Parameters
    DATA: GD_EVENTID LIKE TBTCM-EVENTID,
          GD_EVENTPARM LIKE TBTCM-EVENTPARM,
          GD_EXTERNAL_PROGRAM_ACTIVE LIKE TBTCM-XPGACTIVE,
          GD_JOBCOUNT LIKE TBTCM-JOBCOUNT,
          GD_JOBNAME LIKE TBTCM-JOBNAME,
          GD_STEPCOUNT LIKE TBTCM-STEPCOUNT,
          GD_ERROR TYPE SY-SUBRC,
          GD_RECIEVER TYPE SY-SUBRC.
    DATA: W_RECSIZE TYPE I,
          MC_VALID(1) TYPE C.
    DATA: GD_SUBJECT LIKE SODOCCHGI1-OBJ_DESCR,
          IT_MESS_BOD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          IT_MESS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          GD_SENDER_TYPE LIKE SOEXTRECI1-ADR_TYP,
          GD_ATTACHMENT_DESC TYPE SO_OBJ_NAM,
          GD_ATTACHMENT_NAME TYPE SO_OBJ_DES,
          MI_RQIDENT LIKE TSP01-RQIDENT.
    * Spool to PDF conversions
    DATA: GD_SPOOL_NR LIKE TSP01-RQIDENT,
          W_SPOOL_NR LIKE TSP01-RQIDENT,
          GD_DESTINATION LIKE RLGRAP-FILENAME,
          GD_BYTECOUNT LIKE TST01-DSIZE,
          GD_BUFFER TYPE STRING.
    DATA: MSTR_PRINT_PARMS LIKE PRI_PARAMS.
    * Binary store for PDF
    DATA: BEGIN OF IT_PDF_OUTPUT OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF IT_PDF_OUTPUT.
    CONSTANTS: C_DEV LIKE SY-SYSID VALUE 'DEV',
               C_NO(1) TYPE C VALUE ' ',
               C_DEVICE(4) TYPE C VALUE 'LOCL'.
    START-OF-SELECTION.
    * Write statement to represent report output. Spool request is created
    * if write statement is executed in background. This could also be an
    * ALV grid which would be converted to PDF without any extra effort
    *** Alternative way could be to submit another program and store spool
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
            AUTHORITY = SPACE
            COPIES = '1'
            COVER_PAGE = SPACE
            DATA_SET = SPACE
            DEPARTMENT = SPACE
            DESTINATION = SPACE
            EXPIRATION = '1'
            IMMEDIATELY = SPACE
    *       in_archive_parameters = space
    *       in_parameters = space
            LAYOUT = SPACE
            MODE = SPACE
            NEW_LIST_ID = 'X'
            NO_DIALOG = 'X'
            USER = SY-UNAME
      IMPORTING
            OUT_PARAMETERS = MSTR_PRINT_PARMS
            VALID = MC_VALID
      EXCEPTIONS
            ARCHIVE_INFO_NOT_FOUND = 1
            INVALID_PRINT_PARAMS = 2
            INVALID_ARCHIVE_PARAMS = 3
            OTHERS = 4.
      IF MSTR_PRINT_PARMS-PDEST = SPACE.
        MSTR_PRINT_PARMS-PDEST = 'LOCL'.
      ENDIF.
      MSTR_PRINT_PARMS-LINSZ = P_LINSZ.
      MSTR_PRINT_PARMS-PAART = P_PAART.
      SUBMIT (P_REPID) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                          SPOOL PARAMETERS MSTR_PRINT_PARMS
                          USING SELECTION-SET P_SLSET
                          AND RETURN.
    * Get spool id from program called above
      PERFORM GET_SPOOL_NUMBER USING SY-REPID SY-UNAME CHANGING MI_RQIDENT.
    * IMPORT w_spool_nr FROM MEMORY ID SY-REPID.
      PERFORM CONVERT_SPOOL_TO_PDF.
      PERFORM PROCESS_EMAIL.
      IF P_DELSPL EQ 'X'.
        PERFORM DELETE_SPOOL.
      ENDIF.
      IF SY-SYSID = C_DEV.
        WAIT UP TO 5 SECONDS.
        SUBMIT RSCONN01 WITH MODE = 'INT'
        WITH OUTPUT = 'X'
        AND RETURN.
      ENDIF.
    * FORM obtain_spool_id *
    FORM OBTAIN_SPOOL_ID.
      CHECK NOT ( GD_JOBNAME IS INITIAL ).
      CHECK NOT ( GD_JOBCOUNT IS INITIAL ).
      SELECT * FROM TBTCP INTO TABLE IT_TBTCP
                                  WHERE JOBNAME = GD_JOBNAME
                                  AND JOBCOUNT = GD_JOBCOUNT
                                  AND STEPCOUNT = GD_STEPCOUNT
                                  AND LISTIDENT <> '0000000000'
                                  ORDER BY JOBNAME
                                  JOBCOUNT
                                  STEPCOUNT.
      READ TABLE IT_TBTCP INTO WA_TBTCP INDEX 1.
      IF SY-SUBRC = 0.
        MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
        GD_SPOOL_NR = WA_TBTCP-LISTIDENT.
        MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
      ELSE.
        MESSAGE S005(ZDD).
      ENDIF.
    ENDFORM. "OBTAIN_SPOOL_ID
    * FORM get_job_details *
    FORM GET_JOB_DETAILS.
    * Get current job details
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
           IMPORTING
                EVENTID                 = GD_EVENTID
                EVENTPARM               = GD_EVENTPARM
                EXTERNAL_PROGRAM_ACTIVE = GD_EXTERNAL_PROGRAM_ACTIVE
                JOBCOUNT                = GD_JOBCOUNT
                JOBNAME                 = GD_JOBNAME
                STEPCOUNT               = GD_STEPCOUNT
           EXCEPTIONS
                NO_RUNTIME_INFO         = 1
                OTHERS                  = 2.
    ENDFORM. "GET_JOB_DETAILS
    * FORM convert_spool_to_pdf *
    FORM CONVERT_SPOOL_TO_PDF.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                SRC_SPOOLID              = MI_RQIDENT
                NO_DIALOG                = C_NO
                DST_DEVICE               = C_DEVICE
           IMPORTING
                PDF_BYTECOUNT            = GD_BYTECOUNT
           TABLES
                PDF                      = IT_PDF_OUTPUT
           EXCEPTIONS
                ERR_NO_ABAP_SPOOLJOB     = 1
                ERR_NO_SPOOLJOB          = 2
                ERR_NO_PERMISSION        = 3
                ERR_CONV_NOT_POSSIBLE    = 4
                ERR_BAD_DESTDEVICE       = 5
                USER_CANCELLED           = 6
                ERR_SPOOLERROR           = 7
                ERR_TEMSEERROR           = 8
                ERR_BTCJOB_OPEN_FAILED   = 9
                ERR_BTCJOB_SUBMIT_FAILED = 10
                ERR_BTCJOB_CLOSE_FAILED  = 11
                OTHERS                   = 12.
      CHECK SY-SUBRC = 0.
    * Transfer the 132-long strings to 255-long strings
      LOOP AT IT_PDF_OUTPUT.
        TRANSLATE IT_PDF_OUTPUT USING ' ~'.
        CONCATENATE GD_BUFFER IT_PDF_OUTPUT INTO GD_BUFFER.
      ENDLOOP.
      TRANSLATE GD_BUFFER USING '~ '.
      DO.
        IT_MESS_ATT = GD_BUFFER.
        APPEND IT_MESS_ATT.
        SHIFT GD_BUFFER LEFT BY 255 PLACES.
        IF GD_BUFFER IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    ENDFORM. "CONVERT_SPOOL_TO_PDF
    * FORM process_email *
    FORM PROCESS_EMAIL.
      DESCRIBE TABLE IT_MESS_ATT LINES GD_RECSIZE.
      CHECK GD_RECSIZE > 0.
      LOOP AT P_EMAIL1.
        PERFORM SEND_EMAIL USING P_EMAIL1-LOW.
      ENDLOOP.
    * perform send_email using p_email2.
    ENDFORM. "PROCESS_EMAIL
    * FORM send_email *
    * --> p_email *
    FORM SEND_EMAIL USING P_EMAIL.
      CHECK NOT ( P_EMAIL IS INITIAL ).
      REFRESH IT_MESS_BOD.
    * Default subject matter
      GD_SUBJECT = P_ODESCR.
      GD_ATTACHMENT_DESC = P_ADESCR.
    * CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      IT_MESS_BOD = TEXT-001." 'This is an automated report from SAP.'.
      APPEND IT_MESS_BOD.
      IT_MESS_BOD = TEXT-002. " 'Please do not reply to this mail id.'.
      APPEND IT_MESS_BOD.
      IF P_SENDER EQ SPACE.
        GD_SENDER_TYPE = SPACE.
      ELSE.
        GD_SENDER_TYPE = 'INT'.
      ENDIF.
    * Send file by email as .xls speadsheet
      PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                    TABLES IT_MESS_BOD
                                    IT_MESS_ATT
                                    USING P_EMAIL
                                    P_ODESCR
                                    'PDF'
                                    GD_ATTACHMENT_NAME
                                    GD_ATTACHMENT_DESC
                                    P_SENDER
                                    GD_SENDER_TYPE
                                    CHANGING GD_ERROR
                                    GD_RECIEVER.
    ENDFORM. "SEND_EMAIL
    * FORM delete_spool *
    FORM DELETE_SPOOL.
      DATA: LD_SPOOL_NR TYPE TSP01_SP0R-RQID_CHAR.
      LD_SPOOL_NR = GD_SPOOL_NR.
      CHECK P_DELSPL <> C_NO.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                SPOOLID = LD_SPOOL_NR.
    ENDFORM. "DELETE_SPOOL
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    * Send email
    FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES IT_MESSAGE
                                              IT_ATTACH
                                              USING P_EMAIL
                                              P_MTITLE
                                              P_FORMAT
                                              P_FILENAME
                                              P_ATTDESCRIPTION
                                              P_SENDER_ADDRESS
                                              P_SENDER_ADDRES_TYPE
                                              CHANGING P_ERROR
                                              P_RECIEVER.
      DATA: LD_ERROR TYPE SY-SUBRC,
      LD_RECIEVER TYPE SY-SUBRC,
      LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
      LD_EMAIL LIKE SOMLRECI1-RECEIVER,
      LD_FORMAT TYPE SO_OBJ_TP ,
      LD_ATTDESCRIPTION TYPE SO_OBJ_NAM ,
      LD_ATTFILENAME TYPE SO_OBJ_DES ,
      LD_SENDER_ADDRESS LIKE SOEXTRECI1-RECEIVER,
      LD_SENDER_ADDRESS_TYPE LIKE SOEXTRECI1-ADR_TYP,
      LD_RECEIVER LIKE SY-SUBRC.
      DATA: T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
      T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
      T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      W_CNT TYPE I,
      W_SENT_ALL(1) TYPE C,
      W_DOC_DATA LIKE SODOCCHGI1.
      LD_EMAIL = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT = P_FORMAT.
      LD_ATTDESCRIPTION = P_ATTDESCRIPTION.
      LD_ATTFILENAME = P_FILENAME.
      LD_SENDER_ADDRESS = P_SENDER_ADDRESS.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    * Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    * Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    * Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE IT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
      ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = IT_ATTACH[].
    * Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    * Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR = LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME = LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE = T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    * Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      T_RECEIVERS-RECEIVER = LD_EMAIL.
      T_RECEIVERS-REC_TYPE = 'U'.
      T_RECEIVERS-COM_TYPE = 'INT'.
      T_RECEIVERS-NOTIF_DEL = 'X'.
      T_RECEIVERS-NOTIF_NDEL = 'X'.
      APPEND T_RECEIVERS.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = W_DOC_DATA
                PUT_IN_OUTBOX              = 'X'
                SENDER_ADDRESS             = LD_SENDER_ADDRESS
                SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
                COMMIT_WORK                = 'X'
           IMPORTING
                SENT_TO_ALL                = W_SENT_ALL
           TABLES
                PACKING_LIST               = T_PACKING_LIST
                CONTENTS_BIN               = T_ATTACHMENT
                CONTENTS_TXT               = IT_MESSAGE
                RECEIVERS                  = T_RECEIVERS
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                DOCUMENT_TYPE_NOT_EXIST    = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR            = 5
                X_ERROR                    = 6
                ENQUEUE_ERROR              = 7
                OTHERS                     = 8.
    * Populate zerror return code
      LD_ERROR = SY-SUBRC.
    * Populate zreceiver return code
      LOOP AT T_RECEIVERS.
        LD_RECEIVER = T_RECEIVERS-RETRN_CODE.
      ENDLOOP.
    ENDFORM. "SEND_FILE_AS_EMAIL_ATTACHMENT
    *& Form GET_SPOOL_NUMBER
    * text
    * -->P_SY_REPID text
    * -->P_SY_UNAME text
    * <--P_MI_RQIDENT text
    FORM GET_SPOOL_NUMBER USING F_REPID
                                F_UNAME
                                CHANGING F_RQIDENT.
      DATA:
      LC_RQ2NAME LIKE TSP01-RQ2NAME.
      CONCATENATE F_REPID+0(9)
      F_UNAME+0(3)
      INTO LC_RQ2NAME.
      SELECT * FROM TSP01 WHERE RQ2NAME = LC_RQ2NAME
                          ORDER BY RQCRETIME DESCENDING.
        F_RQIDENT = TSP01-RQIDENT.
        EXIT.
      ENDSELECT.
      IF SY-SUBRC NE 0.
        CLEAR F_RQIDENT.
      ENDIF.
    ENDFORM. " GET_SPOOL_NUMBER
    Regards,
    Vasanth

  • Officejet 7610 margins are too big on my Mac

    I'm on my second OfficeJet 7610 Wide Format, because HP couldn't fix this problem the first time, so they assumed it was a hardware issue.  I don't think it is...
    The default margins for this printer are as small as 0.13 inches (3.3mm) based on the specifications.  I use a Mac that runs Maverick.  I have no issue printing, only that I haven't found a way to reduce the margins down to the default dimensions above.  The top and bottom of my prints cut everything off smaller than 0.60 inches.  This is a real issue with PDFs, forcing me to chose the "shrink oversize pages" in order to not have the tops and bottoms cut off.  I should be able to print at "actual size".
    How can I change these margin settings globally??  Making manual margin adjustments in programs like Word, still cut off the tops and bottoms for anything smaller than 0.60 inches.  Please help!!

    What worked for me was selecting index card 8.5x11 on the mac print paper select options

  • Forcing preview to see downloaded pdf's automatically

    forcing preview to see downloaded pdf's automatically.
    Safari dowloads these but preview doesn't open it unless forced.
    My other MB air downloads them and automatically opens them in th media viewer of Safari.
    Workarounds?
    Thanks in advance
    MB air 11' OS 10.7

    In Safari, open the menu named "Safari" then click Preferences and look on the General tab. At the bottom is "Open 'safe' files after downloading" -- do you have that option selected?

  • How to force refresh of data through browser or PDF?

    We have the dashboard set to refresh every minute.  We are pulling the data using XML from DB.  When we are in browser and clear the browser cache and then reload the .swf... the data is updated.  We haven't been able to figure out how to force the cache-clear and data refresh with either swf or pdf.
    Your help is greatly appreciated.

    Hi Jeff,
    Is the XML coming from a web page or a web server?
    If yes then you can give this a go. To stop the caching mark your web page with extra tags to say it has expired.
    HTML page example:
    <HEAD>
        < META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE" />
        < META HTTP-EQUIV="EXPIRES" CONTENT="0" />
    </HEAD>
    JSP example:
    <%
      // Stop Internet Explorer from caching the results of this page.
      // We do this so that every time Xcelsius calls this page it see the latest results.
      response.setHeader("Cache-Control","no-cache"); //HTTP 1.1
      response.setHeader("Pragma","no-cache"); //HTTP 1.0
      response.setDateHeader ("Expires", 0); //prevents caching at the proxy server 
    %>
    Regards,
    Matt

  • Any way to force a PDF file to be opened in "fit to screen" mode?

    Is it possible to force a PDF to open "fit to screen" -- overriding whatever the end user has set as his default viewing preference -- while still allowing said user to zoom in and otherwise modify their viewing mode, AFTER the document has been opened?
    In other words, I'd just like to force the initial state on the reader... not limit them to it after the document has been opened.
    The reason being that most screens today are widescreen, so when you open a LETTER-format PDF file, most of the time you only see the top half. I'd like to force a document to be seen "fit to screen" so as to see ALL of it when opened... then, the user can do what he/she wants with it (and subsequent pages).
    Thanks.

    Hope the information did the job. However, be aware that you might also tick off some users that do not like default settings others like. I would suggest you consider your reason to override the user setting is good before you do it. If you really want a full screen view, maybe a landscape mode might be preferred. In that case, I suspect users would not mind the forcing of a full page.
    You can also force full screen viewing, but such is confusing to some folks that don't think of hitting the ESC key to get out.

  • Forcing link in one web based PDF to open link to another PDF in new browser window

    We have created a form using LiveCycle Designer ES2.  The form is found on our website and is used by faculty to submit proposal information to our office.  Depending upon the answers to questions in the form if they say yes we had a link to another form that we would like them to complete and submit with the original PDF that they are working on.  The problem that we are having is that when they click on the form it opens the new PDF and all the data that they had entered in the original PDF is gone once the new form opens up.  Is there a way to force the new PDF via the use of some scripting that can go along with the link, or via the use of a button that can force the new form to open in a new browser window?  It is impractical for us to expect 1500 faculty members to change their browser settings to open new PDF's in a new window.  We have removed the links for now and have just put in text that says if they select yes they need to go out and complete the additional form.
    The form we are using can be found here: http://spo.usu.edu/files/uploads/SP-01.pdf
    The first three questions on page two where we reference the other forms is where we would like to be able to add the links to the new forms and have them open in a new browser window.  When the form is downloaded and opened in Adobe Acrobat/Reader the links functioned correctly, it just did not function properly when it opens in a browser.
    Thank you in advance for any assistance you can offer in regards to this issue.

    I used a button, removed the border/fill properties and underlined the caption to look like a URL.
    The click event is...
    // form1.page1.subform1.urlBtn::click - (JavaScript, client)
    app.launchURL("http://spo.usu.edu/files/uploads/SP-01.pdf",true);
    The PDF will open in a new window or tab, depending upon the browser configuration.
    Steve

  • On a web page when I open a pdf file it says download on the window and then suddenly starts opening multiple firefox blank pages I cant stop it except by using force quit - help

    multiple blank firefox pages open one after the other, can't stop them. only solution is to use "force quit" I am on an iMac. Never had this until today. Has happened now 3 times! its scary/
    == This happened ==
    Just once or twice
    == I clicked to open a pdf file on a web page (i've done this many times before on this web page with no problem) ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    See [[Firefox keeps opening many tabs or windows]]
    You can have infinite tabs opening if you have selected Firefox as the application to handle a file if you get an ''Open with'' download window.
    Firefox should not be selected as the application to handle a file and you have to remove the action that is associated with that file type.
    You can delete [http://kb.mozillazine.org/mimeTypes.rdf mimeTypes.rdf] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] to reset all actions or set that action in Tools > Options > Applications to 'Always Ask'.
    See http://kb.mozillazine.org/File_types_and_download_actions ("File handling in Firefox 3 and SeaMonkey 2" and "Reset Download Actions")

  • I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    I am having problems with the Preview application.  When I try to use it to open a pdf document it gets hung-up and I have to select force quit to close it.   Any ideas on how to resolve this problem?  Thanks for any help

    Can you open the Preview program without loading a file, like by itself?
    If it doesn't load then I suspect a corrupt Preview preference file.
    Deleting the System Preference or other .plist file
    Can you open other files with Preview, like jpg's and images?
    How about other PDFs? or is it just that one you have downloaded?
    Run through this list of fixes
    Step by Step to fix your Mac

  • I wish to upload a PDF file to my website but Firefox 3.6.12 reports it as type application/force-download and NOT application/pdf, WHY?

    My website has been running for many months, and as part of the site users can upload PDF documents to share with others. The last successful upload was 5th Nov, but to-day my upload was rejected because Firefox returned the document type as application/force-download rather than application/pdf. Uploads work fine with IE8.
    The site uses PHP to check extension and document type and, as I mentioned, has worked fine for many months. I have even attempted to upload the same document that succeeded on the 5th, but again Firefox returns application/force-download as the document type.
    Why the change?

    Just found a solution.
    In Tools, Options, Application Firefox listed TWO options against Adobe Acrobat Documents; the apprliaction/pdf and application/force-download. I have deleted mimeTypes.rdf and allowed Firefox to re-create the file. All works as it should now!

  • Firefox won't open PDF files after I removed older version of PDF-xChange Viewer and installed the lastest version of PDF-xChange Viewer. MS Explorer which I am now force to use works OK. I have checked the Applications window in Tools/Options and it l

    Firefox no longer opens PDF files. Explorer works OK. I have checked the Applications window in the Tools/Options and it says I am using PDF-xChange viewer....It just does not do anything. I get the message in the Download Error window which says...."could not be saved, because you cannot change the contents of that folder. Is the same error which I get when I attempt to open a PDF file on a webpage using the Firefox browser....Explorer works OK so I am now forced to Explorer to read PDF files via a browser.
    == This happened ==
    Every time Firefox opened
    == After removing a old copy of PDF-xChange Viewer and updating to the last version

    The error message suggests that the file (pdf) that you're trying to download cannot be saved in the folder Firefox tries to save it in.
    This can be due to several things - it could be a non-existing folder (could be a problem with the updated application), the hard drive could be too full to store the file (less likely if you can generally surf the net without error messages) or it could contain an error.
    To complicate things a little further, it seems to me that you have (at least) 3 different PDF-handling plugins in Firefox from different programs:
    PDF-XChange Viewer Netscape Gecko Plugin
    Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    Zeon PDF Plugin For Mozilla
    This shouldn't matter too much, thou, as it will most likely simply use either the latest installed or the first one it finds when looking up associations for files of type 'pdf'.
    First, in Tools > Options... > tab General > section File download, select "Save files in" and Browse your way to a (non-writeprotected!) folder on a drive where you're certain there is enough free space - like the Desktop folder to make the files end up on your Windows desktop.
    Second, under Applications as you mention yourself, find all document types related to PDF files, and set these to one of the programs. Check the entire list to be sure there isn't one hiding under one of the other programs' document types (Adobe Acrobat document, PDF X-Change and Zeon).
    Restart Firefox, and try opening a PDF again.
    If it fails once more, try changing the documents again to one of the other programs, like "Use Adobe Acrobat (in Firefox)".
    If it STILL fails, change it to simply "Save file". Then you can simply browse your way to the download folder with Windows Explorer, and doubleclick the PDF file to see which program actually handles PDF files as default on the machine, and if it works properly.
    If Firefox flatly refuses to save the PDF files in a folder which you're certain both exist and has space for the file, some (probably security related) program is most likely interfering with Firefox, preventing it in storing PDF files on the system.

  • Can you force a link inside a .pdf to open the "linked to" document in a new window?

    When I have a link inside my .pdf document - linking to another .pdf document or to a Word document - how can I force the linked-to document to open in a new window?
    I have a web site (business internal, so unfortunately I cannot point to it).  My HTML menu has links to .pdf documents - no problem.  However, once I open those .pdfs, they contain links to other .pdfs and to Word documents.  Clicking on these links, which reside inside my .pdfs, opens the "linked-to" docs in the same page.  How can I force them to open in a brand new frame?
    All of my .pdfs were originally created in Word, and in the Word versions, the links DO open into new frames.  I am not sure why, when I convert them to .pdfs, they lose this feature.
    Can anyone help?

    Hi Magenta,
    Would you mind reposting this question over on the Acrobat boards?  You've posted in the AIR forum and you'll have better luck with this over there.
    Thanks,
    Chris

  • Servlet forces a download of pdf instead of displaying it

    Hi,
    First I apologize for the cross posting, but I'm in need of an answer ASAP, and I'm not sure what forum best suits this problem. I have a servlet that retrieves a pdf from a database and displays it. This servlet has been working fine up until recently, when I tested it on SunOne App server. I have been using Tomcat to build my app, and recently deployed it to SunOne to test it on there, but now when I try and view it, I'm forced to download and save the file to my computer. Having tested this servlet app on Jserv and Tomcat(both working fine), I'm guessing that the problem might reside in some kind of SunOne server configuration. Is this possible? I know very little about that side of things. Any help would be much appreciated.
    Thanks

    Are u saying that the computer with SunOne installed should have Acrobat installed aswell, even if I'm accessing the application from another computer which has acrobat installed. Here is some of the code:
    long length = 0;
    int len = 0;
    Blob b = resultset.getBlob(1) ;
    InputStream is = b.getBinaryStream();
    length = b.length();
    byte[] x = new byte[10*1024];
    resp.setContentType("application/pdf");
    resp.setContentLength((int)length);
    DataOutputStream o = new DataOutputStream(resp.getOutputStream());
    while ((len = is.read(x)) != -1)
    o.write(x, 0, len);
    o.flush();
    o.close();
    Thanks

Maybe you are looking for

  • Downloader doesn't retain previous settings

    Can Bridge Downloader be set to always open with the advanced dialog box and can it be set to retain the previous settings?  Also, is there a Preferences for the Downloader?  I can see it listed in the menu, but it's ghosted. It would be a real time-

  • SAP GUI710 Logon issue

    Hi , all Now , i am using SAP GUI710 , Patch level 3,   i have an issue , if i leave the sec untouched for about 5 minutes , GUI will log off itself , and give me this information: CD1: connection to partner " ..........: sapdp00" broken WSAECONNRESE

  • Storing data in a new excel sheet for each loop count

    I have a data acquisition code that takes data from the oscilloscope and saves it in an excel file. The oscilloscope has to take data at different instants(at each loop count). At each instant, the data gets appended to the same excel sheet. I just w

  • Modelling complex data structures

    Hello all, I'm trying to understand how to model and design a scenario where the data is non-flat (specifically purchase orders).  As far as I understand Duet Enterprise does not handle non-flat structures (without custom coding in SharePoint). What

  • Pressimistic lock exception

    Hi I use refreshAndLockObject to lock a record when one thread this record, and when I want to commit, I always got a null pointer exception. Do you have any idea? Thanks. java.lang.NullPointerException      at oracle.toplink.internal.descriptors.Met