Combined files automatically re-organized by Bates number?

I have a folder containing 1,373 PDF files, comprising what I think is approximately 7,400 pages. Each page was Bates stamped by a legal support company, but when they sent the CD containing said folder, all 1,373 files were organized by the file name, and not sequentially by Bates number.
Rather than opening 1,373 files and performing 1,373 searches for keywords that may identify privileged information, it would be much more efficient to have all the documents in several large files and only perform a few searches.
To get to my problem: When I combined the files, it seems that Adobe Acrobat X Pro automatically organized the files sequentially by Bates number. In order to be confident that we do not need to perform 1,373 searches using the separate files, we need to confirm that the Bates numbering from the combined files matches up with the number of pages. My question is, is it possible that Adobe automatically re-organized the files sequentially by Bates number?
Thank you for your help.

If you've already got the script to make the subdirectories then its not a huge step to add the code to move the files:
tell application "Finder"
  repeat with this_number from 65 to 90
    set this_letter to ASCII character this_number
    set new_folder to make folder at window 1 with properties {name: this_letter}
    move (every file of target of window 1 whose name begins with this_letter) to new_folder
  end repeat
end tell

Similar Messages

  • When bates numbering a .pdf in XI, how can I change the file name to include the bates number AND its name?  I know under file output, there is an option for either/or.  I want both.  Thank you.

    when bates numbering a .pdf in XI, how can I change the file name to include the bates number and the file name?  I know under "file output: it's either/or.  I need both.  Thanks!

    Long ago I wrote a little demo using the touch command. Check out the following thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=25128#M25128
    LabVIEW Champion . Do more with less code and in less time .

  • Problems with replace file name with starting and ending Bates number

    When applying Bates numbers to a set of Acrobat pdf files I am unable to replace file names with the starting and ending Bates number. This is important
    for me in a legal application.
    The Bates numbers are applied to each page of each of file without any problem as required.
    The Bates log file indicates that the files have been renamed as I wanted.
    I am running Adobe Acrobat Professional 9 with the update to 9.1.9 and Windows XP Service Pack 3 (the last or current service pack)
    In all other respects Adobe Acrobat 9 is running to my satisfaction.
    Has anyone else had this problem and found a solution?
    HRKExon

    Thanks for asking the question, I hadn't heard of Bates numbers before and this gave me a chance to look up something new.
    When I googled for ' bates number legal index ' I found this document:
    http://www.adobe.com/devnet/acrobat/pdfs/batesnumbering9.pdf
    Maybe that will help.
    Scott Bonacker CPA
    Springfield, MO

  • Unable to Bates number some documents. Using Adobe Acrobat 8.3.

    I have Adobe Acrobat 8.3 and having been fighting with it to Bates numbering some documents which must be attached to an EMAIL tomorrow. I follow the instructions but after I finish I print one page in the set and NEVER has the BATES number. It did seem t require I put in a date besides the page number. I ONLY want a page number in each consecutive page of the document -- which I will combine into one document. One problem I had was a docuemnt I scanned to PDF said it oculd note Bates number it because it was protected. (I had deleted two pages which were blank.) I then printed the docuemtn without those two pages and scanned it and saved it & think that made it so it was NOT protected.
    MAIN ISSUE-- cannot get the Bates numbering in the docmument as shown by unable to print a page that has the Bate number. H E L P

    Hello,
    For 1st issue please follow the steps in given article:
    Missing or Garbled Text Printing from IE9 to Adobe PDF Printer
    For 2nd issue:
    You can create a signature appearance:
    For example, you can include your scanned signature.
    1  (Optional) Save the desired image on a page by itself, and convert the page to PDF.
    2  Choose Edit > Preferences (Windows) or Acrobat (Mac OS) > Preferences, and select Security.
    3  Click New, and type a title.
    4  (Optional) Select Imported Graphic, click File, and select the desired file.
    5  Specify options as desired.
    Regards,
    Anoop

  • Using Acrobat 8 Standard, XI reader got auto-loaded now can't combine files

    I was using Acrobat 8 Standard for a while (mainly to combine files).  Recently, my Microsoft updates automatically loaded Acrobat Reader XI and now I can't combine files anymore.  Is upgrading to Acrobat XI Standard a free download?  If not, do I just need to uninstall Acrobat XI reader?  Help would be appreciated as I use the combine files feature frequently.  Thank you.

    I really don't get the feeling that it was Adobe Reader which broke the functionality. But if you think it was, you can uninstall it and see if that works. I would rather suggest repairing Acrobat 8 from Control Panel.
    If you already have the serial number of Acrobat 8 std, you can upgrade to Acrobat XI standard by paying the upgrade cost which is just $139. Acrobat XI is more robust and efficient. It also comes with many new features. To get more details please visit www.adobe.com/products/acrobatstandard.html

  • Automation plugin as action and via File/Automate

    Hi,
    I have an Automation plugin that is scriptable (it has a number of exposed scriptable parameters and can be recorded and run from Actions palette). The plugin displayes the UI when it is called interactively (from File/Automate).
    I am however having troubles distinguishing when it is called from an Action palette as a playback of recorded action and when it actually was called interactively from File/Automate (testing it in Photoshop CS6). On plugin invocation I check passed action descriptor and if not empty, read parameters from it and don't show the UI. On the call end, I write script parameters back to a descriptor to be able to use them in recorded action. With this in mind, after PS start first time selecting File/Automate works as expected - no descriptor/parameters passed into the plugin. But after a first call, Photoshop seems to keep the descriptor/parameters written at the end of the plugin and passes it on subsequent user invoked File/Automate. The same happens if plugin is getting called from a recorded action playback (and its expected). Basically after a first invocaction, the plugin will always receive action descriptor whether it called from an action playback or invoked by user.
    I need to distinguish these two cases and basically present UI/start from scratch when user invokes it and use the passed action parameters when action plays it. I have not found anything in SDK to point me to the solution so I'd appreciate the help.
    In filter plugins I can at least get selector start when invoked from UI and use that to free/ignore the action descriptor data.

    I don't think you should care. The option you do care about is this one:
    PIDialogPlayOptions playInfo
    That is part of  PIActionParameters *actionParameters
    That is part of your PSActionsPlugInMessage that comes into your automation plugin entrypoint.
    This parameter has three options:
    a) always display the dialog,
    b) only display the dialog if you don't like the parameters you are given,
    c) never display a dialog (either return an error or proceed with best options but don't stop with a dialog)
    From the file menu, user selected, you should get option a (always). From the actions panel you should get option a or b. From scripting you can get all three options.
    There is also a property in PIProperties.h called propPlayInProgress but the above information should be what you need to do the correct thing with dialogs.

  • Possibility to execute Acrobat Pro's "Combine files into PDF" function from within SAP?

    Good day.
    Presently, a company uses Acrobat Pro to manually combine files such as *.pdf, *.jpg, *.doc, which have been downloaded from SAP's Document Management System, into one pdf file. I would like to know if it is possible to automatically execute Acrobat Pro's "Combine files into PDF" function from within SAP (ECC 6.0) application system. I'm wondering if this could be achieved from a program via OLE (Object Linking and Embedding) or RFC (remote function call).
    Thanks in advance for your thoughts and inputs.

    Yes, you can combine PDF files via IAC/COM methods.

  • Combine Files incorrectly rearranges order of files

    Acrobat 9 incorrectly rearranges the order of the files in the Combine Files function when selecting multiple files to move.  For example, I have 40 files that I am combining into one.  Since the files are named 1-40, files 2-9 will not be in order.  If I highlight files 5-9 and drag them up to the spot they belong to put them in order some of the other files that were previously in order now are in random order.  The order might now be 31, 35, 32, 33, 37, etc.  This happens when selecting multiple files and dragging them up or down in the Combine Files window.  Anyone else seen this problem?

    Yeah, I'm aware that renaming files 1-9 to 01-09 will put them in order from the beginning but this doesn't change the fact that if I wanted to move several files that were named something other than by number (ie. TDY report, sales report, etc.) and I selected several to move let's say inbetween files 21-22 several other files that were previously in order now become out of order for no apparent reason.

  • Open PDF not auto included when combining files in Acrobat X

    If I have a PDF open in Acrobat X and I click Create -> Combine files into a single PDF, the PDF that is open is not automatically included in the list of files to combine in the Combine Files window. I need to click the Add Files drop-down and then click Add Open Files to include it. Does anyone know if there is a way to turn this functionality on by default? It was the default action in previous versions of Acrobat if I remember correctly.
    Thanks!
    Dennis

    Thanks Dave. I wish there was a setting for this, as 99% of the time, I need the file that is open to be included in the combine. But the majority wins

  • Batch processing - How to Bates Number?

    I have an adobe file that is apparently created from a batch sequence.  The file contains several hundred emails and some of the emails have attachments.  Is it possible to create a new file with all of the emails and their attachements opened so that I can bates number each page?  If so, where can I find instructions?

    Binding can be configured using the "eclipselink.jdbc.bind-parameters" property, and is on by default - it should be on for jdbc batch writing.
    Batch writing defaults to 100 statements, so I am not sure why it would include all statements in one batch unless it is not batching at all. If you set the logs to finest or all it should print of the values it is using for each property, and also show the SQL and statments it is executing. Can you turn on logging and post portions of the logs, particularly the part showing the transaction in question (though maybe only 6 lines of consecutive inserts).
    Logging is controlled through the "eclipselink.logging.level" properties.
    Best Regards,
    Chris

  • Is there a way I can set iTunes to add files automatically from a folder in my Windows PC?

    Is there a way I can set iTunes to add files automatically from a folder in my Windows PC and ensure that it is synced automatically? For example, if I add or modify a file in that folder it should be added to iTunes automatically. At the same time the original files in the folder should not be re-organized. That is can I just point to a music folder in my hard drive and sit back for iTunes to do the rest?

    Rishitani wrote:
    ..is there a way i can get it to start apart from restoring...
    Nope.
    Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup
    http://support.apple.com/kb/ht1766

  • Acrobat 8 Mac G4, G5 Combine files issue

    We run Acrobat 8 Professional on a number of our machines (G4s & G5s) running OSX.
    On the majority of machines, when trying to use the menu item 'Combine Files', the files can be selected moved to the dialogue box, but when the 'Create' button is pressed Acrobat crashes.
    Does/has anyone suffer/ed similiar and know of a fix?
    Steve

    Also, what version of OSX are you running?
    Are you combining files over the network, or are the files resident to a solitary computer when you are combining?

  • Increment Bates Number on Print

    I have been digging quite a bit in the forms. From what I have gather, it is possible but I'm not sure how to go about doing it.
    I was wanting to know how to make a document's Bates number increase, automatically, on each print of the document.
    Bates number is perfect because it's a legal document. The Document never changes, just each customer we fill it out for.
    Each filled out document has a number that changes, going up. We have been using a print shop for the documents but, we want to go electronic with it.
    I'm stumped at the moment.
    Any help will be greatly appreciated.
    Thank you very much.

    Bates numbering is for labeling legal ocumnet as a group. Not for use during a pirnt operation. It is possilble to create form fields and increnent the field but this requires quire a bit of scriptiing.

  • Acrobat XI Pro combine files window not visible

    So I was trying to combine files into one pdf this morning, but Acrobat's window for doing so would not appear. I could minimize it, and see it down on the bottom of my dock, but when I tried to maximize it, it would disappear. (I'm on a Mac). Everything else on the app was working perfectly. I:
    -checked all preferences
    -tried to re-arrange window configurations
    -made sure my 2nd monitor was up as it might have been last time I used the program
    -opened pdfs and then tried to combine them
    -quit and re-opened the application several times
    -tried again to access the 'combine' window from every angle I could
    -rebooted, then went through it all again
    -went to adobe to check for updates. Application manager says Acrobat XI is up to date. Won't let me do anything.
    So, I decided to uninstall it so I could start fresh and re-install. Uninstalled, went back to the Cloud. App manager says Acrobat XI is up to date, and still won't let me download or anything else.
    Rebooted. Went back to the Cloud. Same thing again.
    I would very much like to be able to use this app. I have things to do...

    I figured out how to recreate the preferences and it fixed the problem.  Here is how I did it:
    Quit Acrobat
    In Finder hold down "option" and open the "Go" menu.  Pick "Library"
    Open "Preferences" folder
    Drag "com.adobe.Acrobat.Pro.plist" to your desk top
    Reopen Acrobat and try to merge 2 files
    If it works you have solved your problem.  Acrobat will replace the missing file with the default.
    If it doesn't work you can drag the original folder back into "preferences" and keep trying to figure out what was wrong.
    Part of the answer was in the Acrobat workspace instruction.

  • Restart number is not in the check file or is not a From-number

    HI!
    I had  posted  payment Document  but i  got below error while  reprint  check from  FBZ5
    Restart number is not in the check file or is not a From-number
    "Message no. FS562"
    on that base, I had  check below  settinng 
    1) I  had check  Cheque no  register . It's  proper in series.
    2)Tcd:FBZP -> Pmt methods in country -> select your country
       and payment method 'C'. If 'Bank details' is checked on, then bank
       details of vendor master is mandatory for that payment.
    Awaiting for reply soon,
    thanking you,
    Rupang shah

    Hi,
    Commonly it will come for below situations:
    1. Client decided to use this check lots for manual payment & this checks already used, so this type of checks system not allowed to take reprint.
    2. You can only reprint checks created with F110, FBZ4, F-58 or FBZ5  (this checks have been printed by the system)
    Check the Payment method wise checks it is already issued / not PAYR - RZAWE
    system not allowed to reprint already exist in PAYR table checks.
    if you already use one check with payment method C now you want to use the same lot for payment method X then system not allow to print.
    Regards,
    Viswa

Maybe you are looking for

  • How do i set up my mg3100 with my macbook pro to work wirelessly.

    i don't have the original setup cd for my printer and downloaded the software setting up the computer without a usb lead. now it only works as a printer or scanner when i use a lead but won't work wirelessly. how can i get the printer to function wir

  • Changing Track Style for Score

    I wrote a tenor part and set the track's Style to Bass. However, in the score, it renders it in Piano style (split treble/bass). I tried editing style in Layout, but that only lets me change the Piano Style, which is defined just fine for a piano. I

  • Password protect .ibooks file

    Hello all, does anyone know of a way to password protect a .ibooks file so that it prompts for a password on the iPad. The tick box shown at the bottom of the inspector window only seems to protect the opening of the .iba file. Thanks in advance

  • 27" iMac Display

    Hiya guys, General opinions on the newest 27" iMac model in terms of display quality? I heard it's glossy-ness has caused a lot of fuss. How is 1080p screening? Purchased one, awaiting delivery. Thanks in advance!

  • Does solaris dhcp server support user class

    Does solaris dhcp server support user class(option 77). In my environment, solaris dhcp server seems just ignore this option set in the client dhcp discover. Does anybody can help me.