Export Index from PDF Portfolio

I need to compare two large PDF Portfolio documents. From what I can tell, there is currently no third party software around that will do this so I'm trying to figure out a way around it. Each Portfolio that I'm working with has over a thousand email messages exported from Outlook and the corresponding attachments. I know that an "Index" was created when I exported the messages because I can see the pane that lists all the typical details in an index with sortable column headers (i.e., From, Subject, Date, Size, etc...). I'm trying to figure out a way to export only this indexed information into a .csv or other delimited file so I can create unique IDs and compare the documents using Excel. From what I've read, the "Edit" button is one way to try this but for some reason, when Outlook converts messages to a PDF Portfolio, it also removes the ability to use the "Edit" tool. Does anyone know of a way to export just the index information or if there's a hidden index file somewhere? Please let me know.
Thanks,

You are correct that the Portfolios created by the mail client plugins are not editable. They use a special layout which does not exist as an editable master layout in Acrobat.
It's possible to export the rows of data from the 'details' view using JavaScript, but those fields don't contain the body of the message so you will only get the headers (to, from, date, etc.). If this is all you need, follow these instructions:
Switch to the Cover Sheet view from the View > Portfolio menu
Open the javaScript console (Ctrl-J) and clear it with the trashcan icon
Paste in the code which follows, select it all, then press Ctrl+Enter to execute it.
// code follows
var d = this.dataObjects;
var csv = '';
    if (d) {
    cfl = this.collection.fields.length;
    tx_cols = new Array();
    tx_names = new Array();
    for (i = 0; i < cfl; i++) {
      tx_cols.push(this.collection.fields[i].text);
      tx_names.push(this.collection.fields[i].name);
        csv = tx_cols.join() + "\r\n";
        for (var i = 0; i < d.length; i++) {
      tx_data = new Array();
      for (var r = 0; r < cfl; r++) {
        tx_data.push(d[i].getFieldValue(tx_names[r]));
      csv += tx_data.join() + "\r\n";
    this.createDataObject({cName:"EmailData.csv", cValue:csv,cMIMEType:'text/csv'});
    this.exportDataObject("EmailData.csv");
    this.removeDataObject("EmailData.csv");

Similar Messages

  • Help with exporting data from pdf form

    I have about 100 pdf forms that I created in adobe forms central and distributed as a pdf form (rather than on the web). I am trying to export the data into a spreadsheet but when I export it, the fields are all jumbled in the csv file, as in they are not in the same order. I need to export the data all together so I'm going to the forms menu and selecting "manage form data" and then selecting "merge data files into spreadsheet". I tried exporting a single file but that gave me something really weird.
    Please help, I have a deadline next week to analyze this data and can't make sense of it once it is exported to a spreadsheet.

    Would you please share your form with me and send me one of your pdf forms and some of the csv files?
    You can share your form by doing the following:
    1. Click on the “Share” icon on the bottom left corner.
    2. Click on “Add Collaborator” on the popup menu.
    3. Enter [email protected] under “People to share with”.
    4. Set subject to "Export data from pdf form"
    5. Click the “Share” button on the bottom right of the dialog.
    Thanks
    Ken

  • Is it possibile to retrieve .nav from pdf portfolio?

    Hi all!
    There is any way to retrieve the .nav file from pdf portfolio? Is it possible?
    Thanks

    Perhaps? It depends whether the space it occupied has been overwritten. There are various undelete tools ranging from free (if hard to track down) upwards... Some can only recover recently deleted items if they can find the deleted folders, so almost any new data written to the device may prevent them from working. Others can inspect every block of data on the drive and reconstruct almost any type of file that hasn't been actually overwritten.
    tt2

  • Would like to export data from PDF form as plain text for other applications.

    If this has been answered, I apologize and hope that someone will point me to the right place to see the answer.
    PROBLEM: I have created a PDF form to be filled out and returned via email to specific email addresses. I want that email to show the data being returned as plain or rich text (either will do) in a simple email. I need this because the information will be used in  different applications (print, web, etc...). I just need text that can easily be cut and pasted by people not that sophisticated in their use of computers.
    I understand this may be a javascript function in the Actions menu of the Submit button. But, I rarely do forms through Acrobat and this is new to me.
    Any helpful response is as always, greatly appreciated.
    --C

    GKaiseril wrote:
    "You could export the from data as a tab delimited text file and then import that data into an SQL database"
    I could say as I have to do, in detail?
    As could do (adobe acrobat) a button(tab delimited text file) to export a completed form from the adobe reader?
    greetings and thanks.

  • Export Fonts from pdf files

    Is there any way to export fonts from any pdf file?

    They will export in the original size of the image, not in the size that appears. I believe that Acrobat is simply dumping the TIFF or whatever as is.

  • Print List View from pdf Portfolio

    I need to be able to print out the list view from a portfolio package to be used as an index or table of contents. Is there any way to print this out? It stuns me that its not right there in the print options. Any ideas?
    Thanks

    I am still in need of help figuring this out. Any ideas?

  • Import/Export comments from PDF

    Hi
         I am using Adobe Acrobat 6.0 Professional. I am an application devleoper [.Net 4.0 , C#] . I need to export/ import comments from pdf. I will explain my scenario :-
       1.  I have three copies of the same pdf file. Each copy contains different comments.  i need to combine the comments from these three pdf file into a single             pdf file. Can i do this programattically ?
       2. From where i can get the API for the same ? [.Net 4.0]
      Looking for your responses.
       Regards
       Dominic

    Open a PDF having sticky note and underline annotations applied with Acrobat XI Pro (the trial release will do  just fine).
    Open the Comments List.
    From the Options menu select "Create Comment Summary".
    Because you've an interest in getting comment annotation content into a Word file select the "Comments only" layout.
    Complete configuration as desired.
    Click the "Create Comment Summary" button.
    Save the resultant PDF.
    With this PDF open in Acrobat XI Pro use the click-path:
    File :: Save As Other :: Microsoft Word :: Word Document or Word 97-2003 Document
    Be well...

  • How to Export Quote from PDF to Excel OR Print Quote in Excel?

    Hello,
    I have a requirement where in I need to Print my quote in Excel output(Right now I am getting a PDF output)
    Any information on the same would be a great help. I am workn on 11.5.10 instance.
    Regards,
    Ajit

    The standard way of implementing this requirement is via xml publisher reports. You can build a concurrent program which takes some parameters and generate a pdf/excel report. You can call this concurrent program from ur OAF page.If you are not sure how to submit concurrent request via OAF refer to dev guide, this has been explained with sample code.
    On the other note if u just want csv file, which can opened in a excel, you can print the quote on OAF page using advanced table bean and use export feature. This is explained in Advanced table section in dev guide.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Export table from pdf to excel

    I have been attempting to convert a large table from a pdf file to an Excel worksheet, but I am having no luck. I am working on Adobe 8, and I can't figure out a way to do it. I've tried saving the file as .txt, but this completely screws up the formatting when I open it with Excel. I thought I remembered using a past version of adobe to accomplish this simply by right-clicking on a selected region of the table and selecting "Export to Excel"... where did that option go? I am currently copying and pasting each individual row of the table into Excel in order to keep the formatting, but this is too time consuming. HELP!!!!!!!!!!!!!!!!

    Use the menu entry 'Open Table in Spreadsheet' in Adobe Acrobat 8 Professional.

  • Export text from pdf to csv or xls / identity-H text

    Hello,
    Is it possible to export text in a pdf to a csv or an excel file (with coresponding page numbers where the text was found)
    For a product we make we need to put all the text of a page into the metadata of the page. Normally we use a ghostscript for this but when customers provide a PDF with identity-H text this won't work most of the time. When this doesn't work we create a postscript of this PDF and recreate a PDF with distiller, quite often after this the ghostscript will recognize the text, but if it doesn't work... then we need to put all the text manually in an excel file and with all the text boxes and lay-out in the PDF this is a quite frustrating task.(especially a few hundred pages)
    The question on top is a sulotion which will work if it is possible because that is failproof but, if someone knows an other solution to the actual problem we experience with identity-H that would be very helpfull too.
    Thanks in advance!

    Here is a visual example of what I am referring to, showing the right-click location and the different options that appear. (The blue selection box is from me selecting and dragging around the question from a non-text area)

  • Prefixed XMLNS and exported XML from PDF

    I have the following XSD sample:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="http://www.irs.gov/efile" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.irs.gov/efile" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
    <xsd:annotation>
      <xsd:documentation>
      </xsd:documentation>
    </xsd:annotation>
    <xsd:include schemaLocation="efileTypes.xsd"/>
    <!-- ===================================  ATTACHMENTS TO MESSAGES  =================================== -->
    <!-- IRS Submission Manifest -->
    <xsd:element name="IRSSubmissionManifest">
      <xsd:complexType>
       <xsd:sequence>
    I am importing the XSD file into Designer and generating all possible fields. I include a button to generate XML output using Acrobat. When I load the PDF into Acrobat and generate the XML, I want the following result:
      <IRSSubmissionManifest xmlns="http://www.irs.gov/efile" xmlns:efile="http://www.irs.gov/efile">
    However, no matter how I edit the XSD, I can only generate the following result:
    <IRSSubmissionManifest xmlns="http://www.irs.gov/efile">
    How do I get the " xmlns:efile="http://www.irs.gov/efile" " fragment to appear in the IRSSubmissionManifest element?
    Thank you.

    Thanks again for your help.
    I tested your code as-is on a webpage for testing XLST, and when I gave it some sample XML data it returned all the element content with the element tags removed. The sample data is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <IRSSubmissionManifest xmlns="http://www.irs.gov/efile"><SubmissionId>2</SubmissionId><EFIN>123456</EFIN><TaxYear>2011</TaxYear><GovernmentCode> IRS</GovernmentCode><FederalSubmissionType>1040</FederalSubmissionType><TaxPeriodBeginDate >20110101</TaxPeriodBeginDate><TaxPeriodEndDate>20111231</TaxPeriodEndDate><TIN>123456789< /TIN></IRSSubmissionManifest>
    I altered the fourth line of your XSLT to read as follows: <xsl:template match="IRSSubmissionManifest">
    I tested that XSLT on this page: http://xslttest.appspot.com/
    And the result was exatly what I needed.
    However, I since imported that XSLT into the PDF in Designer and the transformation doesn't occur. The generated XML has all element tags removed. I receive no error messages regarding the XSLT when I save the PDF file in Designer.
    So close yet not enough.
    I wonder if the XML export functionality doesn't like having the root element tag altered. Regardless, it doesn't seem like any of the data supplied is in error.

  • Exporting issues from PDF to Microsoft Word

    I have a user that received a PDF document that was originally created with InDesign CS3. She wants to make changes to that document, but we don't have InDesign CS3, trying to use the Export to Word function instead. When we go to export the PDF into Microsoft Word, most of the document doesn't export, and in my case, Word crashes every time I try to open.
    My only question is this. Is that expected behavior? And if so, she'd need to get InDesign CS3 to make her changes?

    >My only question is this. Is that expected behavior?
    Probably. There are many things that can be done in InDesign that can't be replicated in Word. That could be part of the issue.
    >And if so, she'd need to get InDesign CS3 to make her changes?
    That wold be the recommended way yes. The PDF is a final product. You should always make edits to the original document rather than the PDF.

  • How can I save an attachment from PDF portfolio from a datagrid display?

    The reason I need this is a client is limited to a certain version of reader where this functionality is missing from the file menu. (10.0.1).
    I was thinking either a right click on the item (custom context menu), or a save button elsewhere on the form.
    As a bit of extra information, I am developing using flex 3.
    Any help would be greatly appreciated!
    Regards,
    Chris

    To be honest, the data grid isn't even important. I would just like to be able to select a file and save it with a button on my pdf.

  • How to export equations from pdf

    I want to export all the math equations appearing in pdf as png format. Is there any way to get it done?

    Are talking about the formulas within a script or as part of the content of the PDF. Many math equations in PDF documents, not scripts, use special symbols which make it very difficult to locate and copy.
    You can export the page as an image and then use an image editor to crop the image.

  • Exporting comments from PDF-Adobe Acrobat 9 not compatible with MS Word. Any solution?

    Hi guys
    Has anybody solved this problem? Adobe Acrobat 9 is not compatible with Word 2010. Is there any alternate solution to export the comments?
    thanks
    PS

    For MS Office 2010 applications have Acrobat X on board.
    A useful reference: http://kb2.adobe.com/cps/333/333504.html
    Be well...

Maybe you are looking for

  • Parse

    Anyone could help me? After uploading a CSV file, parsing it with StringTokenizer and displaying it in a table, how can i catch a value of a cell so to compare it to another? Thanks PS: I heard something about comma separated list. What´s the diferen

  • Help to find third party plug-ins for Shake please!

    Hi! So there is thousands of third party plugs for After Effect. But not for Shake (?) I found just Foundry and GenArts plugins fore Shake. Is there any other t.p. plugins? Thank you!

  • Overlapping Front Panel Objects

    I understand that overlapping front panel controls (booleans, numerics, plots, etc.) will cause a significant update penalty.  What about using tab structures or decorations from the modern/classic pallete (such as raised block, recessed block, frame

  • How to get MAC address from client machine ?

    Hi dear, We are implementing security measures for a banking system, so it is required that we track the MAC address of the registered clients along with other parameters. How do we get the MAC address from client machine using ADF or running scripts

  • Transfer folders to different library in iPhoto 8.1.2

    I found the answer. It'll cost me $20.00 to upgrade to a management application through Apple Stores. I'll buy the cheap Photo Shop on Amazon for another $30.00. It will be worth it. I never liked iPhoto anyway, it's too limited. I'm just trying to f