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.

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

  • 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

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

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

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

  • Exporting acrobat fields into Word 2007

    Hi all,
    I have a client who had an adobe document on his website which user fill out and then submit using Outlook. He now wants to create a form letter (in Word 2007) by using the data that the users submitted on the acrobat document.
    In a nutshell, I have to export the adobe fields into Word. Being a total novice, I don't even know if this is possible?
    I am thinking along the lines of some sort of a mail merge.
    Thanks in advance.

    Have you exported in the various formats and examined the created file?
    FDF and XFDF are special formats for Acrobat forms.
    Text is a text with tab delimited. The field names comprise the first row and each form's data is then listed under the first row in the same order as the field names in row one.

  • Dynamic PDF - export into Word Doc

    Well... signed up to IX-PRO for a year.,
    1. Now I cannot open in PRO the Dynamic PDF...?
        in READER it opens well
    2. Conform website suggestion I signed up & installed LC Designer
        (advised to upgrade for Exporting my dynamic pdf test doc. to Word)
    3. I also installed  as well as accessed through FORM central
    End result: "FormsCentral does not support importing dynamic PDF forms created by LiveCycle Designer".
    + PRO does still not open my dynamic PDF - so only my READER opens the doc / the content.- (as did the free version...)
    Question
    a. How to open a dynamic PDF in PRO (so a PDF doc. that is used as template and includes Macro's )
    b. How to convert / export such dynamic PDF's - into WORD ?
    Thnx in advance

    Hi George
    Thnx  for your prompt input.
    FYI:
    As we edit / review project doc's with multiple (ca. 4 to 10) authors - I want to learn how to export:
    fixed text, text box content, and graphics - from received dynamic pdf  forms>  into MS Word, o boost elaborations efficiency
    I took a Adobe Pro version - imagining that finally I could avoid the cutting and pasting..., a practice already possible with the free Reader version. :-)
    FEEDBACK
    I tried your suggestion to save the doc as a regular PDF, however once again the same outcome:
    the DOC content is not reproduced = one page with the text as in image above..
    Opening the doc. in LC explains most likely:
    1. Aobe LiveCycle Designer - Pop's up: [Cannot find "....\ Schema\schema.xsd*. Check that the path is correct ] {??"why""??}
    OK
    2. Aobe LiveCycle Designer - Pop's up: [Some usage rights have been applied to the form you want to open
    Opening the form will remove the usage rights.. Do you want to continue]
    YES
    3. >> Doc Opens - Design View - but same outcome the DOC content is not reproduced
    = one page with the text as in image above....
    --- >
    = We would be happy if somebody (preferably staff from Adobe) could check the doc.
    I will create (asap..) a test doc. and e-mail them the link.
    Any suggestion where to address to ?
    Best regards
    Johannes

Maybe you are looking for

  • Prevent auto creation of service entry sheet

    Dear friends, I am using maint plan for creating service entry sheets automatically. I am using framework order where I give the validity period. Now when I try to generate service entry sheets through the plans after the end of validity period given

  • I am desperate!! slow choppy network speeds (not actual inability to cnnct)

    I have a 13" macbook air that has the following problem: I can connect to wifi networks (including at home WPA and also tried WPA2 settings) but even though I may get proper speed at first, I soon lose that and it becomes much slower and choppy (if I

  • Project controlling with Solution Manager

    Dear SolMan community, we just finalized in a SAP Retail implementation project the planning for the release phase. Input for the planning activities were numerous functions that were already created in SolMan. We decided to use Excel to conduct a bo

  • Cash Sale - Cash Balance Update.

    Hi, While doing the Cash Sale, Cash Balance is not getting updated. Before posting this I have gone thru the forum and made some changes accordingly(in OV77).But even then Cash Acct in not getting updated. In one of the answers it is mentioned to giv

  • How do you turn on location services for the Photos app?

    I reset my location services and I need to reactivate the location services for those apps I want to use this function.  I have turned on location services for all other apps, including CAMERA, but I cannot figure out how to turn it back on for PHOTO