Lock a PDF file when converted from Smartform

Hello Experts,
In our current project we have an urgent requirement to apply a Lock to a PDF document
so it cannot be amended. This is a PDF document and not an Adobe interactive
form, which currently cannot be used on the project. We are seeking help from
other colleagues who have had successful experience in achieving the creation
of a lock to the PDF document which is generated as an output from a SAP Smart
Form and then e-mailed to the recipient, in this case end Customers, therefore
integrity of information to prevent changes is a legal requirement. We are
aware of an encrypted password option but in this case we need to apply a lock
to the PDF document.
Many Thanks in advance,
Kind Regards,
Nikhil

Does your pdf reader plugin need updating, are you on version 7, whilst current version is v10
* see [[opening pdf files within firefox]]
* and [[using the adobe reader plugin with firefox]]

Similar Messages

  • Is there a way to control the quality of my pdf file when exporting from a .pse file?

    Is there a way to control the quality of my pdf file when exporting from a .pse file?
    Hi,
    I have 2 pages in all in a .PSE file.
    When I try to export it as .PDF, the quality is very poor. I cannot change it to a better quality.
    Please advise how I can export the file so that i can have better quality.

    Rik Ramsay wrote:
    To expand a little on what Jongware said, normally choosing vector over bitmap will decrease the filesize. If the vector art is very complex though, this will not be true.
    Yup, a logo as bitmap takes up more space than the same as a vector -- unless the vector image is bitmap heavy (think Drop Shadow, Outline Glow; these are actually bitmap effects).
    Also, check your PDF version. "Older" versions do not support live transparency, the latest do. Then again, you cannot use live transparency if you suspect your viewers may be using Mac OS X, because Apple's own PDF viewer sucks big time.

  • How did my pdf files get converted from 'open with Adobe Reader' to open with Adobe Acobat'?  And if I have a ''free'' Acrobat account why does it not open?  When I do click on the account it ask me to pay $89.99.  I never wanted Acrobat.  How can I get -

    How did my stored files get converted from 'open with Adobe READER' to 'open with Adobe ACROBAT'? How can I get them re-set to open with 'Adobe Reader'?
    Please reply to my e-mail:   [email protected]

    It sounds as if you downloaded Adobe Acrobat Pro. If you did, uninstall it. Then repair Adobe Reader.
    The free Acrobat account has no connection to any of this.

  • Distorted Files when converting from Excel to PDF

    Hello,
    I work in IT and I have an annoying issue that when someone using Excel 2007 clicks on the acrobat tab to create a PDF from excel. The finished PDF file is distorted, and will not show the files as they should be. Part of the graph will be missing. I tried uninstalling and reinstalling Adobe Acrobat Pro X, the only thing that happened was that when creating a new user, the new user is able to create a perfect excel to PDF file with no issue, but the original user with the issue still has the same problem. Is there a setting that will fix this? 

    Hi,
    Please share your file if possible so that I can look into the problem. Please use below link:
    https://adobeformscentral.com/?f=qJiclooYWGGNFtWfj8g3wg#
    thank you.
    Hisami

  • Spool to PDF - Problems with downloading PDF file when converting with job

    Hi all!
    I've got a problem. I've got a program that writes a smartform into the spool. After that, I am using the function modules RSTS_GET_ATTRIBUTES and CONVERT_OTFSPOOLJOB_2_PDF to convert it into PDF. I retrieve a internal table with the binary content for the PDF file. Now i can download the file to the desktop by using the method cl_gui_frontend_services=>gui_download.
    But there is a problem: when the spool excesses 99 pages, the function module CONVERT_OTFSPOOLJOB_2_PDF asks the user via popup if the PDF should be created in background. If the user commits, the internal tables that should contain the binary PDF data is emtpy. A background job writes the binary data into the spool. The user has got an empty file that will be generated by cl_gui_frontend_services=>gui_download.
    So, is it possible to suppress the popup to create the PDF allways online? Or how can I write the PDF file if there will be create any spool id in background? You'll find my current code below.
    * Prüfen ob es die übergebene Spoolnummer überhaupt gibt
      SELECT SINGLE * FROM tsp01 INTO ls_tsp01 WHERE rqident = id_spoolid.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
    * TemSe-Objekte speichern sequentielle Daten. Ein TemSe-Objekt kann aus
    * mehreren Teilen bestehen. Dieser FB ermittelt die wichtigsten Attribute
    * eines TemSe-Objekts. Falls das Objekt aus mehreren Teilen besteht, werden
    * die Attribute entsprechend zusammengefaßt.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          client        = ls_tsp01-rqclient
          name          = ls_tsp01-rqo1name
          part          = 1
        IMPORTING
          objtype       = ld_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF ( sy-subrc <> 0 ).
        cf_error = 'X'.
        EXIT.
      ENDIF.
      IF ld_objtype(3) = 'OTF'.
        lf_is_otf = 'X'.
      ELSE.
        lf_is_otf = ' '.
      ENDIF.
      IF ( lf_is_otf = 'X' ).
    *   Konvertiere OTF-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
    *        pdf_destination          = 'T'
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ELSE.
    *   Konvertiere ABAP-Liste-Spoolauftrag nach PDF
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = id_spoolid
            no_dialog                = ' '
          IMPORTING
            pdf_bytecount            = ld_numbytes
            pdf_spoolid              = ld_pdfspoolid
            btc_jobname              = ld_jobname
            btc_jobcount             = ld_jobcount
          TABLES
            pdf                      = lt_pdf
          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.
        IF ( sy-subrc <> 0 ).
          cf_error = 'X'.
          EXIT.
        ENDIF.
      ENDIF.
      WHILE ( lf_file_ok = '' ).
    *   Die in der Tabelle lt_pdf enthaltenen Binärdaten werden nun in eine
    *   Datei geschrieben. Da alle übergebenen Tickets in die gleiche Datei
    *   geschrieben werden, kann der im Speicher gehaltente Protokolleintrag
    *   gelesen werden
        CALL METHOD cl_gui_frontend_services=>gui_download
          EXPORTING
            bin_filesize              = ld_numbytes
            filename                  = cd_filename
            filetype                  = 'BIN'
    *    append                    = SPACE
    *    write_field_separator     = SPACE
    *    header                    = '00'
    *    trunc_trailing_blanks     = SPACE
    *    write_lf                  = 'X'
    *    col_select                = SPACE
    *    col_select_mask           = SPACE
    *    dat_mode                  = SPACE
          confirm_overwrite         = 'X'
    *    no_auth_check             = SPACE
    *    codepage                  = SPACE
    *    ignore_cerr               = ABAP_TRUE
    *    replacement               = '#'
    *    write_bom                 = SPACE
    *    trunc_trailing_blanks_eol = 'X'
    *    wk1_n_format              = SPACE
    *    wk1_n_size                = SPACE
    *    wk1_t_format              = SPACE
    *    wk1_t_size                = SPACE
    *  IMPORTING
    *    filelength                =
          CHANGING
            data_tab                  = lt_pdf
          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
            not_supported_by_gui      = 22
            error_no_gui              = 23
            OTHERS                    = 24.

    Creating a PDF file with over 99 pages through SAP seems rather unreasonable to me. What are you printing - Encyclopedia Britannica? For cripes sake... Have you thought about creating more than one spool request or using something completely different? Why do you have to do this through spool? You can get Smartform output directly into PDF, there are a lot of example out there.
    The only solution that comes to mind is rather brutal - create a copy of the function module and get rid of the popup. Although it just might time out after that...

  • How do I save highlighting in .pdf file when converting to .docx format?

    When I try to convert a .pdf file to .docx format the highlighted words are not visible through the highlighted area.  Just blocks of color with no words showing through apear in the converted file:
    After Conversion to .docx
    I created the .pdf file on an iPad using the PDF expert app, uploaded it to Dropbox, downloaded it from Dropbox on a PC laptop, and converted it to .docx.  Above is the result.  When the .pdf file is opened with Adobe reader the highlighting is as it should be (words are visible through highlighting)

    With what?
    rmckay4 wrote:
     ...and converted it to .docx.

  • Why does Adobe reader on iPad lock unlocked pdf files on move from computer

    I Have copied several pdf files, which I have made, from my laptop to my iPad. On my laptop they are unlocked and I can Add text etc. On the iPad they become locked and I cannot do this. Why? How do I stop this so that's can have u locked pdf files on my iPad.

    Rbradford,
    Did you add document restrictions or an "Open Password" protection to your PDF documents?  When you add any of document security features to a PDF document, it will be encrypted.
    Currently, Adobe Reader mobile products do not support adding annotations to encrypted PDF documents or filling out encrypted PDF forms, for example.
    To check whether your PDF document is encrypted
    Open your PDF document in the desktop version of Adobe Reader or Acrobat Pro.
    Select File > Properties... from the menu.  (Or press Command+D for Mac, Control+D for Windows.)
    Select the Security Tab.
    Click the Show Details... button (if enabled).
    Check the last entry in the Document Security dialog.
    If this is not the case, please send one of your PDF documents to [email protected] and include the link to this forum post (https://forums.adobe.com/thread/1593031) in your email message for reference.
    We will inspect the PDF document and diagnose the cause of the problem.  Thank you.

  • Pdf file when made from inDesign is not cutting vector images outside of its windows

    Hello,
    I have a page in illustrator full of vector images. I bring it into InDesign and crop them by putting each piece in it's own window. Then, I make a pdf. When I open the pdf in Illustrator it looks fine but when I hit the preview/artwork option, I can see that all the images from that original Illustrator doc with it. Is there any way to have just the vectors I have revealed through each InDesign window come in? The InDesign Files contains multiple pages and each window contain only ones part of that illustrator file...but all the other pieces in the illustrator file stay outside that cropped area of the window when brought into Illustrator again...anyone know how to avoid this?
    thanks
    babs

    I just did a banner for a local plumbing contractor and used InDesign to
    create it. I placed a vector drawing on the banner and masked it off
    using a frame right to the edge of the banner.
    I exported a PDF but the printe came back asking for an Illustrator
    file. Fine, it's just one line of text anyway and the drawing so I open
    it in Illy and it looks fine. Resave and the guy comes back telling me
    that his RIP can't handle the masked image. All I can say is thank
    heavens for the eraser tool in Illustrator. It would have taken me
    forever to fix this with the pen tool.
    So, apparently there are reasons (I didn't see any point in grilling the
    guy about his workflow, it was a one-off and I'll likely never have to
    work with him again) to crop instead of mask. So it's either the eraser
    in Illy or rasterize the thing in Photoshop and crop it there.
    Bob

  • Hidden file when converting from raw to jpeg. How to delete this?

    I just found out that when converting raw into jpeg in Photoshop there is a hidden file enclosed starting with ._ Computers don't see them but televisions do. I discovered this because I want to show a batch of my images on a television with a usb of a sd card. It shows my images and after each normal image I get a black image with a questionmark. It says 'cannot read this file' and it shows the name of the image but with a ._ in front of it. For instance garden.jpg and then -_garden.jpg. Computers don't read images starting with ._ but televisions seem to do so. I want to delete these ._ images because I cannot show a slide show of my images on a television. Anyone can help? It seems that this hidden file is incorporated into the jpeg file.
    Thanks in advance!

    Thanks. I have thought of this solution but these files are not showing when I set it this way. I had a specialist helping me to find this problem and he was very surprised that these hidden files didn't show up in his special program for showing hidden information. Only when going deeper and deeper into this program these files showed on his computer. As they are incorporated into the original file (the jpeg version) you don't seem to be able to delete them. What do people do when they want to show (jpeg converted from raw)images on their tv?
    I have a Mac if that helps.

  • PDF Error while converting from SMARTFORM

    Hi ,
    While opening the PDF file in Outlook, I am getting the error 'An unrecognized token '0RG' was found and the data is not appended to PDF .
    Can anyone please tell me what may be the problem.
    Thanks in advance,
    Regards,
    Shankar

    Hi,
    Chk the below code to download to pdf and crosscheck with ur code.
    REPORT  zpdf_g.
    DATA: form_name TYPE rs38l_fnam,      " Used to get the function module of Smartform
          wa_ctrlop TYPE ssfctrlop,       " Smart Forms: Control structure
          wa_outopt TYPE ssfcompop,       " SAP Smart Forms: Smart Composer (transfer) options
          t_otfdata TYPE ssfcrescl.       " Smart Forms: Return value at end of form printing
    Data: t_pdf_tab type table of tline,  " SAPscript: Text Lines
          t_otf TYPE table of itcoo.      " OTF Structure
    Variables used to pass to GUI_DOWNLOAD
    DATA: w_filesize TYPE i,
          w_bin_filesize TYPE i.
    Variables used for Save Dialog Box
    DATA : file_name TYPE string,
           file_path TYPE string,
           full_path TYPE string.
    START-OF-SELECTION.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = 'ZPDF_G'      "p_name
        IMPORTING
          fm_name            = form_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.
      wa_ctrlop-getotf = 'X'.
      wa_ctrlop-no_dialog = 'X'.
      wa_outopt-tdnoprev = 'X'.
      CALL FUNCTION form_name
        EXPORTING
          control_parameters = wa_ctrlop
          output_options     = wa_outopt
          user_settings      = 'X'
        IMPORTING
          job_output_info    = t_otfdata
        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.
    END-OF-SELECTION.
      t_otf[] = t_otfdata-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
          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.
    ----TAKING THE DOWNLOAD FILE PATH AS USER INPUT*
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        CHANGING
          filename             = file_name
          path                 = file_path
          fullpath             = 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.
    Download the file to the selected path
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize            = w_bin_filesize
          filename                = full_path                   "fname1
          filetype                = 'BIN'
        IMPORTING
          filelength              = w_filesize
        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 i000(zpdf).      "File not downloaded
      ELSE.
        MESSAGE i001(zpdf).      "File downloaded
      ENDIF.

  • Black frames at the end of an exported file when converting from 60p to 24p

    I have another export issue that I can't figure out.
    I import footage I shot at 23.98fps (on a JVC HD100) using a Kona LH card at 59.94fps DVCPro HD, in which it has a 2:3 cadence. I need to make files that are actually 23.98p DVCProHD. Unfortunately, when I export in Final Cut from the 59.94 original, the new 23.98 file has all of the image, exported correctly, followed by a number of black frames such that the total number of frames in the exported file equals the number of frames in the original file. That is:
    If the original 59.94 file was 3s long, that is 60 * 3 = 180 frames. The exported 23.98 file also has 180 frames, but only 3s of image = 3 * 24 = 72 frames, followed by 180 - 72 = 108 frames = 4s 12frames of black.
    How can I prevent this from happening, and end up with an exported file that is (e.g.) just the 3s of image, and not 7.5s of which 4.5s are black?
    It's true that I can manually clip this black off, but I need to do many clips as a batch, and would really not have to change one clip at a time. It is also true that I can do a batch in compressor, and that this process does not suffer this problem -- that is, there is no extra black -- however, there is another problem: the original 59.94 DVCProHD files are actually 1280x720 with square pixels; the files exported from FCP via the KONA DVCProHD codec maintain this true HD proportion, but the ones exprted through compressor (which does not appear to support the KONA LH implementation of DVCProHD as an option) have the size 960x720 with anamorphic pixels, and I would rather keep the original size. Thus, I would rather export from fcp. If anyone has any insight into how I might resolve this....
    Thanks,
    Robert Schaller

    Thanks. If I understand you correctly, it does seem to export correctly if I paste the 59.94 clip into a 23.98 sequence (you can't nest sequences that have different time bases) and export from there, and it doesn't even have to specify square pixels, etc.: the AJA codec implementation seems to take care of that. There is no longer any extra black, so, per file, that gives the right result.
    That, however, is only one part of the problem, though a significant part. Next is, I really would like to do this as a batch process, as I tend to have many clips to do at one time. As soon as I try any kind of batch export, I end up with one of two problems:
    1) if I try to batch export from fcp, I'm back to having extra black frames, or
    2) if I try to batch export with compressor, I get 960x720 files.
    If anyone has any suggestions on how to get the right files in a batch, that would be the next step. Is fcp scriptable? And, if so, can you write a script that takes a clip, pastes it into a blank 23.98 DVCPro timeline, sets the correct in and out points (i.e, in at the beginning and out 1 before the end), exports it with a specified codec and time base, with a name based on the source clip, and then repeats that as needed?
    Thanks for any input --
    Robert Schaller

  • How to use .joboptions file while converting from Word to PDF

    Hi,
    I'm pretty new to Acrobat. I'm using Acrobat XI. I need to convert a word document to a PDF file which conforms to certain requirements described by a given .joboptions file. The .joboptions file can be opened by distiller, but as far as I know distiller is not invovled in the conversion (Word to PDF) process. So how can I make sure the converted PDF file meets the requirement described by the .joboptions file?

    Distiller is used when converting from Word to PDF, if you do it via the Acrobat panel, not the Adobe PDF printer or Word's internal Export to PDF command. If you've loaded your joboptions file in Distiller (via Settings - Add Adobe PDF Settings), then you will see it in the drop-down of Conversion Settings when you click the Preferences button in the Acrobat panel in Word.
    After you've selected your job options profile click the Create PDF button, and the file will be converted using the selected options.

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • When I attempt to open a PDF file I saved from a website, I get the message "There was an error opening this document. The file is damaged and could not be repaired." Is there any way to correct this problem?

    When I attempt to open a PDF file I saved from a website using Safari, I get the message "There was an error opening this document. The file is damaged and could not be repaired." When I save the same PDF file using FireFox it opens up immediately. Is there any way to correct this problem with Safari?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • How do i prevent people from copy paste or printing a pdf file when it is uploaded online

    i secured a pdf file through acrobat pro ix, with password thus preventing it from being printed and copy paste. But when i upload it to a website, people are able to print and copy paste... how do i prevent people from copy paste or printing a pdf file when it is uploaded online

    You can make sure that you use Adobe Reader as a PDF Viewer in the browser, although some browsers do not work with Adobe Reader.

Maybe you are looking for

  • When I connect to our server using smb:// can't copy files or edit names on server?

    When I connect to our server using smb:// can't copy files or edit names on server?

  • Auto forwarding option for a substitute

    Hi ,   Can somebody help me the workflow automatic forwarding option works with substitutes.   USER A is a substitute for for USER B and both users are setup for automatic forwarding   to external outlook e-mail address.   When a workitem sent to USE

  • Creating Name Badges with ID

    I can't figure out how to make name badges. I can get a whole page of each name, but I want one name per badge (Avery 8395). I realize there is a check box for multiple records per page. I downloaded an ID a template for my labels but that doesn't he

  • ResultSet - Can I use one for storing another RS?

    I'm wondering wheter or not I can create a ResultSet object (rs3) to store my Resultset rows from a query (rs1) while I'm checking the contents of it (rs1) compared to the contents of another Resultset (rs2)? Like this: I have two DB's that I'm query

  • KM Permissions based on MetaData

    Hello, I am wondering if there is any way to apply access permissions based on a metadata tag on a document. What I would like to do is see if there is a way to have a metadata property pre-defined which allows for a "level of access". For example, i