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

Similar Messages

  • 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");

  • 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?

  • 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.

  • PDF Portfolio Cover - how to change this in Acrobat Pro 9?

    Hi all,
    in Windows folders PDF Portfolio files are displayed as follows:
    1. Using common PDF icons (bad, because we cannot distinguish PDF from PDF Portfolio), or
    2. If the folder allows larger pictures, then we see the standards Porfolio cover showing a "book",
    the note about the needed version and a download button.
    Question: is there a way to replace the standard PDF Portfolio cover (and symbol) by an user defined one?
    Such information like needed version and the download button aren't useful for people which
    already use correct versions. Notes like these should only appear on computer which cannot
    corretly display the respective files.
    For a meningfull overview I would like to display own contents. Is this possible?
    Best Regards, Michael

    Ignore the previous posts.
    The thing you're looking at is called the Cover Sheet - it's the page that users will see if their software cannot support Portfolios (or on Windows Explorer thumbnails), and is NOT part of the Portfolio navigator. In fact, the Cover Sheet is the "parent" to the entire document, and is nothing more than a one-page PDF file.
    To view the Cover Sheet in Acrobat, choose View -> Portfolio -> Cover Sheet
    You cannot delete it (as it's the only page in your document!) but you can edit it. For example, you could create your own design, and use the page thumbnails right-click "replace page" tool to swap in your new page. Be careful about the web link though, it needs to stay there to help your non-Adobe recipients.
    If you want to change every Cover Sheet on every Portfolio you make, replace the default "coversheet.pdf" file within the Acrobat install (there will be a series of them in subfolders, one for each installed language):
    C:\Program Files\Adobe\Acrobat 10.0\Acrobat\DocSettings\CombineFiles
    We do it all the time to add company branding to Portfolios created in enterprise installs.

  • Failed to retrieve data from the database (Apache derby). Details: java.lang.reflect.InvacationTargetException

    Post Author: johnnighter
    CA Forum: Data Connectivity and SQL
    Hi,Good Day !I followed crxi_java_bean_data_source.pdf to setup and configure Crystal Report XI (Product Version 11.0.0.1282, CR Developer; Product Type: Full).Below is the sample code.import java.sql.*;public class CRSampleDataSourceBean {    private ResultSet resultSet = null;    private Connection connection = null;     private String connectionURL = "jdbc:derby:MyDatabase";    private String databaseClass = "org.apache.derby.jdbc.EmbeddedDriver";    private String query = "SELECT * FROM CUSTOMER";         public CRSampleDataSourceBean()     {        try         {                        Class.forName(databaseClass);                        connection = DriverManager.getConnection(connectionURL, "", "");        }         catch (ClassNotFoundException ex)         {            System.out.println("Ensure that database driver class is installed.");            ex.printStackTrace();        }         catch (SQLException ex)         {            System.out.println("SQL Exception #" + ex.getErrorCode() + " : " + ex.getLocalizedMessage());            ex.printStackTrace();        }    }            public ResultSet getResultSet() throws SQLException     {                Statement statement = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);                resultSet = statement.executeQuery(query);        return resultSet;    }}Compile no error. It display at the "Java Beans Connectivity" screen, and able to select from the "Java Bean Classes" combobox.It display at the "Available Data Sources" (left hand side) with database name CRSampleDataSourceBean->getResultSet.  BUT when click the ">" or ">>" button, it display an error message "Failed to retrieve data from the database. Details: java.lang.reflect.InvacationTargetException". Please advice. regards,johnnighter    

    Post Author: pvierheilig
    CA Forum: Crystal Reports
    Have you been able to resolve this yet?  I don't have any reference to Oracle error codes but would suspect a quick Google of something like 'Oracle error code 997' should result in good information, since it is an Oracle error...
    Hope this helps.

  • Failed to retrieve data from the database.---- Error code:-2147482925

    Hi,
    I am  getting random error while generating a PDF report in Crystal Report XI R2.
    The error details are
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Impossibile r
    Error in File C:\WINDOWS\TEMP\{11834722-3B8E-4DFF-B7B6-B3D52DF904C1}.rpt:
    Failed to retrieve data from the database.---- Error code:-2147482925 Error code
    name:failed
    at com.crystaldecisions.sdk.occa.report.application.PrintOutputControlle
    r.export(Unknown Source)
    at ps_emxCrystalReportUtil_mxJPOZsBymAAAAAEAAAAD.getReport(ps_emxCrystal
    ReportUtil_mxJPOZsBymAAAAAEAAAAD.java:488)
    at ps_emxCrystalReportUtil_mxJPOZsBymAAAAAEAAAAD.ps_storeReportWithoutCh
    eckin(ps_emxCrystalReportUtil_mxJPOZsBymAAAAAEAAAAD.java:183)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    Please help me.
    Thanks in advance
    -Abhi

    Not enough info.
    The exception just states there were problems retrieving data from your data source.
    Sincerely,
    Ted Ueda

  • Extracting images from pdf

    I am trying to extract images from pdfs using pdfimages, but i am unable to retrieve all the images. By opening the pdfs using Acrobat Reader 9.0, I am able to select, those images retrieved by pdfimages, using the select tool but for other figures/images we need to try other options like print screen and then cut the relevant image. I was wondering why or when does the Acrobat treats the figures/images differently.

    Hi Dave,
    Thanks for the reply. My question was not regarding any non-Adobe product like pdfimages. It was in general the way Acrobat handles the images while creating pdfs.
    I wanted to know why can we select some of the images from the pdf using select tool and can not select others for which we need to print screen and cut. Is there anything in the eps files of included image that causes such effect?
    Thanks.

  • Retrieving data from form

    I have a form that I have created in Livecycle that will sit on our company's intranet. I want to be able to audit particular fields on the form (at the end of each month) by collecting the user's responses and presenting the responses in a spreadsheet. Is there a good example / tutorial available that runs through the process of achieving this?
    Thanks for any help.

    Data (XML) can be retrieved from PDF at server side using Form Data Integration Service -> Export Data opeartion.
    Or the data can be exported using Adobe Reader / Acrobat (provided the form should have the proper Usage Rights)
    Perhaps, if the users opens the form from Intranet, fills it and submits the data through email, any server program (Java/.Net) can manipulate the XML and collect the information from specific nodes as it requires.
    If you can determine a way, I would able to clarify the solution a bit deeper.
    Nith

  • How to retrieve data from MDM using java API

    hi experts
    Please explain me the step by step procedure
    how to retrieve data from MDM using java API
    and please tell me what are the
    important classes and packages in MDM Java API
    thanks
    ramu

    Hi Ramchandra,
    You can refer to following links
    MDM Java API-pdf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2d18d355-0601-0010-fdbb-d8b143420f49
    webinr of java API
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/89243c32-0601-0010-559d-80d5b0884d67
    Following Fourm Threads will also help.
    Java API
    Java API
    Re: usage of  java API ,
    Matching Record
    Need Java API for Matching Record
    Thanks and Regards,
    Shruti.
    Edited by: Shruti Shah on Jul 16, 2008 12:35 PM

  • How to retrieve elements from 3 different xml file in one url

    Hi all,
    Could anyone please let me how can we retrieve elements from 3 different xml file in one url?
    i just can only do it with one file only, any help would very appreciate.
    Thank in advance
    Jim

    Hi Philip
    Thanks for replying me.
    I tried on that way, In my mdx query i am using one slice attribute (i.e [Customer].[Gender].allmembers) in rows so getting error "The  Hierarchy already appears in Axis1".
    SELECT
    {[Measures].[Internet Sales Amount] } ON 0,
    NON EMPTY
    {[Customer].[Gender].allmembers } ON 1 -- Used
    FROM
    [Adventure Works]
    WHERE
    [Customer].[Gender].&[M]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].&[XL]
    ,[Customer].[Country].[All Customers]
    [Customer].[Gender].[All Customers]
    ,[Product].[Size Range].[(All)]
    ,[Customer].[Country].&[Australia]
    Can you provide alternate ways to get resolved.
    Thanks in advance

  • How can I copy text from PDF and include the source filename in the pasted selection?

    I'm a biologist and frequently cut-and-paste notes from PDFs of scientific articles.  I name all of the PDF articles with their PubMed ID, a short unique identifier (e.g. 19397482.pdf).  When I take notes, I will select a few sentences from the PDF and then paste them into a text editor for later reference. 
    Can anyone suggest a method or script that would allow me to paste the copied text with the Pubmed filename included in a single action?  I would want the pasted output it to look something like this, with the filename appended to the end:
    Of the transcripts that were significantly different, there was a greater number of transcripts that were down-regulated in the IVC embryos (380) than the number of transcripts that were up-regulated (208).  [20668257.pdf]
    This would really help me to properly cite information sources during the writing process.  I know there are bibliography managers that might be able to do something like this, but I prefer to read the PDF articles directly in Preview and select the text as I am reading. 
    Thanks very much for any suggestions / ideas.
    jjw

    To copy and paste in a single action:
    tell application "Preview" to activate
    tell application "System Events" to tell process "Preview"
        -- Get the PubMed ID:
        get the title of the front window
        set thePubMedID to word 1 of result
        -- Copy the selected text to the clipboard:
        keystroke "c" using {command down} -- ⌘C
        delay 0.25 -- adjust if necessary
        -- Add the PubMed ID to the contents of the clipboard:
        set theNotes to the clipboard
        set the clipboard to (theNotes & space & "[" & thePubMedID & ".pdf]")
    end tell
    tell application "Notational Velocity" to activate
    tell application "System Events"
        -- Paste the contents of the clipboard to the end of the Notational Velocity document
        key code 125 using command down -- ⌘↓
        keystroke return & return
        keystroke "v" using {command down} -- ⌘V
    end tell

  • Retrieve values from a HTML table !!!

    Hi.
    How can i retrieve values from a HTML table using javascript ?
    I´m trying to use the command "document.getElementsByTagName" without success.
    Thanks in advance.
    Eduardo

    Hi, Deepu.
    I´m still with trouble in retrieving the value in HTML.
    In debug the C_CELL_ID seems to be correctly updated but
    when using the command "document.getElementById" the value is always "null".
    I implemented in the method DATA_CELL the code :
      if i_x = 3 and i_y = 2.
      C_CELL_ID             = 'zs'.
      C_CELL_CONTENT = 10. 
      endif.
    And in HTML :
    var ztest = document.getElementById('zs');
    alert(ztest);
    Could you help me please.
    Many regards
    Eduardo S.
    Message was edited by: Eduardo   Silberberg

  • Retrieving values from Database in Excel Task Pane App

    So far,
    I created a website with a database on Azure, I then published my App to Azure. My problem is that I'm not sure how I retrieve values from the database (in SQL: SELECT * FROM EXAMPLE_TABLE WHERE date = str). If someone could provide me with sample code,
    that would be amazing! :D
    It would also be very helpful if anyone knew a method to automatically update the database using information from a xml stream on another website, once a day.
    Thank you!

    Hi,
    >> My problem is that I'm not sure how I retrieve values from the database
    You can use jquery ajax call to call your webserivce or REST API, which will query the database and return a json result.
    Sample:
    Apps for Office: Create a web service using the ASP.NET Web API
    >> It would also be very helpful if anyone knew a method to automatically update the database using information from a xml stream on another website
    For the database sync-up question, I suggest you posting them on the forums like SQL Server Forum.
    Thanks for your understanding.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Retrieving values from a table

    Hi all,
    I need to retrieve values from CSKS-KOSTL for values containing the pattern entered by the user. For example, if the user enters 1, need to retrieve all the KOSTL values starting with 1. But when i write a SELECT statement mentioning where kostl in '1', it is ignoring all the values like (0000001, 00001034, 0012334, and others). Only values starting with 1 is only retrieved as this is a character field and due to conversion routine, zeroes are prefixed while storing in the database.
    Could any one let me know how to retrieve the values from the database in this situation?

    If you want to use IN operator in your where clause then you should define a range variable(R_KOSTL) which refers to CSKS=KOSTL and populate the range as below
    R_KOSTL-SIGN = 'I'.
    R_KOSTL-OPTION = 'CP'.
    R_KOSTL-LOW = '1*'.
    APPEND R_KOSTL.
    and then write your select statement as .... WHERE kostl IN r_kostl.
    The approach suggested by Amit should also work fine.
    Thanks
    Kiran

Maybe you are looking for

  • A complaint: Apple can't seem to fix rbuffering problems!

    Hi Google the word "rebuffering" and you will get more hits about iTunes than anything else. Somthing's fishy. ITunes is my preferred music player. I use iTunes and when working, listening to internet radio through my PC. It occurs on this computer,

  • Reverse calculation of tax in FI entry

    Hi all, We have a input tax code for service tax whiich is used for both PO/MIRO and FI entries(FB60).....which is maintained at tax classification level.......now i want to know how the system calculates service tax in case of FB60 (FI)entries based

  • How do I change the SGA settings?

    I have Oracle 9i EE R2 installed on SuSE 8.2 Pro and my SGA settings seem incorrect. For example the Large Pool is only 16 Meg but I cannot increase it in the Enterprise Manager Console (logged in as SYS with SYSDBA rights in the manager). What text

  • PLZ PLZ help me, how do i add keywords to my website, so google search finds them...

    Hi everyone my website is www.oakleytrainingcentre.com how do add keywords to it, so for example if you type training my website comes up on google search, a guy at my work said you can do it using html codes? plz anyone help thanks

  • ORA-01017: invalid username/password; logon denied.  on linux

    Dear friends, i am install oracle 9i on Linux 9 and i create database manually by DBCA I can log into system as sys giving following command sys as sysdba i can select sys tables and views. but i use tns file it doesn't work sys@test as sysdba it gav