Is it possible to convert a pdf file to a csv file?

I have many files that I need to convert for a client that are presently in .pdf format and the program that she has and wants to utilize only accepts .csv files- is there a way to do this? Do I have to convert all of the files to Excel and then convert to csv? Any assistance would be greatly appreciated.
Thanking you in advance for your time.
Sincerely yours,
Michelle

we use a third party program "able2extract" this works great for converting pdf to excel (then save as CSV)

Similar Messages

  • Is it possible to convert a PDF without uploading the file (i.e. by entering a URL)?

    My work-issued laptop doesn't allow me to upload files so it possible to convert a PDF file to Word bu just entering the URL of the document.I have a feeling this used to be feasible,
    Thanks

    Hi asdfg,
    You guess right! ExportPDF is an online service. Check out this 'Getting Started' guide as well.
    Hope this helps!
    Let us know we would love your feedback!
    Regards, Stacy

  • How do you convert a pdf file to a csv file?

    how do you convert a pdf file to a csv file?

    I just noticed that you added a few more details and it seems like the problem is that part of the conversion is not working. Would it be possible to share the file with me so that I can forward it to the team that owns that service? My email address is [email protected]
    Thanks!
    Pat

  • Purchased the adobe product to convert a pdf image to a RTF file but cannot figure out to accomplis

    Bought the adobe product to convert a pdf image to an RTF file but cannot figure out how to get it to work

    HI wjleshe,
    I've checked your account using the email address that you use here in the forums, but I don't see any order history. Did you perhaps sign up with a different email address? Or did you sign up via the Reader mobile app for iOS or Android? If you got your subscription via an in-app purchase, Adobe wouldn't have record of your order. And, you would need to contact the app store if there is a problem with your subscription.
    Best,
    Sara

  • Can I convert a PDF back into a PUB file?

    Can I convert a PDF back into a PUB file?

    Use Acrobat XI (Pro or Standard) to export the PDF to Word.
    Use Calibre to bring the Word file into ePub.
    Be well...

  • Flat File Upload as CSV File in BPS.

    Hi Friends,
    We have to upload CSV file to BPS and as of now we are able to upload tab spaced file as per the How to Document.
    Kindly can some body post the COMPLETE CODE changes for Uploading the CSV File in both LOAD and WEB Function Modules.
    For complete code points are guaranteed.

    Hi BI,
    please check the following thread.
    Load flat file to BPS - GUI issue
    I've implemented the file upload for CSV file. please note the changes i've made -
    Code for INIT function module :-
    FUNCTION Z_BPS_FILE_UPLOAD_INIT_CSV.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_AREA) TYPE  UPC_Y_AREA
    *"     VALUE(I_PLEVEL) TYPE  UPC_Y_PLEVEL OPTIONAL
    *"     VALUE(I_PACKAGE) TYPE  UPC_Y_PACKAGE OPTIONAL
    *"     VALUE(I_METHOD) TYPE  UPC_Y_METHOD OPTIONAL
    *"     VALUE(I_PARAM) TYPE  UPC_Y_PARAM OPTIONAL
    *"     REFERENCE(IT_EXITP) TYPE  UPF_YT_EXITP OPTIONAL
    *"     REFERENCE(ITO_CHASEL) TYPE  UPC_YTO_CHASEL OPTIONAL
    *"     REFERENCE(ITO_CHA) TYPE  UPC_YTO_CHA OPTIONAL
    *"     REFERENCE(ITO_KYF) TYPE  UPC_YTO_KYF OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(ETO_CHAS) TYPE  ANY TABLE
    *"     REFERENCE(ET_MESG) TYPE  UPC_YT_MESG
      DATA: lto_chas TYPE yto_chas,
      ls_chas     TYPE ys_chas,
      ls_exitp    TYPE upf_ys_exitp,
      ls_mesg     TYPE upc_ys_mesg,
      ls_chasel   TYPE upc_ys_chasel, "<<<INSERT
      ls_charng   TYPE upc_ys_charng. "<<<INSERT
      DATA: lt_filetab TYPE filetable,
      ls_filetab   TYPE file_table,
      l_file       TYPE string,
      l_separator  TYPE char01,
      l_action     TYPE i,
      l_count      TYPE i.
      FIELD-SYMBOLS: <f> TYPE ANY. "<<<INSERT
    Try to get file name from parameter
      READ TABLE it_exitp INTO ls_exitp WITH KEY parnm = 'FILENAME'.
      IF sy-subrc = 0.
        l_file = ls_exitp-chavl.
      ENDIF.
    If no file name is given, prompt user for it
      IF l_file IS INITIAL.
        CALL METHOD cl_gui_frontend_services=>file_open_dialog
          EXPORTING
            window_title            = 'Select Upload File'
            default_extension       = 'csv'
            file_filter             = 'Text Files (*.csv)'
          CHANGING
            file_table              = lt_filetab
            rc                      = l_count
            user_action             = l_action
          EXCEPTIONS
            file_open_dialog_failed = 1
            cntl_error              = 2
            OTHERS                  = 3.                        "#EC NOTEXT
        IF sy-subrc <> 0.
          CLEAR ls_mesg.
          MOVE-CORRESPONDING syst TO ls_mesg.
          APPEND ls_mesg TO et_mesg.
          EXIT.
        ENDIF.
        CALL METHOD cl_gui_cfw=>flush.
        LOOP AT lt_filetab INTO ls_filetab.
          l_file = ls_filetab.
        ENDLOOP.
        CHECK l_action = 0.
      ENDIF.
      l_separator = 'X'.
    Upload file from front-end (PC)
    File format is tab-delimited ASCII
    l_separator = ';' .
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = l_file
         filetype                = 'DAT'
         has_field_separator     = l_separator
        TABLES
          data_tab                = gt_file_csv
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
        CLEAR ls_mesg.
        MOVE-CORRESPONDING syst TO ls_mesg.
        APPEND ls_mesg TO et_mesg.
        EXIT.
      ENDIF.
    Create one dummy combination
    If we don't do this, the upload won't work since the second function
    will not be executed at all in case no transaction data exists so far.
    The combination must be a subset of the planning level!
      " >>> BEGIN INSERT
      CLEAR ls_chas.
      LOOP AT ito_chasel INTO ls_chasel.
        READ TABLE ls_chasel-t_charng INTO ls_charng INDEX 1.
        IF sy-subrc = 0.
          ASSIGN COMPONENT ls_chasel-chanm OF STRUCTURE ls_chas TO <f>.
          IF sy-subrc = 0.
            <f> = ls_charng-low.
          ENDIF.
        ENDIF.
      ENDLOOP.
      " <<< END INSERT
      COLLECT ls_chas INTO lto_chas.
      eto_chas = lto_chas.
    ENDFUNCTION.
    Include should contains following declarations-
    TYPES:      begin of itab_CSV,
                           text(255) type c,
                     end of itab_CSV.
    Global table to temporarily store loaded data.
    DATA: gt_file_CSV TYPE STANDARD TABLE OF itab_csv WITH DEFAULT
    KEY.
    Hope it will help you.
    Regards
    Tarun

  • Is it possible to convert several pdf files (into Excel or Word) at the same time ?

    I'd like to convert several pdf files (up to 500) into Excel at the same time. Is it possible ? How many files can Export PDF handle at the same time ?
    Thanks a lot for your answers,
    Sylvain

    Hi, Sylvain.
    This is a great idea! Currently, ExportPDF only can export 1 file at a time. (Acrobat can do a batch export using it's Action Wizard feature.)
    I added your idea to our idea list: http://forums.adobe.com/ideas/1499. If you'd like to see us add this feature, please go vote or add comment to this Idea on the idea list.
    Dave

  • How do i convert a pdf back to a word file using the free trial, it appears not to be working ..

    how do i convert from pdf to word using the trial package

    Hi paddyg73,
    Open the pdf in Acrobat and then go to 'File> Save As Other> Microsoft Word Document'
    Regards,
    Rave

  • Is it possible to convert a PDF to a high resolution image with ColdFusion?

    I would like to determine how to convert PDFs to high resolution images using ColdFusion.
    I'm running ColdFusion 9,0,0,251028 on CentOS 5.5 with Apache 2.2.3.
    The <cfpdf action = "thumbnail" ...> is all well and good for creating 72 dpi images of a PDF, but I need to be able to create 300 dpi images of a PDF.
    The PDFs in question have a much higher level of detail available than 72 dpi.
    The related scale attribute for the action="thumbnail" functionality has an accepted range of 1 to 100, but an example of what I need is something more like a value of 415.
    I should mention that I did try to use the jpgdpi attribute, and set it to 300 dpi . . . which produced a JPG that was indeed set to 300 dpi, but still had the same pixel dimensions as the 72 dpi image, so this did not affect the pdf to jpg conversion process in any way to make the image higher resolution.
    Alternatively, would another possibility be to use ColdFusion to alter the dimensions of the pdf to be 415% of its original dimensions in memory, and then output a 100% thumbnail of that altered PDF? Is this possible? I can not for the life of me work out how to alter the set dimensions of a PDF via ColdFusion, in order to determine if this would have an affect on the size of the thumbnail produced.
    Or more broadly, how would you use ColdFusion to convert a PDF to a (or a series of) high resolution images?
    Thanks in advance for any help on this.

    Another idea:
    Use a third party tool with CFEXECUTE if there's no other way. As you're on Linux you could easily run ghostscript on the command line to do it. gs lets you specify filetype as the device and also has options for resolution. For Windows there's gs as well (not sure though what it's command line capabilities are there) or tools like this: http://www.softinterface.com/Convert-PDF-To-Image/Convert-PDF-To-Tiff.htm
    Cheers
    Kai

  • Is it possible to run a script each time a .CSV file is updated?

    I am having trouble with a script I am trying to write, which is made up of two parts:
    A .CSV file generated by PHP/MySQL whenever an RSS feed is updated. The contents of the .CSV are overwritten each time the PHP runs.
    A DataMerge script, written in JavaScript.
    What I would like to do is run the DataMerge script each time the .CSV file is updated. Is this possible, perhaps using an Event Listener within the PHP to trigger the DataMerge script? Or am I approaching this in the wrong way? I'm grateful for any thoughts you might have. Thanks, F.H.

    I would use Rorohiko's APID ToolKit: http://www.rorohiko.com/wordpress/indesign-downloads/active-page-item-developer/
    It has fileChanged event that is sent after the observed external file has changed.
    sorry guys for "labouring the point", but I'm working on very advanced project - and I need to know what my tool can or can't do
    and in this case - using APID will break point 2.3 of EULA, right ? interaction with external datasource - without user action ?
    robin
    www.adobescripts.co.uk

  • Can I use OWB to convert a fix-delimitted file to a csv file?

    Hi! anyone tried this before? source file is in fixed-length file and target should be a csv file.
    thanks in advance,
    carlo
    OWB 10r2

    It's quite simple.
    1.Generate 2 file objects in the OWB design that represent the 2 files. One configured as fixed-length, the other as csv.
    2. Design an external table based on your input file object
    3. Design a mapping that maps from the external table into the 2nd (csv) file object
    4. Configure file names as desired
    5. Deploy external table, connector(s) and mapping to DB
    6. Execute the mapping
    There you go...
    Regards Holger

  • Using a lookup from one CSV file to another CSV file errors with a name clash

    Hi
    I have a master CSV file created by querying the AD. I need to populate the "Team" attribute by doing a lookup using Name against  the Name Column any of 6 CSVs,  someone has prepared for me .  The problem is the data is inconsistent
    in the 6 CSV files so Name can hold either the Name or Username i.e. SAmAccountName or LoginName
    Now my ps script works when the data is good. but I have around 30 exception cases whereby there is a mismatch .  To explain:
    is in this line ( see the big code block below) 
    $userObject = $nameAndTeamCsvData | Where-Object {$_.Name -eq $masterUserName}
    The $_.Name is using the top level masterCSVData Name but I was hoping that it was using the
    $nameAndTeamCSVData.Name  as in only within the scope of the Where-Object {} ..I guess I have misunderstood the syntax of what I had written.
    . A quick a dirty fix would be rename this column in all of the 4 spreadsheets or trying to fix the code.....
    # now update the empty team value for user object
    $csvMasterData | ForEach-Object `
    $masterName = $_.Name
    $masterUserName = $_.Username # to deal with exception cases
    #force scope to as the properties in the outer with the same name should be out of scope
    # lookup the Name to see if we can extract the user's Team
    $userObject = $nameAndTeamCsvData | Where-Object {$_.Name -eq $masterName }
    # deal with the situation where the name in the businesses spreadsheets is actually the Username (login name) in the master csv
    if ( $userObject -eq $null )
    # lookup the username (loginname) to see if we can extract the user's Team # !!!!error occurs here with the $_.Name !!!!!
    $userObject = $nameAndTeamCsvData | Where-Object {$_.Name -eq $masterUserName}
    if ( $userObject -eq $null )
    $_.Team = "UNKNOWN"
    else
    # replace the mastercsv.Team with the one we have looked up
    $_.Team = $userObject.Team
    else
    # Name matches so replace the mastercsv.Team with the one we have looked up
    $_.Team = $userObject.Team
    Daniel

    I see your challenge.  How about collecting the column names in an array and looking for the potential names?  Following my example before, try this:
    $dataColumns = $I | Get-Member -MemberType NoteProperty | Select-Object -ExpandProperty Name
    Now, you can loop through the names and collect the appropriate data.
    if ($dataColumns.Contains('Column1'))
        #add ForEach-Object { $_.Column1... }
    HTH
    ~fr3dd
    Hi I had to wait until Friday as I have someone  ( my boss) checking the business & team csv files against valid usernames and names. 
    # now update the empty team value for user object
    $nameAndTeamCsvData | ForEach-Object `
    $nt_name = $_.Name
    # $masterUserName = $_.Username # to deal with exception cases
    # lookup the Name to see if we can extract the username and mobile from the masterCSV
    $userObject = $null # Replace my original code: $csvMasterData | Where-Object {$_.SName -eq $nt_name } # with foreach code below
    $uo = $null
    foreach ($uo in $csvMasterData)
    if ($uo.SName -eq $nt_name)
    $userObject = $uo
    # ouch can't break out of this even though I found it so have to move on to the next
    }if ( $userObject -ne $null ){ #  Name matches so   replace the few propeerties in  mastercsv.Team with the ones we have looked up
             $_.Username =$userObject.SamAccountName
             $_.Mobile =$userObject.Mobile
    This does work but is clearly not very efficient since I don't think I can
    break or exit out of the foreach loop.  I am thinking I could quickly modify and add your code - my import is delayed as I am having a new property added to user class...  Let me know what you think.

  • File Content Conversion CSV File

    Hello All,
      I have a CSV file in the below format.
    a,b,c
    And my content conversion works.
    <1>a</1>
    <2>b</2>
    <3>c</3>
    Sometimes I get the records in the file as
    a,b,
    My conversion is failing, I mean it give me file as
    <1>a</1>
    <2>b</2>
    The last element <3></3> is not getting created.
    I tried to use lastFieldsOptional its not working.
    How can I achieve this.
    Regards,

    Okay Satish I will give a last try to explain you my issue..
    my CSV file is like this a,b,c,d
    my conversion works fine so the xml is after conversion
    <1>a</1>
    <2>b</2>
    <3>c</3>
    <4>d</4>
    Now few rows in the file may come as a,b,c, there is no d value it is blank.
    so I expect the conversion to be now
    <1>a</1>
    <2>b</2>
    <3>c</3>
    <4></4>
    like this, but what I am getting now is after conversion...
    <1>a</1>
    <2>b</2>
    <3>c</3>
    tag <4></4>  is not getting created and my Outbound expects the XML to be in that format, so for this I tried to use lastfieldsoptional so that empty <4></4> tag is created but no luck...
    This is what I want to do..
    In the process even though <4></4> is not created File Content Conversion is successful and so Adapter Monitoring is showing success and my mapping fails.
    Regards,

  • Merging Several Csv Files in one Csv file

    Hi,
    I have many csv file which do have same structure. I download those data from an external source like Yahoo bu it does not have headers. They jave just 6 columns of data Would you know how I can aggregate them in one file while including a column for each
    set of imported csv file having its own file name, such as YHOO or WMT just next to the 6th column?
    So, I have 2 questions: 
    If ı can add them all in a file and if ı can add the seventh column (the name of each csv file to identify the stock in that combined file.)
    Thank you so much for your support

    Hi Everybody,
    Thanks for the help. I have run the first code below:
    $files  = "d:\temp\file1.csv","d:\temp\file2.csv"
    $output = "d:\temp\output.csv"
    foreach ($file in $files) {
     $contents = get-content $file
     foreach ($content in $contents) {
      $filename = split-path $file -leaf # get filename
      $a = $filename + ";" + $content | out-file $output -append
    However, my goal  is to list companies in a tabular fashion (like file 1 should be listed in the first 6 columns of the file and second file is from 7-12 and third file 13-18 and so on).
    So my goal is not to append all files below each other but next to each other.
    Would you help me regarding that?
    Kind Regards, 

  • Converting a  PDF document to a BIAR file

    I have a pdf file which exists on my local machine and I need to convert that into a BIAR file.
    I know that you can create a BIAR file from a document which exists in the CMS but is there a way where you can create a BIAR file when that document does not exist in a CMS.
    Thanks in advance
    Mohan Koduru

    Hi Mohan,
    A BIAR file is essentially a ZIP file with an XML metadata file and the actual repository object within in.  There is no way that I know of to create a BIAR file out of a PDF file on the disk because it doesn't contain any metadata info within it.  You may as well use the ZIP SDK to just zip up the PDF if you aren't concerned with the properties that would be stored with it within the BOE environment.
    Maybe we are misinterpretting your question but I too do not see a point in creating a BIAR file from a PDF disk file.  BIAR are specifically designed to extract Info Objects out of the BOE system and put them in an archive to be archived or transported.
    Jb

Maybe you are looking for