Downloading a PDF option

Hi.
I was wondering if it is possible to share a pdf file but not have the download button? I want to share a file but I don't want to allow the users to be able to download the file to their computer.
Thanks in advance for help.
Lesli

Hello Lesli,
Thank you for your post. Unfortunately, there is no way to prevent someone you've shared a file with from downloading that file; this is a security measure that we hope to implement in the future, but as yet have not been able to include in the service. I encourage you to stay tuned for future updates to the service, as we are planning some big changes over the coming months. Please let me know if you have any more questions and I will be happy to answer them.
Best,
Rebecca

Similar Messages

  • Download to PDF option.

    Is there a way to have the 'Download to PDF' option in Dashboards (similiar to Excel, Powerpoint, Data etc) ? Our users need this option where when you click download to pdf the 'open or save' window should pop up.
    Thanks.

    hi,
    Tell me whether your own print to pdf script is working with narrative or not.
    what i found is if we put some html tags inside narrative-prefix then theobiee provided print options won't work especially pdf printing.
    Regards,
    Pavan

  • Download a PDF option?

    Might be a simple question not sure.
    I know you can create hyperlinks to open a PDF in a separte webpage, but is there anyway in DPS that you can make a button and give the viewer an option to download a PDF?

    You can... You'd have to post your PDF on a webserver and use that URL as you hyperlink. When the user taps the link it will open the PDF in the in-app browser which then the user needs to tap on the curved arrow so the PDF is open in Safari. From here the user can save the PDF to Reader, Drop Box. etc.
    This app has what you are looking for.
    https://itunes.apple.com/us/app/texas-new-mexico-newspaper/id592418658?mt=8

  • Disable download a copy option for pdf files in SharePoint 2013

    Hi,
    We need to disable Download A Copy option of Document library for few users of our site.
    We have provided them View Only rights which disables download for other files except PDF files.
    Kindly suggest

    Hi Nirikshita,
    As the “Download A Copy” button was available when the users(View Only permission) clicked a PDF file, you can try to hide the “Download A Copy” option based on user permissions.
    There are some links for your reference:
    http://social.technet.microsoft.com/Forums/en-US/12c1db29-38ab-45cc-803d-29e5ba4834bc/disable-download-a-copy-submenu?forum=sharepointgeneralprevious
    http://www.alaindeklerk.com/conditionally-enabledisable-ribbon-buttons-based-on-user-permissions/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/eba89b93-6d1b-4453-b50c-5fc7790c1082/how-to-hide-ribbon-buttons-from-sharepoint-2010-page?forum=sharepointcustomizationprevious
    http://johanolivier.blogspot.com/2011/12/show-or-hide-sharepoint-ribbon-tab.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Downloaded free PDF Portfolio, no Create PDF Protfolio option from File Create

    Downloaded free PDF Portfolio, instructions say to load via> File, Create, Create PDF Portfolio,  there is no option for Create PDF Portfolio in my Acrobat XI

    (Actually, I think this question is about Adobe Acrobat, not CreatePDF.)
    Do you have Acrobat Standard? If so, I think it is a mistake that you were offered this, as portfolios are a feature of Acrobat Pro. At least, that's what I remember.

  • Smart Form Download in PDF

    Hello All ,
                   I have created one smart form and provided option to download the same in PDF. My Problem is that is  downloaded in PDF but at the same time my end user want to see the print preview and take the print from there itself also.
    I am using the following code can some one suggest me the what need to do the change after both option will work at  the same time.
    Please Note I have also made the use of property
    SSFCOMPOP-TDNOPREV
    But after this also issue not resolve. Some one Please suggest me the how to resolve the issue.
    DATA :
          WA_FMNM        TYPE  TDSFNAME,      " Smart Forms: Form Name
          WA_CNTL        TYPE  SSFCTRLOP,     " FOR PDF PRINT
          WA_POP         TYPE  SSFCOMPOP,     " printer name
          T_OTF_FROM_FM  TYPE  SSFCRESCL,
          T_PDF_TAB      LIKE  TLINE OCCURS 0 WITH HEADER LINE,
          T_OTF          TYPE  SSFCRESCL-OTFDATA,
          W_BIN_FILESIZE TYPE  I, " BINARY FILE SIZE
          W_FILE_NAME    TYPE  STRING,
          WA_FNMD        TYPE  RS38L_FNAM.    " Name of Function Module
    DATA:
          W_FORM_NAME    TYPE TDSFNAME,
          W_FMODULE      TYPE RS38L_FNAM,
          W_CPARAM       TYPE SSFCTRLOP,
          W_OUTOPTIONS   TYPE SSFCOMPOP,
          W_FILE_PATH    TYPE STRING,
          W_FULL_PATH    TYPE STRING.
    SMART FORM FUNCTION MODULE
    WA_FMNM  =  TEXT-113.
    W_FORM_NAME  =  TEXT-113.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          FORMNAME                 = WA_FMNM
       IMPORTING
          FM_NAME                  = WA_FNMD
       EXCEPTIONS
         NO_FORM                  = 1
         NO_FUNCTION_MODULE       = 2
         OTHERS                   = 3
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    END FORM
    WA_CNTL-GETOTF     =  'X'.
    WA_CNTL-NO_DIALOG  =  'X'.
    WA_CNTL-PREVIEW    =  SPACE .
    WA_POP-TDDEST      = 'LP01'.
    CALL FUNCTION WA_FNMD
    EXPORTING
        CONTROL_PARAMETERS         =  WA_CNTL
       OUTPUT_OPTIONS             = WA_POP
        V_APPLN_OB                 = V_APPLN_OB
        V_KUNNR_OB                 = V_KUNNR_OB
        V_EBELN                    = V_EBELN
        V_CAT_NAME                 = V_CAT_NAME
        V_VAR_NAME                 = V_VAR_NAME
    IMPORTING
      JOB_OUTPUT_INFO              = T_OTF_FROM_FM
      TABLES
        T_ZCNC18                   =  T_ZCNC18
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    T_OTF[] = T_OTF_FROM_FM-OTFDATA[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
       MAX_LINEWIDTH               = 132
    IMPORTING
       BIN_FILESIZE                 = W_BIN_FILESIZE
      TABLES
        OTF                         = T_OTF
        LINES                       = T_PDF_TAB
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
    EXPORTING
        PROMPT_ON_OVERWRITE = 'X'
    CHANGING
        FILENAME    = W_FILE_NAME
        PATH        = W_FILE_PATH
        FULLPATH    = W_FULL_PATH
    EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        OTHERS = 4 .
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      BIN_FILESIZE  = W_BIN_FILESIZE
      FILENAME      = W_FULL_PATH
      FILETYPE      = 'BIN'
      APPEND        = ' '
      WRITE_FIELD_SEPARATOR = ''
      HEADER                = '00'
      TRUNC_TRAILING_BLANKS = ''
      WRITE_LF              = 'X'
      COL_SELECT            = ''
      COL_SELECT_MASK       = ''
      DAT_MODE              = ''
      CONFIRM_OVERWRITE     = ''
      NO_AUTH_CHECK         = ''
      CODEPAGE              = ''
      IGNORE_CERR           = ABAP_TRUE
      REPLACEMENT           = '#'
      WRITE_BOM             = ''
      TRUNC_TRAILING_BLANKS_EOL = 'X'
    TABLES
      DATA_TAB              = T_PDF_TAB
    EXCEPTIONS
      FILE_WRITE_ERROR        = 1
      NO_BATCH                = 2
      GUI_REFUSE_FILETRANSFER = 3
      INVALID_TYPE            = 4
      NO_AUTHORITY            = 5
      UNKNOWN_ERROR           = 6
      HEADER_NOT_ALLOWED      = 7
      SEPARATOR_NOT_ALLOWED   = 8
      FILESIZE_NOT_ALLOWED    = 9
      HEADER_TOO_LONG         = 10
      DP_ERROR_CREATE         = 11
      DP_ERROR_SEND           = 12
      DP_ERROR_WRITE          = 13
      UNKNOWN_DP_ERROR        = 14
      ACCESS_DENIED = 15
      DP_OUT_OF_MEMORY = 16
      DISK_FULL = 17
      DP_TIMEOUT = 18
      FILE_NOT_FOUND = 19
      DATAPROVIDER_EXCEPTION = 20
      CONTROL_FLUSH_ERROR = 21
      OTHERS = 22   .
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards
    Swati Namdev

    Hi Swati,
    Pls refer the below code:
    TABLES: ekko.
    DATA: int_itab TYPE TABLE OF ekko WITH HEADER LINE.
    DATA: wf_name TYPE rs38l_fnam.
    DATA: wf_so1.
    *For PDf Conversions
    DATA: int_tab_otf_data TYPE ssfcrescl,
          int_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
          int_tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
          file_size TYPE i,
          bin_filesize TYPE i,
          file_name TYPE string,
          file_path TYPE string,
          full_path TYPE string,
          cparam TYPE ssfctrlop,
          outop TYPE ssfcompop.
    **Preview not allowed.
    outop-tddest = 'LP01'.
    cparam-no_dialog = 'X'.
    cparam-preview = ' '.
    cparam-getotf = 'X'.
    GET PARAMETER ID 'EBLEN' FIELD wf_so1.
    SELECT mandt ebeln bukrs bsart ernam ekorg bedat FROM ekko INTO TABLE
    int_itab WHERE ebeln = wf_so1.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = 'Z_SMARTFORM_FINAL2'
      IMPORTING
        fm_name            = wf_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION wf_name
      EXPORTING
        control_parameters = cparam
        output_options     = outop
        user_settings      = space
      IMPORTING
        job_output_info    = int_tab_otf_data
      TABLES
        int_itab           = int_itab.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    int_tab_otf_final[] = int_tab_otf_data-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        format        = 'PDF'
        max_linewidth = 132
      IMPORTING
        bin_filesize  = bin_filesize
      TABLES
        otf           = int_tab_otf_final
        lines         = int_pdf_tab.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
      CHANGING
        filename = file_name
        path     = file_path
        fullpath = full_path.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        bin_filesize = bin_filesize
        filename     = full_path
        filetype     = 'BIN'
      IMPORTING
        filelength   = file_size
      TABLES
        data_tab     = int_pdf_tab.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Ramneet Ahuja

  • How to download a pdf file from the server from an strut application?

    Hi,
    I wan to download a pdf file from the server side to local system. Please help me how i use the down load option.

    Read up on the Struts download action [1].
    And next time, please post in the relevant forum, one of the web-tier ones [2].
    [1] http://wiki.apache.org/struts/StrutsFileDownload
    [2] http://forum.java.sun.com/category.jspa?categoryID=20
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

  • How do you create a link to download a PDF file?

    I'd like to create links so that when clicked, a PDF file associated with the link will automatically be downloaded. I've created a folder where I've stored all of the PDF files, but where on my web host do I put the folder--is it part of the published iWeb folder or should it be kept separate? (I'm using a 3rd party web host, Lunarpages.com)
    Second, to create the links, I've written "Download Page" on for each link, highlighted the words, then enabled it as a hyperlink with the inspector. However, this changes "Download Page" to the name of the PDF file. How can I keep the words "Download Page" without changing it to the name of the file? Also, is this the correct way to have a PDF file automatically downloaded when "Download Page" is clicked?
      Mac OS X (10.4.7)  

    Hi there,
    While I do not use iWeb, I do use PDF files on my website.
    I first create a new folder to hold my PDF files and upload this to my website. When I create and upload PDF files I will upload to this folder. When someone wants to view this files, all they need to do is click on the link I created. After clicking on link, if the user is on a PC, Acrobat Reader is automatically used to view the file or if they are on a Mac, Preview is usually the default viewer (if the they are using Safari, it will simply open in Safari). Just having the extension on yourfile.pdf will cause this and you will not need to do anything else on your end.
    FOR EXAMPLE: Download Sample PDF - try it on different browsers and PC's
    As far as 'download page', it automatically starts as soon as you click on link. If you are talking about 'saving' the user will always have that option on their end...
    Rick
    iMac G5 iSight 20" - 30G iPOD in Slimming Black -   Mac OS X (10.4.7)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620

  • PDF documents not opening in Mozilla at all, PDF option is not there under the options tab applications

    Hi,
    Firefox has automatically been "asking me" if I want to save the pdf document instead of showing them in the browser. I have update 22. I have tried to look for the pdf options under the options>applications settings and it doesn't even show up! Is this because I updated? I updated on July 4th and didn't need a pdf until now and this problem showed up. Before, I did not have this problem. PDFs were opening on the browser and I had that pdf option under the application's list.
    So I don't know what to do since I don't even have that option on here. What should I do?

    Hi thank you for taking the time to reply.
    ''"You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader"''
    Yes, I have Adobe Reader installed and that's my preffered option. I have recently and manually uninstalled Adobe reader,Reinstalled it again, restarted my computer, and I am still having the same problem. I cannot see the option to preview the pdfs in firefox using adobe. It either uses the the Firefox pdf reader Zeon? or the other option is to Always ask me to download it to my desktop.
    I have attached what I see, maybe you can help me based on that. It seems the plugins work well (Figure 2) but only the pdf plugin for adobe to be previewed in firefox is missing (Figure1).
    Also, I attempted to re-initialize the plugin database but it still gives me the same option as always.
    ''"You can set the pdfjs.disabled pref to true on the about:config page to disable the build-in PDF viewer." ''
    No, if I set it to "true" then the pdf option under applications disappears. So I have kept it as false. (Figure 3 shows that it goes missing, not the same as in Figure 1)

  • Installing Acrobat  9 Pro has caused a failure to download any pdf from any website.

    When I click on a pdf file, including any of the help files on the Adobe site, I get a view of the file for a fraction of a second and then it is replaced by a grey screen saying ' Acrobat Plugin Crashed' and offering me the option of sending a report. I have sent many reports, to no avail. For example, I looked up some train times, and got only the briefest tantalising glimpse of the pdf before it was replaced by the grey screen. The system was fine previously, when I had only Acrobat Reader.  How can I put this right?

    I have tried using Internet Explorer instead of Firefox, and I have the same problem, which is still being flagged up as a problem with Acrobat Reader. My operating system is Windows 7  Home Premium version 6.1.
         Pdf files that are sitting on my desktop load successfully in Acrobat Reader, or with the Acrobat Pro that I loaded recently,  but their ikons do not appear with the Acrobat red and white symbol. The error message and rapid disappearance of the pdf file, sometimes after a brief showing, occurs whenever I try to download a pdf file from the web. The problem is very annoying and I never encountered it until I purchased and loaded Acrobat Pro. What can I do about this plugin problem? I have tried reinstalling Firefox and reinstalling Acrobat Pro from the disk, as you suggested.

  • After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    After downloading a pdf from a website, how can I view the file in Safari 6.0.4 (just as I can in Safari 5.0.6)?  I bet that it's simple, but I've missed something, somewhere, and a solution will be greatly appreciated.

    Hello Kirk,
    Thank's for your efforts, and I just wish that this was the solution.  Unfortunately, it isn't because, after double-clicking on the pdf in the website, it simply "opens" in another Safari window as a black screen - the pdf is there, somewhere, but not visible (either as an icon, or as a document). 
    When I right-click in the black Safari window, where the file is supposed to be, the only option available to display the file is to "Open file in Internet Explorer" (which is not what I want to do).  Other options include saving or printing the pdf, which I don't want until I've confirmed that it's the form that I want.  The same options are offered if I right-click on the file icon in the website.
    Any other suggestions, please?

  • Mass upload & Download of PDFs in Web Dynpro ABAP

    Hi All,
    Is it possible to download multiple PDF's at one go ? for example if you have a Table UI control where each row has one clickable link that generates a PDF using WebDynpro ABAP Application, we want to enable multiselect property of Table UI and provide Mass Download Button control on click of which all selected rows should generate PDF and then get dowloaded to a specific location on machine (c:/). or if there is any other alternative possible ?similarly for Mass Upload we wish to multi select PDFs and upload them to R/3 at one go ?
    please let me know if such thing is possible ? if yes is it a good option to have ? as we have users who have to upload these PDF one by one and they wish if they could simply select all PDFs at one go and click Mass upload..Note that there are some validation that we perform once we upload PDF before posting PDF data to backend.
    your help & comments would be Highly Appreciated !!
    Thanks
    Asif

    >
    Maged Ishak wrote:
    > Hi Thomas,
    >
    > could you give me an example how can i download multiple objects without multiple prompts with the class CL_ABAP_ZIP. I use a Web Dynpro for ABAP and I have for Example many word file and i want to download all file in one ZIP-File.
    > thanks in advance
    > mishak
    You simply use the CL_ABAP_ZIP class to combine the multiple binary strings of the word files together.
      data izip type ref to cl_abap_zip.
      data zip_xstring type xstring.
      create object izip.
      loop at ifiles assigning <Wa_file>.
      izip->add( name = <wa_file>-filename
                  content = <wa_file>-filecontent ).
      endloop.
      zip_xstring = izip->save( ).

  • In Mac OSX, after I download a PDF, why do I now have to duplicate a PDF inorder to save it?

    In OSX 10.7: When I download a PDF, open it, why do I have to duplicate it inorder to just save it? Seems redundant and a space waste.

    Correct. Once downloaded any file is saved in the Downloads folder by default. But files can also be downloaded to a specific location via the browser's context menu for download links. Safari, for example, has a "Download Linked File As" option. Most browsers have a similar option.

  • Print: Compress PDF Option Help - Leopard

    hello,
    as a preface, we're a photography company that routinely saves PDF files with images to send to clients for approval.
    i understand that with leopard, they removed the Compress PDF option from the print menu. i followed the instructions, opened it up with Preview and saved as reduced file size. the images all came out VERY grainy. with the Compress PDF option, the image quality was great.
    so i went and restored Compress PDF using this link: http://www.apple.com/downloads/macosx/automator/compresspdfworkflow.html
    however the images still come out as grainy as they did with the "reduce file size" option. anyone have any advice on how to get it working like it did in the previous OS?
    thanks much

    I had more or less the same issur.
    Try this tip I posted :
    http://discussions.apple.com/thread.jspa?threadID=1330879&tstart=0
    Hope this helps,
    Jerome.

  • How do I solve font changes when downloading a PDF document?

    When downloading some PDF documents, the font changes.  I have tried several troubleshooting solutions, but my issue was not solved.  What can I do to prevent this from happening or if it does, to remedy the problem?

    Yes, Ajlan, thank you. I solved the issue by opening PDF documents of unwanted fonts with another PDF document reader.  When I open my files folder, there is an option (drop down box) at the top that allows for me to choose from either Adobe Reader or PDF Vista.  It may have been there all along; I just didn't notice it until I recently had this issue.
    Take care :-)
    Angela

Maybe you are looking for

  • Oracle 9.0.1 Linux Intel Images on Downloads corrupt

    The Oracle 9.0.1 Enterprise DataBase software for Linux Intel downloadable version on the Oracle Technology Network has 2 of the Disk images currently corrupt. After downloading all the 3 Oracle 9.0.1 Database CD images in binary for Linux Intel from

  • Itunes - summary page phone number - n/a

    Hi i have recently taken a new contract from 3 Network, its iphone 4s 16gig white well earlier i was with o2 and was using iphone 4 so earlier when i had iphone 4, in itunes on the first page as in under "SUMMARY" There are few stuffs saying ...Nmae

  • How do i get rid of this space?

    okay, i'm having trouble with this method, i've tried so many ways to get rid of the single space before the "]" , if i do a "\b" anytime after the for statement is done, it just prints a small square.    // prints out the prime numbers inside sieve

  • I photo like ap to make photo books?

    I want to make a photo book like the ones in Iphoto. Is there an ap for that?

  • Printing from iPhoto ***HELP PLEASE***

    Hi there.  I'm running iPhoto 9.5.1 and up until now have always managed to print photos.  Literally hit print and it automatically working out whether its portrait picture or landscape.  It recently updating iPhoto. Suddenly, when i hit print using