PDF copy restriction

I would like to make a function that makes it possible to open a PDF file on no more than two computers.
So if anyone try to open in a third computer it shall not be possible.
Is it possible?

You can control the use of a document with the following software:
http://www.adobe.com/products/livecycle/rightsmanagement/

Similar Messages

  • How to generate PDF copy of invoice list

    Hi All,
    I need a favor from you in helping to generate a PDF copy to invoice list .
    I observed that  spool is not generated for this print output of invoice list but output successfully triggered.
    we have z report (zretrieval ) to generated the PDF  but it's not allowed to generate PDF.
    I tried alternative method by saving the print preview but I can able to save only that particular page.
    our business looking for all invoice list pages in single pdf  so please guide me to proceed further.
    Regards
    Srinivasa Reddy

    I presume your issue is output triggered but PDF file is not generating if the invoice list goes for multiple pages.  If this is correct, then you need to talk to your ABAPer as they only, have to check the  smartform being used for invoice list.
    G. Lakshmipathi

  • PDF copy to clipboard is broken in Mavericks 10.9.5

    PDF copy is broken in Mavericks 10.9.5 on my MacBook Pro 17 (mid 2009). I cannot screen capture to the clipboard (ctrl-shift-cmnd-4) or between applications when the copy format is PDF. I can, however, save as a pdf file during screen capture (shoft-cmnd-4). Other formats (pict, jpeg etc) work fine. Only pdf is broken. The error shows up as an empty clipboard and as Preview being unable to create a new file from the clipboard. Have reinstalled OSX 10.9.5 (combo update). Have created a new user and logged in as the new user (no menu bar extensions,  etc) and the problem persists. Have booted up in safe mode and the problem persists.
    Is this a combination of an old MacBook Pro (17 inch, mid 2009) and Mavericks or have others experienced this problem with different configurations?
    Message was edited by: acarruthers

    Please report to Apple Feedback. This is not a forum for reporting bugs.

  • Copy restricted key figures

    hi,
    how can i copy restricted key figure?
    thanx

    Hello Elif,
    it's not possible because it requires a tecnical name to a restricted or a calculated keyfigure which are cube level. This technical name should be given by you.
    Sarhan.

  • Query designer: copy restricted kf

    Hello gurus.
    I have created a restricted kf on query designer, and now i wanted to copy this kf, modify it and save as a new one. I try to do this, but query designer does not have save as option.
    Could anyone help me on this?
    Thanks in advance,
    Vitor

    try transaction RSZC
    in that it will let u copy restricted keyfigure, calculated keyfigure etc.
    log in to bw system
    enter RSZC
    enter source and target
    choose option restricted key figure
    hit okey
    make ur selection on ur way ahead...
    assign points if this helps even a little bit
    Edited by: kartikey on Jan 10, 2008 11:22 AM

  • SUS PO PDF copy problem

    Hello Everyone,
    We are using SRM 5.0 with ECS.
    vendor gets PO's in SUS, and can see the changes made to a PO on the screens. But when they use the Print or Download buttons to see the PDF copy of the PO, it shows them an old version of the PO, without recent changes to text, items, etc.
    So is there any OSS note related to this problem?
    What should i check to resolve this issue?
    Regards,
    Khushbu.

    Hi Khusbhu ,
    At present how is the PDF copy generated in your org...Is it standard SAP or any Z development is involved...
    Please check whether the changes after approval are reflected in backend , if yes then they will be reflected in PO PDF else not.
    As far as i know the RFC is called to backend to genertae and display PDF.
    Regards
    Ramesh Ch

  • How so you save a pdf copy of an online form?

    Is it possible for someone who is filling out an online form to save it as a PDF?
    Thanks!

    Hi erinmacleod,
    It is not possible to save a PDF copy of the online form i.e. if we distribute it as a Web form.

  • Adobe Update creates Adobe PDF (Copy 1) printer?

    Hi,
    I hope someone can help - I installed CS5.5 earlier this month. Everything was working fine.
    I recently accepted a prompt to install the latest update. It installed successfully but suddenly I had two PDF printers - a new printer named "Adobe PDF (Copy 1)" was installed.
    I had various setting already set in my normal Adobe PDF printer so I tried to delete "Adobe PDF (Copy1)" and that when everything went wrong. It would not let me delete it and then I could not use any of my Adobe PDF printers (I usually print to them from InDesign).
    I ended up having to clean my entire system of any adobe products and re-install. (on advice from Adobe)
    Well the exact same thing happened again - I accepted another update and again a "Adobe PDF (Copy 1)" appeared. I am too worried that I will have to re-install the enture suite again so I am leaving this one where it is.
    Has anyone else got this problem? Or know what the cause/solution is?
    Thanks

    Thanks for your response but in the thread you recommended : http://forums.adobe.com/thread/791587 the only successful repairs have been done to Windows XP. I am running Windows 7 Ultimate 64 Bit and there still seem to be users having problems with that.
    I am going to wait until someone with the same configuration fixes their problem (perhaps you have?) before I try this as I cannot afford to have my PDF creation down at the moment.

  • Can I publish for no charge on Ibooks, and also create a pdf copy

    I plan to publish a short book on a travel experience on Ibooks for no charge. Can I also  create and distribute a PDF copy to friends without access to ibooks?

    Yes and yes.
    See iBooks Author: Publishing and distribution FAQ - Support

  • .PDF document save/print/copy restriction

    We are developing a health care based Application using ASP.NET technology.
    Our requirement is to allow or restrict  all the way for - 'Saving/Printing/copying'  a .pdf document through our Application based on given permission to logged in user. The solution shall be compatible with
    IE
    Mozila
    Safari
    Chrome Browsers
    Windows OS
    MAC OS
    and IPad..

    You may limit printing with Acrobat security. Some software respects this.
    Similarly you may limit copy/paste.
    To prevent saving and copying PDF files is absolutely impossible.
    You almost certainly need to look at a DRM solution (so that unauthorized copies are useless). Whether you can find one compatible with iPad is likely to be the biggest challenge, since DRM plug-ins cannot be written for iPad.

  • [JS] [CS3] Saving to PDF with restricted printing "PRINT128LOWRESOLUTION"

    Hi All,
    This is my first JavaScript. Trying to create a script which will save the active illustrator document to PDF with the following:
    a) sets permission password
    b) restricts printing to "Low resolution" only.
    I was able to get the script to do everything, except restricting printing to "Low resolution". Though i have set it to low resolution (PDFPrintAllowedEnum.PRINT128LOWRESOLUTION), it seems, illustrator ignores this statement, and set it to "high resolution" (PRINT128HIGHRESOLUTION).
    See my code below:
    var curDoc = app.activeDocument;
    var destName = "~/Desktop/Testpassword1.pdf";
    saveFileToPDF(destName);
    function saveFileToPDF (dest) {
    var doc = app.activeDocument;
    if ( app.documents.length > 0 ) {
    var saveName = new File ( dest );
    saveOpts = new PDFSaveOptions();
    saveOpts.requirePermissionPassword = true;
    saveOpts.permissionPassword = "test1";
    saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    doc.saveAs( saveName, saveOpts );
    Any advise will be much appreciated.
    JaiSanM

    Hi
    I see the same thing with Reader, seems they've chosen to restrict it in that fashion.
    Preview works ok, but sure, doesn't open some pdf's.

  • Open a PDF with restricted tools

    I heard that there is a lot what can be done with a PDF via scripting (restrictions in the PDF itself, not an extra viewer application) .
    What we should like to do in the PDF itself:
    - Use Local Fonts (disabled and not possible to enable)
    - Formfields allowed
    - Digital signatures allowed
    - Only the following commenting tools allowed
    - Rectangle Tool
    - Line Tool
    - Overprint option (enabled and not possible to disable)
    - Print menu Advanced
    - Enable "Simulate overprinting" and not possible to disable
    - Printer profile "Same as source (no color management)" and not possible to disable.
    - PDF should be compatible with Acrobat 5, 6, 7 and 8 (also for Acrobat Reader)
    If this all is possible how can we add the script in the PDF ?

    I´m looking for some of this, too. E.g. I want to have a button
    in a PDF that toggles the "Overprint" option, I want to read out settings of "Use Local Fonts" and set it ---
    Setting Overprint works with a
    app.execMenuItem("Overprint");
    in Acrobat 7 -- however in Acorbat 8 it fails due to security restrictions ?
    Is there a way around this? (trustedFunctions only work on initializing the applications, batch and... )
    Regards
    Werner Frank

  • How to copy restricted key figures in query designer ?

    hi,
    i have created a query in query designer (BI 7.0).
    How can i copy existing restricted key figures ? i can't find anything. i always have to create a new one, and then i have to do all the things like 'details of selection' etc.... manually. that CANNOT be, there MUST be a way to copy those key figures.
    any ideas ?
    best regards, Martin

    Hi Martin,
    Restricted key figures can be stored on the infoprovider basis . For which right click on the key figure (left hand side pane ), Select the necessary key figure and assign the restriction through characteristics combination, and give it a restriction and save it . Next tiem when you create query on the same info provider it should appear in the left hand side as readymade reusable piece .
    Hope that helps.
    Regards
    Mr Kapadia

  • PDF Document Restriction

    I want to be able to ensure that only one person at a time can open a PDF or gives you a warning when the document is already open - much like MS Office documents do when you try to open a document someone else has opened.
    At the moment - the only way to know someone else has the document open is when you go to save the document and you get a message saying it is already open would you like to save it as another document name.
    Any ideas/suggestions? This is causing me a bit of grief as I have to combine, by copying and pasting changes/comments from multiple documents into one document.
    Thanks!

    Uhg! Major source of big time corrupttion.
    The reason Offie Application (Mac or PC) lock a file so only one person can working  a file at time is to prevent serious file corruption.  what were the braniacs at adobe thinking of?

  • HTTP Submit to SMTP Server (to send completed PDF copy) - possible?

    I've read various blogs re: HTTP Submit and the requirements of a web service, servlet, jsp, etc. I was wondering if was possible to setup an HTTP submit button to point to a mail server to send a copy of a completed form to a specific email address? So basically, making use of the SMTP protocol.
    Instead of relying on the form user's email client (or internet email service) to send the email containing the completed PDF form, the HTTP submit button will point to a SMTP URL (of some sorts) that has been set up with the recipient’s credentials. The SMTP server would just relay the file to a designated email address of the recipient’s choosing. Not sure if SMTP’s severs will allow this due to the potential of sending SPAM from their server.
    I know all of this is possible via making the form Reader Enabled and setting up a regular email submit button, but the problem is the user must use an email client, or log into their internet email account in order to submit the form. Was just wondering if there was simple workaround? Also, the problem with using POST is that only the data is posted, which means additional steps of re-combing it with a form copy is required.
    So, is the SMTP “concept” even possible? Or, is this only possible via web service, response objects, etc.?
    Thanks in advance.
    Shaun

    Carmine,
    to use SSL, you will need to first create/purchase an SSL certificate. This can be done in Server Admin -> "servername" -> Settings -> Certificates.
    Next, simply set SMTP and/or IMAP to use SSL in Server Admin -> Mail -> Settings -> Advanced -> Security.
    HTH,
    Alex
    P.S. Buon Natale a Te.

Maybe you are looking for

  • Urgent help in BAPI_GOODSMVT_CREATE

    REPORT ztest. DATA: gmove_header LIKE bapi2017_gm_head_01, gmove_code LIKE bapi2017_gm_code. DATA: BEGIN OF gmove_line OCCURS 0. INCLUDE STRUCTURE bapi2017_gm_item_create. DATA: END OF gmove_line. DATA: headret LIKE bapi2017_gm_head_ret, matdoc TYPE

  • How to get successful delivery of mail.

    I use to log all outgoing mails in a table and this code executes after successfull execution of Transport.send(). Some time some of my customers complain that they are not receiving mails while we have logs in our table. Is there any way to get it c

  • Updating a specific file into a .jar file

    Hi, I have got a .jar file, if I want to update the specific file org/abc/try.class, with a new try.class, what command should I use? thanks a lot.

  • HT4993 my i phone locked up connected to i tunes my screen is frozen on an i tunes logo with a usb cable under it

    My phone is frozen after being connect to i tunes via my desktop  all my screen has now is aN i tunes logo with a usb cable underneath it. restarting my phone doesnt help nor does holding power and home keys at same time. anyone able to help ?

  • Making names used to create comments anonymous

    Is there any way to make user names in comments anonymous? We receive several hundred PDFs of academic/medical/science research each year, many of which have previously applied comments embedded. We are looking for a quick way of changing the user na