Book of attachment pdf with password

Hi all



I have a requirement, as then to provide a PDF via the ibot, it should be password protected. The end-user needs to open it with a password. any help will be appreciated.


Thank you.

Hello

It can be done with the BI Publisher (published reporting). IN the RTF to word builder model select Properties, and then in the custom tab, you have the possibility of a password hardcoded and a dynamic password which is fed to it by XML feed (report output)

Note: the editor of BI manual has the details for this.

-Karine

Tags: Business Intelligence

Similar Questions

  • How can save a PDF with password

    How can save a PDF with password

    Hi MacUser2,

    Trial is for 30 days.

    Once the trial is over you will be able to open PDF files by using the password that you have installed.

    Kind regards
    Nicos

  • Java Script to save as PDF with password...

    Hi people.  My goal is to have a script to perform the following functions:

    1. Enter the name of the active document

    2 Save as PDF using the active doc name with password lock in the same directory the *.ai file is located

    I started to play with the code, but I don't know what I'm doing... newbie.

    Here's the code that I currently use.

    var curDoc = app.activeDocument;
    var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
    //var destName = "~/Desktop/Testpassword1.pdf";
    var destName = targetFile
    saveFileToPDF(destName);
    //sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator files you want to convert to PDF', '~' );
    //saveFileToPDF(destName);
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if ( sourceFolder != null )
    {
        //files = new Array();
        //fileType = '*.ai';
        //fileType = prompt( 'Select type of Illustrator files to you want to process. Eg: *.ai', ' ' );
        
        // Get all files matching the pattern
        //files = sourceFolder.getFiles( fileType );
        
        if ( files.length > 0 )
        {
            // Get the destination to save the files
            destFolder = Folder.selectDialog( 'Select the folder where you want to save the converted PDF files.', '~' );
            for ( i = 0; i < files.length; i++ )
            {
                sourceDoc = app.open(files[i]); // returns the document object
                                        
                // Call function getNewName to get the name and file to save the pdf
                targetFile = getNewName();
                
                // Call function getPDFOptions get the PDFSaveOptions for the files
                //pdfSaveOpts = getPDFOptions( );
                
                // Save as pdf
                sourceDoc.saveAs( targetFile, pdfSaveOpts );
                
                sourceDoc.close();
            }
            alert( 'Saved' + destFolder );
        }
        else
        {
            alert( 'No matching files found' );
        }
    }
     ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     function getNewName()
    {
        var ext, docName, newName, saveInFile, docName;
        docName = sourceDoc.name;
        ext = '.pdf'; // new extension for pdf file
        newName = "";
            
        for ( var i = 0 ; docName[i] != "." ; i++ )
        {
            newName += docName[i];
        }
        newName += ext; // full pdf name of the file
        
        // Create a file object to save the pdf
        saveInFile = new File( destFolder + '/' + newName );
        
    
        return saveInFile;
    }
    ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    function saveFileToPDF (dest) {
    
    var doc = app.activeDocument;
    
    if ( app.documents.length > 0 ) {
    
    var saveName = new File ( dest );
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.optimization = true;
    saveOpts.preserveEditability = true;
    saveOpts.bleedOffsetRect = [2,2,2,2];
    saveOpts.trimMarks = true;
    //=======================  COMPRESSION ===========================
    saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.colorDownsampling = 300;
    saveOpts.colorDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.grayscaleDownsampling = 300;
    saveOpts.grayscaleDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
    saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.monochromeDownsampling = 1200;
    saveOpts.monochromeDownsamplingImageThreshold = 1800;
    //====================  END OF COMPRESSION =======================
    saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
    saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
    ///
    saveOpts = new PDFSaveOptions();
    saveOpts.requirePermissionPassword = true;
    saveOpts.permissionPassword = "pink";
    saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    doc.saveAs( saveName, saveOpts );
    }
    }
    

    It takes a lot of work.

    too many errors with the code list.

    It should be re written from scratch.

    This gives a bash.

    //---------------------------------------------------
    //          Save as LOCKED pdf
    //---------------------------------------------------
    //
    //          Qwertyfly
    //          03/07/2015
    //          Version 1.0
    //
    //---------------------------------------------------
    //
    //          Set your password here
    var pass = 'pink';
    //
    //---------------------------------------------------
    if ( app.documents.length > 0 ) {       //make sure we have a file open to work with
        var doc = app.activeDocument;
        if ( doc.fullName.toString().substr(doc.fullName.toString().lastIndexOf('.')) == ".ai" ){       //Make sure your working with an ai file
            var myFile = new File(doc.fullName.toString().substr(0,doc.fullName.toString().lastIndexOf('.')) + ".pdf");
            var saveOpts;
            setSaveOptions();
            saveFileToPDF(myFile);
        }else{alert("Active Document is not an '.ai' file")}
    }else{alert("No Document Open")}
    
    function saveFileToPDF(myFile){
        var originalInteractionLevel = userInteractionLevel;        //save the current user interaction level
        userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;      //Set user interaction level to suppress alerts
        doc.saveAs(myFile,saveOpts);        //Save File
        userInteractionLevel = originalInteractionLevel;        //Set user interaction level back to original settings
    }
    
    function setSaveOptions(){
        //  Setup Save Options
        saveOpts = new PDFSaveOptions();
        saveOpts.compatibility = PDFCompatibility.ACROBAT5;
        saveOpts.generateThumbnails = true;
        saveOpts.optimization = true;
        saveOpts.preserveEditability = true;
        saveOpts.bleedOffsetRect = [2,2,2,2];
        saveOpts.trimMarks = true;
        //=======================  COMPRESSION ===========================
        saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.colorDownsampling = 300;
        saveOpts.colorDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.grayscaleDownsampling = 300;
        saveOpts.grayscaleDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
        saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.monochromeDownsampling = 1200;
        saveOpts.monochromeDownsamplingImageThreshold = 1800;
        //====================  END OF COMPRESSION =======================
        saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
        saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
        ///
        saveOpts.requirePermissionPassword = true;
        saveOpts.permissionPassword = pass;
        saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    }
    
  • Scripting 'Save PSD to PDF with password security' and 'Open a PDF file with password security' issue.

    Hello!

    I am now building an extension for Photoshop. The script (jsx) should save the document as Photoshop PDF secured with a password. The IPL is the same all the time and is defined in the script. Then, the script is to open the PDF file with that same password. I need this to protect the PDF of the opening by a user, so that only the script has access to the file.

    I googled a lot. I saw a similar topic on this community date in 2012. He did not respond. With one comment saying that savings with a password appears to be possible via GUI and not a script.

    Nothing has changed since 2012?

    P.S. .requireDocumentPassword and Illustrator .documentPassword do not work in PS and ScriptListener gives still nothing :-/

    ScriptListener always gives nothing

    Which probably means the task is not (yet) possible to achieve with Photoshop scripts.

    The Photoshop DOM and I seem to have weaknesses or omissions that I consider more relevant, but if you consider the matter as essential you can post a feature request to

    Community customer Photoshop family

  • Editing of PDF with password

    I have a PDF form with 3 different sections to be completed by 3 different people (1 person fills their section, it automatically sends to anyone, etc. 2) I don't want these people to change/complete the forms in their own section, is it possible? Better protection of password for each individual article?

    It is not possible. There is no way to provide different security for different parts of a PDF form.

    Once a PDF file is opened, everyone who has access has the same privileges.

  • Emails with attachment downloading with a symbol of firefox. How can I change to display a PDF instead? I use windows mail on a Vista system.

    Emails with attachment downloading with a symbol of firefox. How can I change to display a PDF instead? I use windows mail on a Vista system.

    Shrinivas Kulkarni

    Right click on the downloaded file, choose "Open with" and choose the program proper.  She'll use the icon of the program you select.

  • How can I export my book in Adobe PDF format without it abandoned with a message "printing error"?

    I use Adobe InDesign CC 2015 on Windows 7 and a book with several chapters, each chapter being a separate document. Several attempts to export the book to Adobe PDF failed with the following statement:

    "Printing error: Adobe Print Engine failed at the end of your data due to an unknown problem."

    When I run the command 'Package book for print', it shows that there are some fonts and missing images. However, as far as I know, I replaced all the missing fonts and I'm unable to see all missing fonts or images on the computer screen. Person documents in the book export to Adobe PDF with no problems, but the book does not print as a whole, affecting the table of contents and the page numbering (e.g. Roman in the front-end vs Hindu-Arabic in the rest of the book). I'm frustrated because InDesign doesn't tell me what the problem is. I'd appreciate any help in this regard.

    No, I wasn't trying to PRINT to PDF. I tried to export the book in PDF format in following file > export... and then click on PDF for output. That did not work. However, I just realized that I can export the book by clicking on the small arrow in the upper right corner of the menu that shows all the documents in my book (I don't know how it's called). From there on, I chose "export book to PDF...". "and voila! It worked.

  • I need to send an email when the recipient opens the PDF with a password, can someone help me and show me how to do

    Hello, I am trying to send an email when the recipient opens the PDF with a password, can someone show me how to do

    Hi Line,

    Password protect a PDF file, you must use Acrobat. If you do not have Acrobat, you can try it free for 30 days. See www.adobe.com/products/acrobat.html for more information.

    In Acrobat, choose file > properties when the document is open, and then click the Security tab allows you to set up a password.

    Please let us know how it goes.

    Best,

    Sara

  • Tried to open a PDF with Acrobat Pro Trial XI and sign popped up, I entered my username and password, but he doesn't answer his similar gray with the four points of rotation for ever. Any solution please?

    Tried to open a PDF with Acrobat Pro Trial XI and sign popped up, I entered my username and password, but he doesn't answer his similar gray with the four points of rotation for ever. Any solution please?

    Hi higi97,

    How are you connected to the internet? You're behind a corporate firewall particularly safe? You're on Mac or Windows? You have an anti-malware software running on your computer which can prevent applications other than your browser to connect to internet?

    You can try the steps below:

    1. close the application of creative cloud.

    2. navigate to the OOBE folder.

    Windows: [system drive]: \Users\ [user name] \AppData\Local\Adobe\OOBE

    Mac OS: /Users/ [user name] / folder/Library/Application Support / Adobe / OOBE

    3. delete the opm.db file.

    4. launch creative cloud.

    Let us know if this helps,

    Kind regards

    Rave

  • How can I create a PDF with watermark password protected?

    I need to put a watermark on a pdf file and have password protected it.  I use Adobe Acrobat X Pro. You have any advice?

    1. Tools-> Pages-> watermark

    2 tools-> Protection-> encrypt-> encrypt with password.

    3. record under (or unless it's OK to overwrite the original PDF).

  • Is there a good way to automate changing existing links to external PDF to be attachments in PDF with the same names?

    Greetings!

    Can someone tell me a good way to automate changing hyperlinks existing PDF 'main' to an external PDF rather do links to attachments PDF for the main PDF (the PDF attached to have the same filenames as the external PDF files)?

    The current link to main PDF format:
    Navigate to a page in another document
    File: C:\\path\filename.pdf
    Name of the destination: P:1

    When the link is manually changed to link to a PDF file that was attached to the main PDF:

    Navigate to a page in another document
    : PDF attachment
    Page: 1
    Zoom level: page Fit

    The new PDF link does not list the name of the attachment PDF file in the link.

    The file main PDF (the one that has the connection I would change automatically) is generated with hyperlinks to other documents PDF from Adobe FrameMaker 11.  In FrameMaker11, we have added text marker special "openpage filename.pdf:1' which is 'automatically' has been changed to hyperlinks to PDF files external when the main PDF file is created (postscript file is processed) Adobe Acrobat Pro 11.

    My first choice is to be able to change the format of the text in the file source Adobe FrameMaker special marker, but I found no way to specify a link for a PDF attachment with a certain file name.

    However, I also very much the ability to run a command on a main PDF file to change the links there.

    Has anyone tried using only Adobe ExtendScript ToolKit CS6? In other words, a script that could automatically change the hyperlinks in a PDF document to a link to attachments in PDF instead of external PDF files, or to modify the links not transformed, while they are still in Postscript file format format, or change the text in FrameMaker marker instead of creating a link to a PDF file in the same directory as the main processing PDF to create a link to a PDF attachment files?

    Thank you
    Judith Wallace
    [email protected]

    FrameMaker hyperlink feature has no ability to "connect" with an attachment on/in a PDF target.

    PDFs from FM may have named destinations listed FM files created as a link of file01.fm to the named destination specified in file01.fm will be functional in the PDF files created from the files of FM.

    Then, of course, it is the possible dynamics by use o FM books. But it is the grist mills in the FM 2 user forum.

    RE: Script - PDF scripting is via Acrobat JavaScript. It is something yet and by Adobe, even though it may migrate to a Standard ISO (or be wound in a future standard ISO 32000).

    Then, to the point - look at Acrobat JavaScript for the script.

    Be well...

  • Connect the keyboard Apple for Windows 10 Bootcamp with password

    To connect the keyboard Apple Windows 10 Bootcamp with password, you must type a password or code. The keyboard does not work when you type. Have reinstalled and all update with bootcamp utilities. What should I do to fix this?

    If the keyboard is attached on the side OSX, you can turn off pairing it or a wired keyboard to enter the code to complete pairing, if they are available.

  • Sleek power book 6 HP ENVY on password

    Hello recently I have my HP ENVY 6a elegant book asked me the administrator password or power on password. I don't know how it happened. Can help you with this question?

    Hello

    The password screen, press enter 3 times and you will receive a 'code to stop' - that enter the site below.

    https://BIOS-PW.org/

    Kind regards

    DP - K

  • I can longer open attached pdf files. I am able to preview the files, but they are too small for me to read.

    * Original title: attachments

    Help, please.

    I did something wrong (AGAIN!)

    I had no problem with access to attachments to my e-mails, but a problem occurred just.

    I can longer open attached pdf files.  I am able to preview the files, but they are too small for me to read.  When I click to open all the I get now is a kind of icon (in Microsoft Office Picture Manager) with which I can't do anything.

    It seems I should have arranged for Picture Manager automatically opens attachments to emails, but when this happens, I'm stuck as what I try, I can't do pdf files appear as they did.

    The help file does not really help.

    I hope it is something simple, even an old fool like me can do with your expert (and, I hope. friendly) help.

    My fingers are crossed.

    My apologies if I offended Protocol - this is my first venture.regards

    Octogenarian John

    PS My usual guru (aka grandson James) has acquired his first girlfriend, is not so disinclined to waste time me tutoring on the PC

    Create a file association.

    1. download and save the attachment to the office.
    2. right click on the saved file.
    3. Select: Open with on the shortcut menu.
    4. click on: choose [default] program.
    5. Select: (Whatever you have installed a PDF reader).
    6. check: always use the selected program to open this type of file.
    7. click on OK.

    This should allow you to open these attachments directly from email address now.

  • Help! Try to encrypt with password

    I tried following this, " Security with passwords, Adobe Acrobat PDF files ," but I don't have in my section of the tool 'protect' area. I worked on it for 3 hours now going well all the menus and I cannot find how to lock the document. I don't want the person receiving the document in order to modify or copy. Does anyone know a way?

    There are many products Adobe PDF, and they are very different from each other. It is therefore important to check what you have before you try to follow the instructions. The link you posted has upward:

    «This document provides instructions for Acrobat DC.» If you are using Acrobat Reader DC, see what I can do with Adobe Reader. If you use Acrobat XI, see XI helps Acrobat. "And, if you use Acrobat 8, 9 or 10, see previous versions of Acrobat help."

    The short answer is, you can't do this with player or whatever it is free from Adobe.

Maybe you are looking for

  • El Capitan, losing the permissions sharing between restarts

    I'm having a problem that when I reboot the my 2010 Mac Pro and return as my user log 3 checkboxes under the Panel shares in the preferences system had become uncontrolled, I chose.  They are: screen sharing, file sharing and remote access connection

  • Satellite L450-136 model video transfer from camcorder to laptop

    HelloI recently bought your laptop model Toshiba Satellite L450-136. I want to transfer video from my SONY camcorder to the laptop.The SONY camcorder has a slot 4 pins. In this model laptop I think their isn't any location of 4 pins.Can you please ad

  • suggestion of cluster merging

    Hi all! I'm developing a system where I need to pass data through the different libraries and processes. To do this, I created a giant group of data that will be used throughout the entire system, called SystemData. So far, everything is simple. My p

  • Cannot use Windows Update to upgrade to Vista SP2 Bits does not appear

    Windows Update error 80246008 It is said to start the BITS in the Services Application. BITS does not appear here. I ran FixIt tool for Windows Update? http://support.Microsoft.com/default.aspx/KB/971058It does not find anything wrong I ran sfc/scann

  • heard of "Virtual PC Doctor?"

    Has anyone heard of the "virtual pc doctor"?  A friend asked me to focus on this.  She received an unsolicited call from someone who claims to come from a company of which the name is saying that there were a lot of computer problems in its region an