Can we control the PDF file name that is generated by BI Publisher based on the content in the input PDF

can we control the PDF file name that is generated by BI Publisher based on the content in the input PDF?

No, there isn't. The way you're using the file is not recommended. You
should use a review tracker to avoid getting in the way of one another.

Similar Messages

  • PDF file names changed in iBooks with iOS 8 upgrade

    I just downloaded iOS 8 on my iPad air. This has caused the file names of all of my PDFs in iBooks to revert to their original file name when I downloaded the file, not the custom file names I gave them after downloading the files. In the list of files it shows the original PDF name; however, in the banner above the open file it shows the custom name I gave it. How do I easily change the file names back to the custom file names that I renamed after the downloads?  Essentially I want to have the file name in the banner replace the file name in the list. I have thousands of files, so doing them one at a time is not practical.  Thanks for your help. 

    The strange thing is: the correct name is still available in the headline of the pdf file when opened. its only wrong in the overview...

  • Mail Notification with Custom Subject, Mail Body and PDF File Name

    I have successful configured the Action Profile to send SmartForm Mail as PDF. But i would like to modify the Subject, PDF File Name & add text to mail body when a mail is sent to the user.
    The Subject of the Mail is the same as the PDF file name. How to maintain a pre-defined file name for the PDF file.

    I was able to find a commercial product that works very well. MaxBulk Mailer from Max Programming allows you to import a list of recipients, merge with personalized message and designate an attachment (just image types and PDFs, not all types work) and send.

  • InfoPath 2013: How to find the current file name?

    Hello,
    Is there any way to find the file name in the rule formulas when an existing xml file in a sharepoint form library is being edited in InfoPath? I am looking for a function that returns the current file name that is being edited.
    Thank you,

    Hi,
    According to your post, my understanding is that you want to get the current file name in the InfoPath form.
    Here is a similar thread for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/a24f01d5-744c-4b75-b30d-3295311ab054/how-do-i-find-the-file-name-of-the-currently-open-infopath-form?forum=sharepointcustomizationlegacy
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Changing the .chm File Name

    I know this topic has been covered before in the forum, but I a little bit slow and haven't quite understood the answers.  I am trying to change the name of the .chm file which resides at the root of the C: drive, but outside of the project folder.
    Several of the solutions refer to changing the name in the window properties, except I don't know what you are referring to by Window.  Is it on a dialog box such as Project Properties or is it something I'm totally unaware of?
    Sorry for the redundancy of the topic.

    Are you referring to the CHM file created when you compile your project? If so, all you need to do is right click on the Microsoft HTML Help single source layout and select Properties. The top field in this dialog - Select Output Folder and File Name - is where you specify the path to the CHM file and the actual file name. Change this to the reference the required file name (e.g. C:\Source\myfile.chm) and click Save. The next time you create your project output the file name will be as you have supllied.
    Read the RoboColum(n) for mutterings on RoboHelp, Technical Communication Suite and technical communication.

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • How to update the HTML file so that we can Control our process in real time

    After installing following three steps as per the lookout 4 online help I am unable to Monitor and control the Process in HTML format, which was exported manually in lookout server.
    1) Creating a Web Client Page in Lookout
    2) Download a Lookout Web Client
    3) Setting Up Own Web Server
    My browser shows only the instance, which I have uploaded manually without any update
    Problem: How to automatically update/refresh the HTML file so that we can Monitor/Control our process in real time/bi-directional mode.

    Hi,
    It seems like your process is not updating. When you create a Web Client, it uses ActiveX which lets you control the Lookout process fully. Make sure that you run the process. You can do this by pressing CTRL+Spacebar which puts it in Run-mode. Perhaps then you may see your graphs, etc updating.
    Also, please refer to page 11-1 of the Users Manual linked below:
    http://www.ni.com/pdf/manuals/322390a.pdf
    What kind of Web Server are you using? Make sure all the settings in it are done properly. If you have LabVIEW, you can use the LabVIEW Web Server.
    Hope this information is helpful. Please let us know if you have any further questions.
    Regards,
    A Saha
    Applications Engineer
    National Instruments
    Anu Saha
    Academic Product Marketing Engineer
    National Instruments

  • Can anyone tell me how to send a PDF file so that it opens up in the body of the email itself? Thanks

    Can anyone tell me how to send a PDF file so that it opens up in the body of the email itself? Thanks

    That is a function of the recipient's e-mail software understanding what your software sent.  If it doesn't it will always show as an icon or attachment.   It is also a function of both your internet provider and their internet provider accepting messages of that size, and a function of their download attachment settings in their e-mail program.  There is no way to guarantee it will appear inline in the attachment.   The best you can do is attach with Windows Friendly format.  To do that, use the attach toolbar icon that looks like a paperclip, (View menu -> Customize toolbar if invisible) on Mac OS X Mail when composing the message.   A checkbox appears in the file dialog box's bottom to make it Windows friendly when you navigate to pick the PDF file.  That makes it as universally compatible as possible.  It still may not appear inline, but at least you are less likely to be incompatible.

  • Acrobat 5.0 How do I keep the original file name after I have converted a Word doc to PDF?

    MY colleague has a certain setting in Acrobat that allows him to keep the original file name when he converts documents from Word to PDF. Every time I convert Word, Acrobat overwrites the filename and names it "untitled.pdf". I would like to retain the original name and for Acrobat to simply add the .pdf file extension to the original name. How do I do this?

    I have no idea what you are doing for sure. Does your WORD document have a name. I opened a WORD document and selected the Acrobat Distiller printer for AA5, I got the file menu for selecting the name and it was automatically filled in with the DOC changed to PDF. If you are using PDF Maker, then you will need to search there - I removed PDF Maker for AA5 years ago and can't view that part. I see the same types of options in PDF Maker for AA8.1.2 as I saw in the printer for AA5 and guess it is the same. The untitled.pdf suggests that you never saved the original DOC file so it has a name.

  • I just downloaded iOS 8 on my iPad air. This has caused the file names of all of my PDFs in iBooks to revert to their original file name when I downloaded the file, not the custom file names I gave them after downloading the files. In the list of fil

    PDF file names changed with iOS 8

    Further to above
    Progress Notable!
    But before I outline the details, I wish to apologise to APPLE for laying the blame at their doorstep for loosing or misplacing those PDFs I have on the iPad 1, when I set up my iPad Air , by restoring from the backup of iPad 1, thus copying all data from the old to the new.
    NOT REALLY THEIR FAULT AT ALL
    Because a lot of the many PDFs had the same name, ie PDF.pdf, probably my fault more than anybody else's, so I can't blame APPLE for that. Just goes to show one should be a little more precise in creating these portable documents.
    No wonder the poor program " lost its' marbles" when doing the updating and conversion/transfer.
    However, I was able to recover most of them by personal email, and extracting and RENAMING the PDFs as I located them in their new home.
    Those PDFs that we're locked an thus not email-able , I will deal with by
    Viewing
    Photoeing (if that's how you spell it).
    And re-building the PDF from the photos, in unlocked format, after transferring these files either by Bluetooth or Wi-Fi, from the old to the new iPad.
    So all is not lost, and I am thankful that my cautious approach to this matter in the first place, gave me the ability for this successful recovery.
    That's my story and I'm sticking to it.
    I hope this little story of my saga/experience may prove helpful to others yet to cross the chasm of updating.
    Regards to all, including APPLE.
    NICE STUFF YOU MAKE.

  • Urgent, SOS for help: How to show the pdf file name at the right bottow of the page?

    I want to show the pdf file name at the right bottow of the page for filing purpose, anybody knows anything?
    I know it can be showed at the left bottom through adobe printer, but i need it to be at the right bottom.
    thanks.

    The result is a UIWebView that displays a blank page. No errors occur in the UIWebView delegate method. The thing is that data has the correct length, in bytes, for the PDF I am trying to display, and I also get the pdf file in Library/Application Support/iPhone Simulator/4.3.2/Applications/ Does anyone have an idea as to what might be going wrong here or how I can better debug this problem?

  • It can't find URL when i use HLS for vod and the vod file name contain Chinese.

    It can't find URL when i use HLS for vod and the vod file name contain Chinese。eg: http://127.0.0.1:8134/hls-vod/你好.mp4.m3u8.
    How does it support Chinese path?

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • Iomega UltraMax 4Q PLUS the following message appears: The operation can not be completed because the item "FILE NAME" is in use. "

    Help, I need to solve. No speculation please bomas or attempts to restart, confirm that the HD is formatted for MAC and etc. .....
    Whenever I try to copy my files from my HDD Western Digital 2T for my new Iomega UltraMax 4Q PLUS the following message appears: The operation can not be completed because the item "FILE NAME" is in use. "
    I can not stand it anymore ...
    I need to work and not temnho more space on my machine.
    Scenario - iMac11, 10.6.8 + WD + 2 + 2T 4T Iomega UltraMax Plus, formatted for both Mac and connected via Firewire 800
    Trying to copy the message aborts the copy - "The operation can not be completed because the item" FILE NAME "is in use."

    Hello,
    As I said earlier, properly formatted for Mac.
    Mac OS Extended (Journaled)
    This HD is formatted for MAC factory, but I even did a few times in my attempts I can say that this is entirely correct formattingwith it - Mac OS Extended (Journaled)

  • Problems copying iTunes folder to an external hard drive - "The operation can't be completed because the item FILE NAME is in use"

    Hi,
    I have been trying to back up my iTunes folder from my MacBook hard drive over to a new LaCie external hard drive.  However, whenever I try to do it at some point during the copying I keep getting the warning "The operation can’t be completed because the item FILE NAME is in use".  Each time I have tried it, it is always a different file name that comes up and at different points of the copying.  Following the warning, the copying stops and cannot be restarted.
    I tried copying the iTunes folder to another Lacie external hard drive that I have, and it worked fine so I am guessing that it maybe something wrong with the hard drive.
    I've been trying various approaches all day and can't seem to get anywhere with it - all very frustrating, so any help would be much appreciated!
    Thanks.

    If you don't have other backup data on it, reformatting external drive could solve the problem.

  • Is it possible to change the default PDF file name from 'LabVIEW Document.pdf'?

    My application uses the 'Automatically print front panel every time VI completes execution' functionality to print front panels.  When I have my printer set to 'Adobe PDF', a dialog pops up and the default file name is 'LabVIEW Document.pdf'.  Is there a way to programatically set the name to something other than 'LabVIEW Document.pdf'?
    I've already found a solution that manipulates the Windows registry, and I'm looking for another option.
    Brent

    Do a search, as this question has come up before. The solution centered on not using the Adobe PDF printer driver but one that is intelligent.

Maybe you are looking for

  • Design the New process set up for Materials in one physical stock plant

    Hi Experts, The requirement is one physical plant as two different logical plants in the system. The main issue is how to administrate or how to find the set up which allows one Physical warehouse in Hamburg which we have supplying two Logical wareho

  • Advance payment request

    Hi How can We check the advance amount with purchase order while creating the advance  paymnet request thry T. code F-47. Regards Avinash

  • IDVD doesn't open after iMovie renders

    We just finished rendering a movie in iMovie 11.  The tutorial said that iDVD would open automatically and it just sits there.  IDVD doesn't do a darned thing.  The project is due in 3 days, so if anyone has the inside scoop, please let me know.. Tha

  • Profit Center Actual Amount

    Hi experts Anyone knows which table and field for column actual in report S_ALR_87013326, Profit Center Report:Plan/Actual/Variance. Thanks in advance for any reply. Regards az

  • Apple TV randomly stops playing music after 20 seconds and goes to next tune

    I have the most updated OS on Apple TV, and recently it has started playing a track, after 20-30 seconds it abruptly stops and goes on to the next track.  Some tracks play in entirety, but then several in a row will be abruptly ended.  Any help to co