Copy Document Properties

Is it possible to copy the document properties from one PDF to another.  I'm mainly referring to the meta-content:  author, subject, keywords, etc.  Thanks.
-Robert

Hi Robert,
Short answer is yes.
The long answer:
EXPORT (from the first file)
Select the File > Properties menu item
Select the Description tab on the Document Properties dialog
Click the Additional Metadata button
Select Advanced from the tree view on the left side of the dialog
Click the Save button
Select a file name and location and then click the Save button on the Save dialog
Click the OK button on the XMP Metadata dialog
Click the OK button on the Document Properties dialog
IMPORT (with the new file open)
Select the File > Properties menu item
Select the Description tab on the Document Properties dialog
Click the Additional Metadata button
Select Advanced from the tree view on the left side of the dialog
Click the Replace button
Navigate to and select the XMP file you exported
Click the Load button on the Open dialog
Click the OK button on the XMP Metadata dialog
Click the OK button on the Document Properties dialog
Hope this helped,
Steve

Similar Messages

  • Acrobat X - Automate document properties and thumbnails

    I have 2400 files (180,000 pages) of declassified military records I am converting to PDF using Print To PDF. The original data is read from a proprietory browser created by the Marine Corps 15 years ago and Print to PDF is the only way to access the data.
    1. Currently, I open the new PDF created, CTRL D to Document Properties, then have to enter Navigation Tab > Pages Panel and Page and Magnifaction > Fit Height on each record set.
    2. Then i go to Description and add a Description from a database I have live on my website in Coldfusion and Access.
    3. I then save the file and close Acrobat X and then repeat the Print To PDF.
    Questions to start.
    A. Are there settings or Plugins that would allow each of the PDF's created using Print To PDF to automatically have the Navigation and Magnification settings already set?
    B. Is there any way to inject the Description into the new PDF or must this always be added manually?
    C. Is there any way to automate the Fast Web View function as part of the above process?

    You didn't mention which version of Acrobat you're using, which is critical to the answers to these questions.
    If you have Acrobat Pro, then you can do A and C in a batch process (aka Action).
    B can be achieved using a custom-made script. If you have version 9 or earlier a directly link to the DB can be created and the data copied from it to the script's metadata. If you have Acrobat X this can also be done, but would require export the information from the DB to a file, reading that file with a script in Acrobat and then using it to populate the metadate fields. Again, if you have Acrobat Pro this could be done in a batch process. Otherwise, you'll have to do each file at a time.

  • Help needed re document properties and tracing edits of the contents

    Hi there,
    We are in a situation where we believe a document may have been edited unethically and need to find out what the terminology means.
    The original document exists in print and we have been sent a 'copy'  of the same document via email several months later.
    The date created and modified, however, is very recent.
    We know the document has been altered as it is different to the original and are trying to find out when exactly it was modified.
    It is an acrobat document created on a Mac. In the document properties box it says 'Application: Word' so I guess that means that they created it in Word and saved it as an Acrobat file?
    It says the date created is 05/06/14 and the date modified is 05/06/14.
    Does this mean that the file's content has been changed or does it just mean that it has been saved etc?
    Any help very gratefully received!

    You can't really say anything. Files don't start out as PDFs, they start out as something else like a Word document.
    So, if you have the Word document, you can make a PDF any time.
    Edit the Word document any time, and make another PDF.
    Also, computer dates can be set by anyone any time. Dates in a PDF can be changed (though not by Acrobat, but it isn't rocket science). If you are looking into this from a legal point of view, dates on a document are worthless.
    Digitally signed documents have value provided they are signed in particular ways.
    Acrobat has a compare document facility, but all this will do is confirm the changes.
    To be honest, it sounds more as if they send you a new copy from the Word document, when it was asked for. Someone might have changed the document in the mean time, without tracking the changes in a way you'd have wished.

  • Copying Documents With Version History

    Hello,
    I am working on a ribbon button for SharePoint 2013 with which users (with contribute permissions) can open a dialog to move selected documents to a different library (with the same content type) and enter soms Metadata to be set for the document.
    One of the requirements for this is that the version History should be copied along with the document. Of course I googled for some code that allready does what I want to do and i stumbled upon this blog:
    http://sharepointvenividivici.typepad.com/sharepoint-customization/2011/06/maintain-file-version-history-when-movingcopying-files-between-sharepoint-sites.html
    Because this code also sets the modified and created information for the document the code runs under elevated priviliges because the users do not have the rights to modify that data.
    At first this seemed to be the perfect solution, but after a while we found something truly annoying. The first time you copy the document it works perfectly and the document including version history is being transferred. But the second time the document
    does get copied with the version history but in the version history the modified by is set to System Account for every version.
    Does anyone know what can cause this?
    After doing some more digging, I believe that the problem lies with the following function
    SPFile fileDest = libDest.RootFolder.Files.Add(
                     urlDestFile,
                     streamFile,
                     hashSourceProp,
                     userCreatedBy,
                     userModifiedBy,
                     dateCreatedOn,
                     dateModifiedOn,
                     strVerComment,
                     true);
    This function apparently sets the Created, Created By, Modified and Modified By properties to the values you provide, but when you later try to read this properties with code you get the userwith which you ran the code and not the user you provided. Does
    anyone know a way to fix this?

    Hi,
    According to your post, my understanding is that you wanted to copy documents with version history.
    I had written a simple demo to copy files to another library, and modified the code as below,  you can refer to the following code snippets to check whether it works.
    public static void CopyFileWithVersion()
    using (SPSite site = new SPSite("YourSiteURL"))
    using (SPWeb web = site.OpenWeb())
    SPList sourceLib = web.Lists["Lib1"];
    SPList DestinationLib = web.Lists["Lib2"];
    SPListItem itemSource = sourceLib.GetItemById(2);
    SPFile fileSource = itemSource.File;
    SPUser userCreatedBy = fileSource.Author;
    DateTime dateCreatedOn = fileSource.TimeCreated.ToLocalTime();
    //Get the versions
    int countVersions = itemSource.File.Versions.Count;
    for (int i = 0; i <= countVersions; i++)
    Hashtable hashSourceProperties;
    Stream streamFile;
    SPUser userModifiedBy;
    DateTime dateModifiedOn;
    string strVersionComment = "";
    bool bolMajorVerison = false;
    if (i < countVersions)
    SPFileVersion fileSourceVerison = itemSource.File.Versions[i];
    hashSourceProperties = fileSourceVerison.Properties;
    userModifiedBy = (i == 0) ? userCreatedBy : fileSourceVerison.CreatedBy;
    dateModifiedOn = fileSourceVerison.Created.ToLocalTime();
    strVersionComment = fileSourceVerison.CheckInComment;
    bolMajorVerison = fileSourceVerison.VersionLabel.EndsWith("0") ? true : false;
    streamFile = fileSourceVerison.OpenBinaryStream();
    else
    userModifiedBy = fileSource.ModifiedBy;
    dateModifiedOn = fileSource.TimeLastModified;
    hashSourceProperties = fileSource.Properties;
    strVersionComment = fileSource.CheckInComment;
    bolMajorVerison = fileSource.MinorVersion == 0 ? true : false;
    streamFile = fileSource.OpenBinaryStream();
    string urlDestinationFile = DestinationLib.RootFolder.Url + "/" + fileSource.Name;
    SPFile fileDestination = DestinationLib.RootFolder.Files.Add(
    urlDestinationFile,
    streamFile,
    hashSourceProperties,
    userCreatedBy,
    userModifiedBy,
    dateCreatedOn,
    dateModifiedOn,
    strVersionComment,
    true);
    SPListItem itmNewVersion1 = fileDestination.Item;
    itmNewVersion1["Created"] = dateCreatedOn;
    itmNewVersion1["Modified"] = dateModifiedOn;
    itmNewVersion1.UpdateOverwriteVersion();
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Jason Guo
    TechNet Community Support

  • Problem Printing document properties from Word to PDF

    Hello all,
    This is wierd, I need to print from MS Word doc 2002 SP2 to PDF version 9.3.4.  When I do so, I need to pass the document properties from the word file to the PDF such as author, subject, title, etc.  What is strainge is when i click the pdf button in word they do pass over but when I go to >>File>>print and select PDF they do not, and yes I did select the "Add document information" check box in the Adobe PDF settings dialog.  I need to print this because I am doing a batch print process that requires it to be printed.
    HELP.

    Hello all,
    This is wierd, I need to print from MS Word doc 2002 SP2 to PDF version 9.3.4.  When I do so, I need to pass the document properties from the word file to the PDF such as author, subject, title, etc.  What is strainge is when i click the pdf button in word they do pass over but when I go to >>File>>print and select PDF they do not, and yes I did select the "Add document information" check box in the Adobe PDF settings dialog.  I need to print this because I am doing a batch print process that requires it to be printed.
    HELP.

  • Read-only Collaborator can edit Contract Document properties

    We have a master agreement with a read-only collaborator. The security profile for this collaborator role is identical to the stock "Document Reviewer" profile, i.e. only View is set.
    However this supposedly read-only collaborator is able to edit Contract Document properties. They click on the Contract Documents tab, then drill into a Contract Document, and then click on the Edit button. From there, they have the ability to change fields such as Name, Descrpition, Effective Date, etc. They cannot change or delete the actual file attachment itself.
    Is this an issue with CLM, or is there some security setting we are missing somewhere? Please tell me this is not working as designed ..
    thanks.

    Hi Terry,
    According to your description, my understanding is that you don’t want the yollow bar notification to display when you open Access documents.
    This issue seems to be about the client application. Please compare the followings with the things that you did:
     1.Open the documents
     2.Click File->Options->Trust Center->Trust Center Settings
     3.Click Protected View, unselect ‘Enable Protected View for originating from the Internet’
     4.Click Message Bar, select ‘Never show information about blocked content’
     5.Click Macro Settings, select ‘Disable all macros without notification’
    In addition, as this issue is about Office, I commend you create a new thread in Office forum, more experts will assist you with this issue.
    Office forum:
    http://social.technet.microsoft.com/Forums/en-US/home?category=officeitpro
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • BAPI_DOCUMENT_CREATE2 problem with copying document-version

    Hi experts!
    I want to copy Documents from one Sap-System to another via RFC.
    So I read the documents in the source-system with 'BAPI_DOCUMENT_GETDETAIL2' via RFC. then I want to insert the documents received in the target-system with BAPI_DOCUMENT_CREATE2.
    The result is that from a document all part-documents are been copied, but only one (the first) version of a document-part.
    my coding:
    ... for reading the documents
        CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2'
             DESTINATION p_rfcdst
          EXPORTING
            documenttype               = gs_draw-dokar
            documentnumber             = gs_draw-doknr
            documentpart               = gs_draw-doktl
            documentversion            = gs_draw-dokvr
            getobjectlinks             = 'X'
            getcomponents              = 'X'
            getstatuslog               = 'X'
            getlongtexts               = 'X'
            getactivefiles             = 'X'
            getdocdescriptions         = 'X'
            getdocfiles                = 'X'
            getclassification          = 'X'
            getstructure               = 'X'
            getwhereused               = 'X'
        HOSTNAME                   = ' '
          IMPORTING
            documentdata               = gs_doc_data
            return                     = gs_return_get
          TABLES
            objectlinks                = gt_obj_links
            documentdescriptions       = gt_doc_desc
            longtexts                  = gt_long_texts
            statuslog                  = gt_status_log
            documentfiles              = gt_doc_files
            components                 = gt_comp
            characteristicvalues       = gt_char_val
            classallocations           = gt_class_alloc
            documentstructure          = gt_doc_struc
            whereusedlist              = gt_where_used.
    my coding:
    ... for creating the documents
      CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
        EXPORTING
          documentdata         = gs_doc_data
        IMPORTING
          documenttype         = gs_create-dokar
          documentnumber       = gs_create-doknr
          documentpart         = gs_create-doktl
          documentversion      = gs_create-dokvr
          return               = gs_return_create
        TABLES
          characteristicvalues = gt_char_val
          classallocations     = gt_class_alloc
          documentdescriptions = gt_doc_desc
          objectlinks          = gt_obj_links
          documentstructure    = gt_doc_struc
          documentfiles        = gt_doc_files
          longtexts            = gt_long_texts
          components           = gt_comp.
    Result:
    eg. - Source Document
    Document   AUF/N4711/xxx/xx
    Part      Version    Status      Description
    010       00           FR           Cond.-010-00
    011       00           FR           Cond.-011-00
    011       01           FR           Vers-011-01
    011       02           FR           Vers-011-02
    012       00           FR           Cond.-012-00
           Target Document
    Document   AUF/N4711/xxx/xx
    Part      Version    Status      Description
    010       00           FR           Cond.-010-00
    011       00           FR           Cond.-011-00
    012       00           FR           Cond.-012-00
    Is there only the possibility to create one version of a document with BAPI_DOCUMENT_CREATE2 ?
    Thanks in advance for helping me!
    Franz

    Hi Avinash,
    a
    Thanks for the reply.
    I am able to create document number in IDES system. I am getting error development system while creating document number with the FM. Configuration settings and the test data are same for both IDES and Dev. system.
    What could be the problem and how to rectify it.
    Regards
    SP Raj

  • Acrobat Pro 9.5.1 Document Properties glitch

    Hi,
    When trying to view the document properties in Acrobat Pro 9.5.1 I get the below screenshot. The box is tiny and so small nothing can be viewed. I have to press ESC to close the window. I can only use ALT+SPACE to move  it also.
    PC config:
    Generic Dell Crap Vostro 200.
    Windows XP SP3
    CS4 DP - only Acrobat, Distiller, Bridge, Illustrator and Photoshop, no InDesign.
    CS5.5 DS - Everything but Acrobat X as it isn't compatible with our plugins and add-ons.
    All Adobe software is updated, as is the windows OS. AV is AVG Business.

    Yes, I've tried multiple repairs.
    Here is my sysinfo file if it helps. I noticved that some of the plugins were doubled up in their own folder and the plugin fodler, so I removed the apis from the plugin folder...
    Available Physical Memory: 1529264 KB
    Available Virtual Memory: 1782092 KB
    BIOS Version: DELL   - 42302e31
    Default Browser:
    Default Mail: Microsoft Office Outlook
        mapi32.dll
        Version: 1.0.2536.0 (XPClient.010817-1148)
    Graphics Card: Intel(R) G33/G31 Express Chipset Family
        Version: 6.14.10.4820
        Check: Not Supported
    Installed Acrobat: C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:11:25 AM
    Locale: English (Australia)
    Monitor:
        Name: Intel(R) G33/G31 Express Chipset Family
        Resolution: 1680 x 1050 x 60
        Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows XP Professional
    OS Version: 5.1.2600  Service Pack 3
    Page File Space: 4194303 KB
    Processor: x86 Family 6 Model 15 Stepping 13  GenuineIntel  ~1795  Mhz
    System Name: COPYROOM2
    Temporary Directory: C:\DOCUME~1\JOHNDE~1\LOCALS~1\Temp\
    Time Zone: AUS Eastern Standard Time
    Total Physical Memory: 2097151 KB
    Total Virtual Memory: 2097024 KB
    User Name: Rod
    Windows Directory: C:\WINDOWS
    Installed plug-ins:
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\AcroForm.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:11:59 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Annots.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:12:10 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\DigSig.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:11:58 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Enfocus\Certified PDF.api
        Version: 3,2,4,0
        Creation Date: 2012/02/27
        Creation Time: 11:16:27 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Enfocus\PitStop.api
        Version: 7,5,2,0
        Creation Date: 2012/02/27
        Creation Time: 11:16:38 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\EScript.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:12:08 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\ImpositionViewer.API
        Version: 1.3.033
        Creation Date: 2012/01/16
        Creation Time: 11:21:48 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\PTLic4.api
        Version: 3.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:05 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\PTools.api
        Version: 3.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:06 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\PTVersion.api
        Version: 1.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:06 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\Screening.api
        Version: 2.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:07 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\Supercolor.api
        Version: 4.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:08 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Heidelberg\Supertrap.api
        Version: 6.0.91
        Creation Date: 2012/01/16
        Creation Time: 11:22:09 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\IA32.api
        Version: 9.5.1.283
        Creation Date: 2012/05/22
        Creation Time: 5:37:43 PM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\PPKLite.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:12:04 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Printable\FusionProAcro8.api
        Version: 7.2.13
        Creation Date: 2011/08/24
        Creation Time: 4:50:04 PM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\qbox32.api
        Version: 1.8b (EN) beta 1
        Creation Date: 2011/10/05
        Creation Time: 9:50:33 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\qiplus2.api
        Version: 2.9b
        Creation Date: 2011/10/05
        Creation Time: 9:50:33 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\Updater.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:12:02 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\weblink.api
        Version: 9.5.1.283
        Creation Date: 2012/04/24
        Creation Time: 12:12:01 AM
    C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins\WebPDF.api
        Version: 9.5.1.283
        Creation Date: 2012/05/22
        Creation Time: 5:37:33 PM

  • Can't seem to change the Document Properties Advanced Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    Can't seem to change the Document Properties > Advanced > Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    LiveCycle forms use a very different approach to create a PDF form than Acrobat and that approach makes many features for processing PDFs non-functional.
    You might want to ask this question in one of the LiveCycle product forums.

  • How to prevent editing a SharePoint site column value from document properties view of a downloaded document?

    Hi,
    We have created a SharePoint site column with below settings
    1. ShowInEditForm - False
    2. ShowInNewForm - False
    3. ShowInDisplayForm - True
    With the above definition, the site column showing only in view properties form not in New and Edit forms.  This column is added to a document library and updating this column value will be managed by event receiver code when a document is uploaded.
    Till this point, everything is working OK.
    But the issue is when we download and open a document from the above document library, under document properties the above column (with value) is visible along with other document default properties and  this column value is editable. With this issue,
    user is able to set a new value and overwrite the existing value by re-uploading the document.
    Could you please let me know how to handle this issue so that user should not be allowed to edit except viewing the value/property (read only)?
    Thanks in advance.
    Regards
    Ramesh

    You can set "ShowInFileDlg" property of field to "FALSE". Using this you will not see that field in document properties list

  • How to copy documents for InfoProvider data from one cube to another cube

    Hello Everyone,
    We are using standard document feature to store document/comment about the data shown in the report/planning query. Relevant characteristics have the property 'characteristics is document attrib' turned on/selected for this purpose.
    Looks like the documents created gets tagged to a particular InfoProvider along with characteristic value assignment.
    Is there a way to move or copy documents from one InfoProvider to another InfoProvider.
    As per the design requirement, we need to move data from a real time InfoProvider (transaction cube) to a basic reporting cube. The data in the first/source cube stays for a period of approx 3 months before moved to other cube. We want the documents associated with InfoProvider data also to be moved, so that users can continue to see the document/comments what they  had created earlier.  
    I looked at the Documents tab in DataWarehouse workbench. No options seem to be available to copy or move documents.
    Any help will be highly appreciated and points will be rewarded accordingly!
    Best regards,
    Sanjeeb

    Hi
    Have you got any answer to this? I would also be interested in a copy function but more from one query ID to another.
    Kind regards,
    Daniel Müller

  • Why can't I fill in a PDF document? Document properties say it is allowed

    I have just upgraded to Adobe Reader 9.5.1. Using MiniMac OS 10.4.11, Firefox 3.6.28.  I cannot fill in a PDF Document even though the Document Properties indicate it is allowed.

    In a nutshell, just because security properties say that filling of form fields is allowed, that does not mean that the creator of the file has actually added those fields.
    Normally if the form is fillable, you would get a notification bar at the top of the Reader window. It is possible you have that option turned off so select the hand tool and mouse over a field that you think should be fillable. If the hand turns into an i-beam, click in the filed and start typing. If it doesn't, it's not fillable.

  • Requirement to programmatically copy documents from KM to a Windows folder

    We have a requirement to programmatically copy documents from KM to a Windows folder with final destination being SharePoint.  We are able to access the KM folders manually through WebDav and adding Network Place in Windows.  However, we need to do this programmatically.  Has anybody solved this puzzle?  We are looking for a .NET solution.  We have already ruled out NetWeaver Portal Drive 4.4 as a good solution because it seems is not supported for current and future hardware.
    Thanks!
    Mario

    Dear Mario
    You can use KM API to code for download of the files ,but please make sure that the server has acess to the local destop.
    1) Read the folder form KM
    2) Read Each file as a byte array
    3) write the Byte array as a file in the local desktop(Make sure for the premission )
    4) Repeat the above steps for all the file in the folder
    Regards
    Noel

  • Issue with Document Properties/Security

    I used adobe 8 proffesional to create a pdf form that I want digitally signed. 
    When I preview, I am able to add a digital signature and Document Properties/Security it indicates signature allowed. 
    When I open the document in Adobe Reader.  I cannot sign. 
    Document Properties/Security state Signing:  not allowed.   We are not using Echo.  Help!

    Per John T. Smith's comments, I will Move your post to the Adobe Acrobat Forum, where you will likely get directly help.
    Your links, and any e-mail subscriptions will follow.
    Good luck,
    Hunt

  • PDF Document Properties - Author format issues

    As I am creating PDFs to load onto the web I am adding all the document properties that are needed to properly identify each PDF.
    However I run into the same problem over and over, when I enter in the author, any commas I use to separate names are then switched to semi-colons. I'm wondering if there is a way to turn this feature off or if I need to just start inserting names in proper order rather than Last Name, First Name.
    For example:
    Smith, John D.; Anderson, Rachel R.; and Hendersen, Martha
    -becomes-
    Smith; John D.; Anderson; Rachel R.; and Hendersen; Martha
    Do I need to start listing them like this:
    John D. Smith; Rachel R. Anderson; and Martha Hendersen
    Any help would be greatly appreciated.
    -SJ

    Please repost in the Acrobat forum.

Maybe you are looking for

  • XML Deserialization error while consuming Enterprise service in wd java..

    Hello, I am trying to build 2 webdynpro java webdynpro applications which consumes enterprise service for purchase order and another application for Busines partner. While i was able to successfully consume the PO service in webdynpro java and get th

  • Flash actionscript question!

    This is a external.as for loading images Do anyone of you knows where gone wrong?? the images can't be loaded.... thanks! I attached my code here! :)

  • Airport Extreme for more than 50 users

    Hello, I need to make a wifi network for 300 users, as Airport Extreme can manage 50 users, can I connect 6 Airport Extreme units in cascade or throw a switch to make it? Will the DSL manage with it? Thanks and best regards.

  • Sales Tax Query

    Dear Experts I have read in a document the following about sales tax: Kindly clarify the genuineness of the statements as follows and please let me know what the corrections are if any incorrectness is found:  "Both CST and LST rates can be maintaine

  • All my comments and mark ups keep disapperaing

    Hi, I have been having the most frustrating problem with Adobe Acrobat Pro, every time i what to use the typewriter tool or any other mark-up tool, once i have written it and clicked away it disappears. This as been happening for a few months now, i