Convert numbers to words

Hello friends i am in search of a programme to convert the number in to words.If u have do post.

There is more than one language in the world - to convert a number to english is simple - he had not even said, in which language it should be transferred. Especially for large numbers this is important, f.e. an american billion and an european billion is a big difference, because an european billion is an american trillion; an european trillion is a billion american billions and so on.
greetings Marsian

Similar Messages

  • Convert Numbers to Words in Check Printing

    I am creating my own check template in SAPscript instead of a smartform simply because I did not want/find a driver program for a smartform.  I am a little confused on how to perform ABAP function calls in SAPscript and need some help.  I figure this ABAP code will do the job:
    DATA: wa_amt TYPE SPELL.
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
    AMOUNT = 100
    LANGUAGE = SY-LANGU
    IMPORTING
    IN_WORDS = it_amt
    EXCEPTIONS
    NOT_FOUND = 1
    TOO_LARGE = 2
    OTHERS = 3.
              o
                    +
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE 'A' NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    write wa_amt-WORD.
    But I think this code is meant for a smartform->program lines.  I want to convert the variable "REGUD-SNETT" from a number to a string of words.
    On a side note, how to do I set a break-point in my SAPscript so it enters debug mode after I post the check document in transaction code f-58?

                        ------------------ Amount in words -------------------------------------
    /                      &'*** 'SPELL-WORD& &REGUD-WAERS&&' and 'SPELL-DECIMAL(2)'/100 '&*** 
    /*                     Example for amount and decimal places in words
    /*                     &'*** 'SPELL-WORD& &REGUD-WAERS&&' and 'SPELL-DECWORD' Cents'& *** 
    /*                     Example for numbers in words   
    /*                     &SPELL-DIG06(6)&&SPELL-DIG05(6)&&SPELL-DIG04(6)&&SPELL-DIG03(6)&&SPELL-D 
    If you want to see the details Open F110_PRENUM_CHCK Script and check the window code for Amount in words (Description of window)
    If it is useful, please reward me with points.

  • Convert numbers into words

    i work on release 11i application and converts some reports to run with xml publisher
    i want to convert a total field that exist in po report to words it seems to convert number into words isthat possible i tried to make this in oracle reports and it run successfully but there is a problem when converting that report to run with xml publisher .
    any help will be approtiated.

    Use ap_amount_utilities_pkg.ap_convert_number
    E.g.
    SQL> select ap_amount_utilities_pkg.ap_convert_number(trunc(12345678)) from dual;
    AP_AMOUNT_UTILITIES_PKG.AP_CONVERT_NUMBER(TRUNC(12345678))
    Twelve million three hundred forty-five thousand six hundred seventy-eight
    Gareth

  • Convert number to words

    is there a way in numbers to convert numbers to words,
    for example"2300" to"two thousand and three hundred".

    Here is a spreadsheet I made to doe this:
    for Numbers 2.x:
    https://www.dropbox.com/s/naooc39djpvn2kk/ValueToText.numbers?dl=0
    for Numbers 3.x:
    https://www.dropbox.com/sh/wz5ejppkbd924mu/AADXJLJ3brHqJL9ts4iq_Kn1a?dl=0
    And a command line application with an Applescript:
    https://www.dropbox.com/s/ajlqxwqbaew5e4m/NumWriterWithScript.zip?dl=0
    See this thread for additional information:
    Return text value of a number

  • Sap Script - numbers to words without function module

    Moderator message - please use a meaningful subject in future.  I've changed it for you this time.  Also, moved to the correct forum
    Hi Friends,
                       In SAP Script how to convert numbers into  words with out using the function module in the driver program.
    examplae 21 kg  as twenty one kg.
    Please help me to solve this problem.
    Thanks in advance.
    Gayathri S
    Edited by: Matt on Nov 5, 2008 9:15 AM

    Hi,
      In the SAP Script, you can call the perform like below:
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    You can create a separate include or use an existing include related to your script and create the above <form> in that <prog>.
    The syntax for creating the form in the include is as below:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    Example:
    In your script,
    /: PERFORM GET_BARCODE IN PROGRAM ABCDE
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    And in the report ABCDE, create the form like this:
    REPORT ABCDE.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY 'PAGE'.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'NEXTPAGE'.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE OUT_PAR WITH KEY 'BARCODE'.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = '|'. "First page
    ELSE.
    OUT_PAR-VALUE = '||'. "Next page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Hope this helps.
    Regards,
    Suganya

  • Convert number to words - eg: 1 should come as "first"

    Hi,
    Is there any function module which would convert numbers to words in a particular format.
    for eg: if input is 2, output should be "second".
              if input is twenty, output should be "twentieth".
              and likewise...
    Thanks in advance,
    Vishnu

    Hi,
    Check this program.
    DATA : gv_words TYPE spell.
    DATA : n    TYPE i.
    DATA : BEGIN OF itab OCCURS 0,
            split(100),
           END OF itab.
    PARAMETERS : a TYPE i.
    CALL FUNCTION 'SPELL_AMOUNT'
      EXPORTING
        amount   = a
      IMPORTING
        in_words = gv_words.
    WRITE: gv_words-word.
    SPLIT gv_words-word AT space INTO TABLE itab.
    DESCRIBE TABLE itab LINES n.
    READ TABLE itab INDEX n.
    PERFORM change_num.
    CLEAR: gv_words.
    LOOP AT itab.
      IF sy-tabix EQ 1.
        CONCATENATE gv_words-word itab-split INTO gv_words-word.
      ELSE.
        CONCATENATE gv_words-word itab-split INTO gv_words-word
                                      SEPARATED BY space.
      ENDIF.
    ENDLOOP.
    WRITE: gv_words-word.
    *&      Form  change_num
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM change_num .
      IF itab-split CS 'ONE'.
        REPLACE 'ONE' IN itab-split WITH 'FIRST'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TWO'.
        REPLACE 'TWO' IN itab-split WITH 'SECOND'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'THREE'.
        REPLACE 'THREE' IN itab-split WITH 'THIRD'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'FOUR'.
        REPLACE 'FOUR' IN itab-split WITH 'FOURTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'FIVE'.
        REPLACE 'FIVE' IN itab-split WITH 'FIFTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'SIX'.
        REPLACE 'SIX' IN itab-split WITH 'SIXTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'SEVEN'.
        REPLACE 'SEVEN' IN itab-split WITH 'SEVENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'EIGHT'.
        REPLACE 'EIGHT' IN itab-split WITH 'EIGHTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'NINE'.
        REPLACE 'NINE' IN itab-split WITH 'NINTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TEN'.
        REPLACE 'TEN' IN itab-split WITH 'TENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'ELEVEN'.
        REPLACE 'ELEVEN' IN itab-split WITH 'ELEVENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TWELVE'.
        REPLACE 'TWELVE' IN itab-split WITH 'TWELFTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TEEN'.
        REPLACE 'TEEN' IN itab-split WITH 'TEENTH'.
        MODIFY itab INDEX n.
      ELSEIF itab-split CS 'TY'.
        REPLACE 'TY' IN itab-split WITH 'TIETH'.
        MODIFY itab INDEX n.
      ELSE. "IF itab-split CS 'D'.
        CONCATENATE itab-split 'TH' INTO itab-split.
        MODIFY itab INDEX n.
      ENDIF.
    ENDFORM.                    " change_num
    Your requirement is definitley solved with above program
    Regards,
    Bhupal

  • UFL to convert numbers to Turkish words

    Happy New Years to everyone and all that stuff.
    I have had a look through a couple posts that refer to Turkish characters and a am hoping my idea of
    creating a UFL that converts a number (passed in as a string) and then outputs the Turkish words for
    the number, is possible or atleast on the right track.
    This is my Turkish.properties file
    0=su0131fu0131r
    1=bir
    2=iki
    3=üç
    To get Eclipse to accept these characters I tried setting the encoding to UTF-8 but eclipse said
    UTF-8 conflicts with the encoding defined in the content type (ISO-8859-1)
    Do you with to set it anyways?
    Which I did and it seemed to keep the correct format for all that characters
    I then created my UFL to just take a str_Key which is the number and the resBundleName (Turkish)
    and I output the correct string. Just for testing I only worked with single digit numbers.
    I then made my UFL avaliable to all my reports and created a test report.
    The only problem was when previewing the output, it was no longer the correct UTF-8 characters
    but the incorrect ISO-8859-1 characters ( I assume its this encoding as I tested what happens if
    I save my properties file in that encoding and they seem the same messed up characters)
    I have tried setting the "Text file encoding" for the report (right click - properties) but that makes
    no difference.
    So my question is:
    Is it possible to create a UFL that will convert a number to Turkish words?
    If so, where am I going wrong, is there another encoding setting I need to set?
    Will I have future problems when trying to export to PDF?
    Does anyone else have another idea on how best to convert numbers to Turkish words
    if using a UFL and resource bundle is not the best idea?
    Sorry thats 4 questions not 1 but hey, its my first post of the new year
    Thanks all.

    Thanks Ted,
    I did a simple test (which I really should have done before) where I placed Turkish characters in a report
    formula and it displayed the correct characters, so that confirms what you said in that its not the report
    error, but rather on the java side of things.
    I will try fiddle with things and work out how to get the Java side of things accepting the Turkish characters.
    I might come back here to ask a few questions if I get stuck, so will leave this open as it still deals with the topic.
    Thanks again
    Darren
    Right Ted, thanks for that advice, I have managed to get correct characaters using the \u0131 format
    for example
    0=\u0131
    1=\u00D0
    2=\u00D0\u0131
    Now the big question is where can i find a list of all the Unicode escapes (\u....) for Turkish equivilant?
    Even though this is a real pain, to convert from English to Turkish to Unicode, would have thought
    there would be an easier why, but this does do the job.
    So I will continue looking for a list of all Unicode numbers (any body know if there is a app out there
    that can do it all for  me??)
    Edited by: Darren Jackson on Jan 6, 2009 1:36 PM

  • How to print numbers in words

    Hello friends,
    How can we print numbers in words like
    800 as Eight Hundred.
    TIA
    shekar.

    See here for some more solutions in english, french and spanish
    Converting a number into world In spanish Language

  • Internal link to eq. numbers from Word

    Uisng MathType in Word gives the possibility to make internal links to the numbered equations. Acrobat 9 pro converts them into internal links in the PDF file, while I am not able to do it with Acrobat 10 Pro or Acrobat XI (evaluation version). Is this my faut (how I can do it) or this feature is not existing in 10 and 11?

    Hello,
    Here are the two links to the Word and PDF files, if you want to try them.
    https://www.dropbox.com/s/7phni4xlvq4dxc9/work_Word_to_PDF.pdf
    https://www.dropbox.com/s/mfmr5j3lhvuc5pv/work_Word_to_PDF.docx
    Good luck!
    Le 15/12/2012 17:45, Bill@VT a écrit :
    >
          Re: Internal link to eq. numbers from Word
    created by Bill@VT <http://forums.adobe.com/people/Bill%40VT> in
    /Creating, Editing & Exporting PDFs/ - View the full discussion
    <http://forums.adobe.com/message/4923592#4923592

  • Regd: Converting Numbers

    Hi All,
    How to Conver the Numbers into Alphabetical words i.e. if the toal value of a bill is Rs.6078.30/- in words how to convert it into words. like Ruppess Six thousand seventy eight and thiry paise only.
    I tried with conversion from the last but while converting it gives an abap dump error.
    Pls Suggestions and Help will be much appreciated.
    Thanks & Regds.
    Ramesh.

    HI ramesh
    you can use the functional module
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
    AMOUNT = IS_HEADER-NETWR
    CURRENCY = IS_HEADER-WAERK
    LANGUAGE = SY-LANGU
    IMPORTING
    IN_WORDS = G_AMOUNT_WORDS
    EXCEPTIONS
    NOT_FOUND = 1
    TOO_LARGE = 2
    OTHERS = 3.
    <b>
    tyr this code it will help you</b>
    FUNCTION Z_FI_AMT_WRDS_CONVERT .
    ""Local interface:
    *" IMPORTING
    *" REFERENCE(AMT)
    *" EXPORTING
    *" REFERENCE(WORD) TYPE SPELL-WORD
    amt_c1 = amt.
    replace '.' with 'D' into amt_c1.
    SEARCH amt_c1 for 'D'.
    IF sy-subrc = 0.
    amt_wh1 = amt_c1+0(sy-fdpos).
    wrk_fdpos = sy-fdpos + 1.
    amt_dc1 = amt_c1+wrk_fdpos(2).
    ELSE.
    amt_wh1 = amt_c1.
    amt_dc1 = '00'.
    ENDIF.
    amtnmr = amt_wh1.
    amtdec = amt_dc1.
    CONCATENATE amtnmr amtdec INTO amount.
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
    amount = amount
    currency = 'INR'
    filler = ' '
    language = 'E'
    IMPORTING
    in_words = amountrs.
    *WRITE: / 'amount in figures: ' ,'Rs.-->', AMTNMR,'.',AMTDEC.
    *WRITE: / 'Amount in WORDS.: ' ,' Rs.' ,AMOUNTRS-WORD,
    *'AND' ,AMOUNTRS-DECWORD ,'Paisa Only'.
    *SKIP.
    CLEAR: unit1,digit1,unit2,digit2,unit3,digit3,unit4,digit4,word1,word2,
    word3,word4,word.
    digit1 = amtnmr+14.
    unit1 = amtnmr+13.
    digit2 = amtnmr+12.
    unit2 = '0'.
    digit3 = amtnmr+11.
    unit3 = amtnmr+10.
    digit4 = amtnmr+9.
    unit4 = amtnmr+8.
    digit5 = amtnmr+7.
    unit5 = amtnmr+6.
    digit6 = amtnmr+5.
    unit6 = '0'.
    digit7 = amtnmr+4.
    unit7 = amtnmr+3.
    digit8 = amtnmr+2.
    unit8 = amtnmr+1.
    digit9 = amtnmr.
    unit9 = '0'.
    *WRITE:/ 'UNIT9 = ' , UNIT9, 'DIGIT9 = ', DIGIT9.
    IF ( unit1 NE '0' ) OR ( digit1 NE '0' ).
    SELECT SINGLE wort INTO word1 FROM t015z WHERE einh = unit1
    AND ziff = digit1 AND spras = 'E'.
    word1 = t015z-wort.
    REPLACE ';' WITH '' INTO word1.
    *write: / word1.
    ENDIF.
    IF unit2 NE '0' OR digit2 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit2
    AND ziff = digit2 AND spras = 'E'.
    word2 = t015z-wort.
    REPLACE ';' WITH '' INTO word2.
    CONCATENATE word2 ' HUNDRED ' INTO word2.
    *REPLACE '(FEMININE)' WITH '' INTO WORD2.
    *write: / word2.
    ENDIF.
    IF unit3 NE '0' OR digit3 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit3
    AND ziff = digit3 AND spras = 'E'.
    word3 = t015z-wort .
    CONCATENATE word3 ' THOUSAND ' INTO word3.
    REPLACE ';' WITH '' INTO word3.
    *write: / word3.
    ENDIF.
    IF unit4 NE '0' OR digit4 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit4
    AND ziff = digit4 AND spras = 'E'.
    word4 = t015z-wort.
    REPLACE ';' WITH '' INTO word4.
    CONCATENATE word4 ' LAKH ' INTO word4.
    *WRITE: / WORD4.
    ENDIF.
    IF unit5 NE '0' OR digit5 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit5
    AND ziff = digit5 AND spras = 'E'.
    word5 = t015z-wort.
    REPLACE ';' WITH '' INTO word5.
    *write: / word5.
    ENDIF.
    IF unit6 NE '0' OR digit6 NE '0'.
    *UNIT6 = 'H'.
    SELECT SINGLE * FROM t015z WHERE einh = unit6
    AND ziff = digit6 AND spras = 'E'.
    word6 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word6.
    CONCATENATE word6 ' HUNDRED ' INTO word6.
    *REPLACE '(FEMININE)' WITH '' INTO WORD6.
    *write: / word6.
    ENDIF.
    IF unit7 NE '0' OR digit7 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit7
    AND ziff = digit7 AND spras = 'E'.
    word7 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word7.
    CONCATENATE word7 ' THOUSAND ' INTO word7.
    *write: / word7.
    ENDIF.
    IF unit8 NE '0' OR digit8 NE '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit8
    AND ziff = digit8 AND spras = 'E'.
    word8 = t015z-wort.
    REPLACE ';' WITH '' INTO word8.
    CONCATENATE word8 ' LAKHS ' INTO word8.
    *write: / word8.
    ENDIF.
    IF digit9 NE '0'.
    unit9 = '0'.
    SELECT SINGLE * FROM t015z WHERE einh = unit9
    AND ziff = digit9 AND spras = 'E'.
    word9 = t015z-wort.
    REPLACE ';' WITH ' ' INTO word9.
    *REPLACE '(FEMININE)' WITH ' ' INTO WORD9.
    CONCATENATE word9 ' HUNDRED ' INTO word9.
    ENDIF.
    CONCATENATE word9 word8 word7 word6 word5 ' CRORE ' INTO wordc
    SEPARATED BY space.
    *WRITE:/ 'Amount in Rs.------->'.
    IF amountrs-decword NE 'ZERO'.
    CONCATENATE ' AND PAISE ' amountrs-decword INTO dcwrd
    SEPARATED BY space.
    ENDIF.
    IF amtnmr > 9999999.
    *WRITE: / WORDC.
    *ENDIF.
    CONCATENATE 'RUPEES' wordc word4 word3 word2 word1 dcwrd 'ONLY'
    INTO word SEPARATED BY space.
    ELSE.
    CONCATENATE 'RUPEES'word4 word3 word2 word1 dcwrd 'ONLY'
    INTO word SEPARATED BY space.
    ENDIF.
    CLEAR dcwrd.
    *WRITE :/ WORD.
    *WRITE: 'AND' ,AMOUNTRS-DECWORD ,'Paise Only
    ENDFUNCTION.
    regards
    kishore
    Message was edited by: Harikishore Sreenivasulu

  • Convert multiple files (word docs) to multiple pdf

    Hi,
    Is there a script I can use in batch processing to convert about 1500 word documents into pdf? I know it's possible to convert multiple files into one pdf, but this is no good to me. Doing these conversions one by one is going to take forever!
    I've tried selecting a few documents at a time and then selecting "convert to pdf" from the right-click menu, but each one requires that you tell it where to save, and then opens the file when it is done.
    I need to convert Word files on a regular basis for work, and could really use a batch process for this with so many to do!
    I have Acrobat 7 Pro (version 7.1.0) on XP Pro SP 2 at work, and Acrobat 8 Pro (Version 8.1.2) on XP Pro SP 3 at home.
    If there is anyway it's possible to do this via a batch process I would really appreciate knowing how!!
    Apologies if this has been covered in another thread, I searched but couldn't find anything.
    Thanks in advance :)

    I have Acrobat 9 Pro. I can batch convert Word docs to PDFs by doing this:
    1. Open Acrobat Pro. Click File > Create PDF > Batch Create Multiple Files...
    2. A window will open prompting you to add files. Click Add Files > Add Files... OR Add Folders... If adding a folder, navigate to it, and click OK to add it to the list. You can also select a bunch of files and drag & drop them into the Add Files window.
    3. Once you have all the files listed that you want to convert, click OK. A new window called Output Options will open. In this window, select your preferred settings. For me, I want all the new PDFs to have the same filename and be in the same folder as the Word docs, so I choose these settings:
    4. Click OK, and then the batch process will begin running. You will see Word opening and closing. However, you won't have to click Save or anything. You can run it unattended. The process takes a little while, so I usually set up a batch to run, then go to lunch. Once finished, you should have all your new PDFs:
    Hope that helps someone!

  • How do I make the images look clear in PDF when converted from MS Word?

    Hi
    When I convert an MS Word-2010 file (which  contains  images also) to PDF through Acrobat X Pro, some images which are of bigger size do  not look very clear. Is there any workaround for this problem? Please  reply. It's quite urgent.
    Thanks

    In my experience (not necessarily the best), I find it best to rescale image copies with a graphics package before importing into WORD or whatever. Resize and then set the resolution to about 600 dpi before you import. The issue of using the clipboard appears to be an issue with WORD 2007 and such. I clipped a 300 dpi image into my technical word processor and then back to a graphic editor and all was preserved. I did the same with WORD 2007 and everything got messed up and the resultant image looked terrible. In fact, in WORD I got the same result if I imported the picture or clipped it from my graphics package. So it appears there are some strange issues with WORD itself.
    I am not trying to make any claims here, but just making an observation. The original image was at 300dpi. WORD also changed the 8-bit B&W photo to a 24-bit photo and reduced the number of pixels from 774 per width to 252 per width about a factor of 3 reduction in pixel resolution when clipped. When I expanded the image size in WORD, then the clip size increased also. When I do the same expansion of the image size in my word processor and then clip back to IrfanView, the original image is retained. My only conclusion is that OFFICE 2007 plays around with graphics and it does not seem to make any difference if you clip the image into WORD or import it, WORD still messes around with it. My guess this is just a general MS thing.
    Some folks a year or 2 ago got me to looking at nice sunsets in PPT. There were all sorts of issues with creating the PDF (AA8) from the PPT to get a reasonable result. The image obtained from the MS converter seemed to keep the picture nice. The images obtained from PDF Maker and printing to the Adobe PDF printer gave slightly different results and tended to break the image into smaller parts that often left little lines in the picture if you zoomed in. Folks were blaming this on Acrobat and yet using the same version of Acrobat with OFFICE 2003 the sunset came out great.
    This post is a bit jumbled, but the jist is that a lot of the graphics issues with WORD files seem to go back to WORD itself  and possibly with hooks MS put into OFFICE (OK, no proof on that and probably impossible to prove) to mess up Acrobat conversions. It would be interesting to see if the same result for the PDF is obtained from other converters, or if it is just something that OFFICE 2007 does "nicely" for Acrobat.
    Sorry for going off the deep end, but I just have a major annoyance with OFFICE starting with 2007, particularly for things like this. They couldn't get equations right either, just one more thing that they messed up. As far as I am concerned, a lot of the issues stem from MS and not Acrobat.
    Just for the heck of it, I ran the PPT picture through Open Office and used both the PDF export and the print to the Adobe PDF printer. Both retained the full image. However, when clipping from OOP to Irfanview, the resolution was 96dpi. The result seemed to be dependent on the zoom. So there are definitely some issues with copy and paste, at least with how some packages handle it.

  • I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out wh

    I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out what is going on? We have it set on auto renewal so I know its not that we haven't renewed this subscription, because we pay automatically.

    Hi olivias,
    It sounds like there may be some confusion on your system about what application should be associated with PDF files. You can reset filename associations by following the steps in these articles (depending on your operating system):
    How to change the default application for a file type | Macworld
    http://windows.microsoft.com/en-us/windows/change-default-programs#1TC=windows-7
    Please let us know if you have additional questions.
    Best,
    Sara

  • Printing Numbers In Words In Purchase Order

    Dear Friends,
    I want to display the total Purchase Order value in words eg- 300.00 as Three Hundred Only, Plz tell me how to do this. Also please tell me from where I will get the Terms & conditions field for PO, I have searched EKKO & EKPO but there is only Terms Key not the Terms & conditions.
    Bye,
    Nishant

    You can use the function module  
    report zrich_0002 .
    tables spell.
    data : t_spell like spell occurs 0 with header line.
    data : pamount like spell-number  value '1234510'.
    sy-title = 'SPELLING NUMBER'.
    perform spell_amount using pamount 'USD'.
    write: 'NUMBERS', t_spell-word, 'DECIMALS ', t_spell-decword.
    *       FORM SPELL_AMOUNT                                             *
    form spell_amount using pwrbtr pwaers.
      call function 'SPELL_AMOUNT'
           exporting
                amount    = pamount
                currency  = pwaers
                filler    = space
                language  = 'E'
           importing
                in_words  = t_spell
           exceptions
                not_found = 1
                too_large = 2
                others    = 3.
    endform.                               " SPELL_AMOUNT
    please reward points for helpful answers and mark post as solved if your problem is solved.  Thanks
    Regards,
    RIch Heilman

  • Converting pdf to Word 2003 in Acrobat 9 Pro

    I am using Acrobat 9 Pro.  I want to convert pdfs to Word 2003.  I have followed the instructions to export to Word, but when I get to the dialog box that selects the conversion method, I choose Flowing, which is recommended, and click OK, and I get an error message that my PDF document may be corrupt.  This happens with every pdf, whether it is a form downloaded from the internet or a text document I have created myself.  If I try to convert to RTF instead, it makes the "conversion", but in doing so, it creates a file containing an image that is not editable -- it does not create a plain text, editable file.
    Is the problem that I am using Word 2003?  Word 2003 is not on the list of file formats to which the pdf can be exported, but when I get to that screen, I choose Workshare PDF in Word (which I believe I read somewhere is the correct choice for conversion to Word 2003) as my selection and it gets me to the "conversion method" screen (which gets me to the corruption error message). Again, even if I choose rtf, I do not get an editable document.
    Any ideas???

    Something to try -
    Export the PDF to RTF.
    Open the RTF file with Word Pad.
    Save As (perhaps to a new filename -- 'something_bis.rtf')
    Open this file with MS Word.
    Not particularly surprising that the PDF you posted behaves poorly when 'worked' with Acrobat.
    It is an output of Ghostscript.
    Compounding the awkwardness of export is the fact that the PDF is not a Tagged PDF.
    A significant raison d'etre for Tagged PDF is to support export of PDF content to a word processor application.
    Be well...

Maybe you are looking for

  • Airport Express and network printer

    I purchased a new Airport Express with 802.11n and I can configure it properly with no issues with basic functionality. Connecting my HP Photosmart printer via USB cable also works fine. However, connecting it via ethernet connection is problematic.

  • Suspected overheating issues

    Hey, everybody. I've had my PB for about 3 years now, and lately it's been freezing in the middle of graphics- or memory-intensive activities, like playing video games and watching movies stored on my hard drive. I've double-checked for viruses, corr

  • Le fichier itunes library n'as pas pu etre enregistré. une erreur inconnue c'est produite (-54)

    "le fichier itunes library n'as pas pu etre enregistré. une erreur inconnue c'est produite (-54)" MBP i5 OSX10.8.4 iTunes 11.0.4 Pouvez vous m'aider? Can you help me?

  • Report on Payments From Customers on ABAP query

    Dear SAP Experts! A report is required to be made fro all the Payments of the Customers Document Type DZ Customer Number Sales District County code Payment amount: WRBTR. As we Know there are 2 tables for the Customers IN BSEG 1. BSIS 2. BSID Conditi

  • Can anyone help with Quicktime Pro audio prob?

    I've been trying to compress an audio/video file shot on my Cybershot so that I can upload on a contest website. Every time I copy into I-Movie, I have no audio (although it plays fine on my desktop). I was told I-Movie does not support muxed streami