Exporting music into word

I am having trouble exporting music into word.  Part of it comes in Ok and the rest is garbled.

Hi Bonnie,
Are you using your ExportPDF subscription for this task?
If so try this:
OCR
Let me know if that helps!
Kind regards, Stacy

Similar Messages

  • Exporting smartform into word document

    how to export smartform into word document . i tried converting into pdf and then download but it showing run time error that conversion is not possible and also it tells that otf command // missing. is it not possible to export directly to word document instead of pdf.plz give clear description of what to be done exactly with sample codes.
    marks will be rewarded.

    Hi Lavanya,
    Converting the output from Spool to Word is possible.
    Here is the sample code.
    I cut pasted a code from a link i got in the website, see if it helps.
    ZSPOOL2WORD
    Genera un fichero Word a partir de una orden de spool
    MÓDULO : FI *
    TIPO : Listado *
    TITULO : Generación fichero Word
    DESCRIPCION : Genera un fichero Word a partir de una orden de spool
    AUTOR: Andres Picazo FECHA: 24/03/2003 *
    MODIFICACIONES *
    FECHA NOMBRE DESCRIPCION *
    REPORT ZSPOOL2WORD
    NO STANDARD PAGE HEADING
    LINE-COUNT 065
    LINE-SIZE 080.
    INCLUDE OLE2INCL.
    *----TABLAS/ESTRUCTURAS--
    *----TABLAS INTERNAS--
    DATA I_BUFFER(132) OCCURS 1000000 WITH HEADER LINE.
    *----VARIABLES--
    *----PARAMETER/SELECT-OPTIONS EN PANTALLA--
    SELECTION-SCREEN BEGIN OF BLOCK BLK_PAR WITH FRAME TITLE TEXT-SEL. "Pará
    PARAMETERS: P_SPOOL LIKE TSP01-RQIDENT OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK BLK_PAR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_WOR WITH FRAME TITLE TEXT-WOR.
    PARAMETERS: P_WORD AS CHECKBOX DEFAULT 'X'.
    PARAMETERS: P_FWOR LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.DOC'.
    PARAMETERS: P_PLAN LIKE RLGRAP-FILENAME
    DEFAULT 'D:DATOSAPISMAYORPLANTILLA LIBRO MAYOR.DOC'.
    SELECTION-SCREEN END OF BLOCK BLK_WOR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_FIC WITH FRAME TITLE TEXT-FIC.
    PARAMETERS: P_CTXT AS CHECKBOX DEFAULT ''.
    PARAMETERS: P_FTXT LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.TXT'.
    SELECTION-SCREEN END OF BLOCK BLK_FIC.
    LOGICA DEL PROGRAMA
    INITIALIZATION
    INITIALIZATION.
    START-OF-SELECTION.
    START-OF-SELECTION.
    PERFORM LEER_SPOOL.
    IF NOT P_CTXT IS INITIAL.
    PERFORM GRABA_FICHERO.
    ENDIF.
    IF NOT P_WORD IS INITIAL.
    PERFORM LANZA_WORD.
    ENDIF.
    FORMS ADICIONALES
    *& Form LEER_SPOOL
    Lee la orden de spool en el buffer
    FORM LEER_SPOOL.
    CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
    EXPORTING
    RQIDENT = P_SPOOL
    FIRST_LINE = 1
    LAST_LINE = 9999999
    TABLES
    BUFFER = I_BUFFER
    EXCEPTIONS
    NO_SUCH_JOB = 1
    NOT_ABAP_LIST = 2
    JOB_CONTAINS_NO_DATA = 3
    SELECTION_EMPTY = 4
    NO_PERMISSION = 5
    CAN_NOT_ACCESS = 6
    READ_ERROR = 7
    OTHERS = 8.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al leer la orden de spool' P_SPOOL.
    ENDIF.
    ENDFORM. " LEER_SPOOL
    *& Form GRABA_FICHERO
    Graba el contenido del spool a fichero de texto.
    FORM GRABA_FICHERO.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = ' '
    CODEPAGE = ' '
    FILENAME = P_FTXT
    FILETYPE = 'ASC'
    MODE = ' '
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    COL_SELECT = ' '
    COL_SELECTMASK = ' '
    NO_AUTH_CHECK = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = I_BUFFER
    FIELDNAMES =
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_WRITE_ERROR = 2
    INVALID_FILESIZE = 3
    INVALID_TABLE_WIDTH = 4
    INVALID_TYPE = 5
    NO_BATCH = 6
    UNKNOWN_ERROR = 7
    GUI_REFUSE_FILETRANSFER = 8
    OTHERS = 9.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al grabar el fichero' P_FTXT.
    ENDIF.
    ENDFORM. " GRABA_FICHERO
    *& Form LANZA_WORD
    Abre la plantilla de Word y pega el contenido del portapapeles.
    FORM LANZA_WORD.
    DATA: WORDAPP TYPE OLE2_OBJECT,
    DOCUMENT TYPE OLE2_OBJECT,
    SELECTION TYPE OLE2_OBJECT.
    Copia el contenido del buffer en el portapeles
    CALL FUNCTION 'CLPB_EXPORT'
    TABLES
    DATA_TAB = I_BUFFER
    EXCEPTIONS
    CLPB_ERROR = 1
    OTHERS = 2.
    Abre Word
    CREATE OBJECT WORDAPP 'word.application'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'No se ha podido abrir el Word'.
    ENDIF.
    Lo pone en visible
    SET PROPERTY OF WORDAPP 'Visible' = 1.
    Cogemes el objeto documento
    CALL METHOD OF WORDAPP 'Documents' = DOCUMENT.
    Abrimos el fichero plantilla
    IF P_PLAN IS INITIAL.
    CALL METHOD OF DOCUMENT 'Add'.
    ELSE.
    CALL METHOD OF DOCUMENT 'Open' EXPORTING #1 = P_PLAN.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al leer el fichero plantilla'.
    ENDIF.
    ENDIF.
    Coge el objeto selección
    CALL METHOD OF WORDAPP 'Selection' = SELECTION.
    Pega el contenido del portapapeles
    CALL METHOD OF SELECTION 'Paste'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al pegar contenido del portapapeles'.
    ENDIF.
    Graba el fichero
    CALL METHOD OF WORDAPP 'ActiveDocument' = DOCUMENT.
    CALL METHOD OF DOCUMENT 'SaveAs' EXPORTING #1 = P_FWOR.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al grabar el nuevo documento'.
    ENDIF.
    Cierra Word
    CALL METHOD OF WORDAPP 'Quit'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al cerrar Word'.
    ENDIF.
    ENDFORM. " LANZA_WORD
    check this also.................
    By using FM RSPO_RETURN_ABAP_SPOOLJOB you will be able to get the ASCII text of your Spool, which you can download to your local HD and open with M$ Word.
    Check the function module
    CALL FUNCTION 'RSPO_DOWNLOAD_SPOOLJOB'
         EXPORTING
              id    = p_spool
              fname = p_file.
    Give the file extn as .DOC. it will downlaod it as a
    Word doc.But I fear you wont get the table formats and
    all.
    ~~Guduri

  • Export comments into word

    I'm trying to export my sticky notes comments into word and I
    get prompted that I need word 2002 or later installed on your
    system. I have word 2007 installed. Why does this prompt appear? I
    need to find out how to export my comments to word. Any help is
    much appreciated.
    Thanks,
    Brian

    Thanks for the additional helpful information, Fruhulda. I didn't realize that they had removed important features in the so-called upgrade.
    It sounds as if Pages 5 will work for fast and easy tasks, but Pages 09 will be good to have for heavy-duty work. I guess this explains why Pages 5 didn't overwrite Pages 09 on installation. They are really two different apps now.

  • Keynote does not export music into a Quicktime Movie

    I created a 75 frame Keynote 08 presentation with looped music and exported it into a Quicktime movie, but the music does not play. The audio does appear in the Quicktime "Properties" but does not play. Help!

    My apologies! I went about a VERY lengthy search and just did not find anything to my satisfaction other than people stating that they had the same problem. Just search for phrases like 'Keynote music export QuickTime' and I guarantee you'll find a lot of results. My best bet was to export the movie (went fine) and then to import the movie into iMovie, add the soundtrack and re-export. My main problem was figuring out the best format from iMovie. Choosing the wrong one gives absolutely horrible movie quality compared to the Keynote export.
    The frustrating thing is that you can't tell the movie quality until a, oh, 15-30min rendering of your movie depending on the size and trying that with several setting arrangements adds up to too much time for me. For my situation, I was able to just play the movie and play a cd on a boombox in the background. It was not my desired choice but after hours and hours of trying I gave up...
    Sorry I'm not more helpful. It just looks like this is a bug Apple needs to fix.
    -John

  • Export calender into word or else?

    Hi,
    can anyone tell me if I can export my iCal calender into word or sth else? In order to make a printout?
    Thanks for answering!

    There isn't a way to export as text file, or doc file or similar.
    Perhaps one workaround would be to choose the calendar display you want, and then take a screen capture shot (command-control-shift 4), select the portion of your calendar that you want with cross-hairs, and then just paste it into a word doc as a picture.

  • Exporting pdf into Word doc

    I have exported a pdf into a Word doc, but when trying to open Word doc, file will not open. Any suggestions?

    Hi SIMETRE
    Try Converting the file again....
    Check your Word program

  • Can't export pages into word

    I am getting an error message The file “/Users/kafia2008/Library/Caches/Cleanup At Startup/com.apple.iWork.Pages_186_TEMP_376522632_4  when i try to export a pages document into word

    What's the rest of the message?

  • Export music from itunes to card reader for voyager mobile phone

    i just bought a voyager mobile phone from verizon. was told to export music from itunes onto a memory card. but the card reader doesnt show when i open itunes. how can i export music into my voyager phone from itunes? can i do it directly or do i need a card reader? if so,how do i it?

    Only the iPod range and the iTunes enabled phones from Motorola are compatible with iTunes for Windows and with songs from the iTunes Music Store. If you have any standard iTunes songs that are DRM (Digital Rights Management) copy protected you won't be able to use them on a Non Apple device. Is the Phone or the Memory card showing as a mounted device on your desktop? Access the phone/card through Finder then drag and from what you wanted onto it from your iTunes Music folder.

  • I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get into Word?

    I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get them imported into Word?

    Hi,
    I checked your account,your Export PDF subscription is in 'Pending' status.
    Once it gets confirmed you will be able to use it.
    Please let us know if you require further assistance.
    Regards,
    Florence

  • What can I do to speed up uploading a pdf file that needs to be exported into Word?

    I have been trying to upload a 1 page pdf file for exportation into Word for the last couple of days. Every time I try to upload it into Adobe ExportPDF, the file just shows that it is still uploading and it does this for several hours (isn't finished after 12 hours).
    I uploaded a much larger pdf document earlier this week (over 64 pages) for editing and it uploaded that book fairly quickly and converted it into Word without any problems.
    Any suggestions on what the problem might be or what I could do to speed things up? I only need to be able to edit a couple of words near the top of the page.

    How large is the file? The size in pages is not important, what matters is the size in megabytes and your broadband speed.

  • I can't export a PDF scanned file into WORD, help please.

    I can't export a PDF scanned file into Word, please help.

    Hi solarpowerprincess,
    Are you having trouble signing in to your subscription, or having trouble converting files once you're signed in. If you can't sign in, it could be that your subscription just hasn't finished processing yet. Please let us know if you're unable to sign in and we'll go from there.
    Best,
    Sara

  • I purchased the package that allows you to export PDF files into Word files.  Whenever I try to export the PDF into a Word file it never works...  I don't know if there's something key that I'm missing but I'm pretty bummed I paid for it and it won't work

    I purchased the package that allows you to export PDF files into Word files.  Whenever I try to export the PDF into a Word file it never works...  I don't know if there's something key that I'm missing but I'm pretty bummed I paid for it and it won't work.  Can anybody help me out?

    Hello,
    I have paid for this service for a year and it never worked on my computer.  I just renewed and it finally converted the file but it will not let me edit it.  I join you in being bummed.  Either I get help with this or I am asking for a 2 year refund.   My intention was to be able to edit a pdf in MS Word. 
    pfierrorob

  • Images exported from iPhoto 6 cannot be inserted into Word:Mac OSX document

    I recently bought a new camera (Nikon D90). I have no problem importing the photos into iPhoto 6 as jpgs, but I am unable to insert the photos (in jpg format) into Word OSX documents. I get a message that says "This application cannot open this file. This file is an unsupported graphic format or may be damaged. Try opening the graphic in another application". I never had this problem with any of the other 3 cameras I have used (Sony and Canon). Has anyone experienced this problem?

    Brad
    What settings did you use in the Export Dialogue?
    When you go File -> Export you get a tabbed box with various options. In the File Export tab you can choose to scale the pics, or keep them the same size, change or retain the format.
    Regards
    TD

  • Can you edit a pdf document without exporting it into a word document?

    Can you edit a pdf document without exporting it into a word document?

    Hi sylvias99766822,
    You can if you have Acrobat. If you don't, feel free to give it a try. You can download a 30-day trial from http://www.adobe.com/products/acrobat.html.
    Keep in mind, though, that Acrobat isn't intended to be a word processor. So, while you can make adjustments to text and graphics, if you need to do a major overhaul of the text in the document, it's best to go back to the source document and edit the content there.
    Best,
    Sara

  • Exporting other than english language pdf's into word

    Hello,
    I have pdf's that are in languages other than english e.g. german or sanskrit.
    I have Acrobat X1 Pro which I used to export the pdf's into word. The word documents really look nice but most of the words come up as garbage and random symbols. Is there a way to fix this problem?

    Acrobat XI does not support Sanskrit, but you can specify the document language as German.
    When exporting the file, on the Windows "Save As" dialog, select the "Settings" button. Then slect the "Set Language" button and set the language in the next dialog.

Maybe you are looking for

  • Two 24" LED Cinema Displays from 2009 Mac Mini?

    I have been using two 24 inch Samsung's with a Mac mini for about 6 months and it's been great until one of the monitors failed me last week. After some research I purchased a new 24" LED ACD and it's a beautiful monitor that blows away my other 24"

  • What data is used for the link title in osssearchresults.aspx

    In our OOTB SharePoint installation we have a search results page in a collaboration site that displays Word documents. Each word document has a Title property, however the text used for the hyperlink to the document in the search results page does n

  • Archive process number

    In my DB every redo log group have 3 member and i set the log_archive_max_processes=3. when log switch trigger then the archive process start working,it can let one process to read one redo member and add efficient.... right?? if every group only hav

  • Dynamic selections with FBL1N transaction

    Hello, I want to add new fields to do dynamic selections using FBL1N transaction. I have "House bank" field in the company code fields, but I want this field in the document fields. How could I do it? Thank you very much

  • How to install OneNote on OSX 10.9

    We just recently went to Office 2013/365 on the PC side, and am now trying to get OneNote installed along Office 2011 on the Mac side.  Only problem is our Macs are still 10.9, and when you try to install OneNote from the app store, it says it requir