ICal print format

I've used Now Up-to-date for over ten years. I would like to switch to iCal, totally, except I can't make it print the way I want it to so it will fit into my planner. I want to see a month, printed landscape on an 8.5x11 sheet, split down the center to be punched with 7 holes to go into my planner. If I do this now, I split Thursday in half (a real pain).
Thanks,
DL

Hi macshine and all others that wanted to figure this one out,
This one plagued me as well and through 15 different threads giving old info that is no longer relevant I finally figued it out.
You need to create an 8.5x8.5 paper size.  From Safari or most any program (except calendar) select print.  In the printer options there is a pull down menu called "paper size".  It's most likely already selected "US Leter".  Select "Mange Custom Sizes" and create a new paper size.  Call it whatever you want.  Make the paper size 8.5in x 8.5in and hit okay.
What you are doing is tricking the progam with this option.  If you made a 8.5 in wide by 11 tall paper size it would still set it up in landscape.  When you select your new square option it throws it off and forces everything into a 8.5 inch wide page.  Now go back to the paper size pull down menu and select US letter.  Don't know why, but it now lays eveything out in portrait mode.  You will need to select your square paper size first and then the US letter size everytime you want to print in portrait.
I hope this helps.

Similar Messages

  • ICal printing/format issues

    I can not get my iCal to print entirely on a single page (standard 8.5 x 11) OR in color.  Under normal circumstances I would say it's my printer...but I have no issues at all printing my MS Office Calendar or anything else.  Is anyone else having this issue?  Any help would be REALLY appreciated.  Thanks!

    Where do I start - it was an easy but long winded process. Firstly when you plug your iPod in and start iTunes you have the option of just pressing "sync" at the bottom. Each time you sync this way the colours on the iPod remain the same not necessarily the same as in iCal but the same on the iPod. With the iPod plugged in go to the "info" tab and right down the bottom choose "Replace information on this iPod" and click the "calendars" checkbox. You will then see "Apply" on the bottom right. Click this and the iPod will just sync from your calendar. Each time you do this the colours change on the iPod. Repeat this process as many times as you wish until you get the colours the way you want them. When you have done this go to iCal and highlight the calendar you want to change the colour for then right click or hold ctrl and left click (if you have a single button mouse). Then "get info". In this tab you will see the colour for the calendar. Click to change it to the same colour as on your iPod. Do this for each of your calendars. Next time you sync your iPod on the main summary screen the colours should stay the same. Painful, I know but a work around non the less.

  • Printing formats ical 2

    It seems there is general agreement that ical 2.x is a step backward from ical 1.x, at least as far as printing formatting goes. I've searched and so far no one has posted a good work around.
    Has anyone running Tiger tried to reinstall ical 1.x ?
    G4, iMac, ipod   Mac OS X (10.4.6)  

    You can select from 3 sizes, but all too small to look from a distance for me.
    In addition, the letters wouldn't be coloured. Just coloured tabs.
    I wish I could use iCal 1.5.5 on my PowerBook.
    PowerBook G4 17"
      Mac OS X (10.4.4)  

  • ICal printing assistance with irregular weekly calendar

    I use iCal for my calendar app and am looking for printing assistance.
    My work week is Tuesday through Saturday from 9AM to 6PM each day.  What I am trying to do is find an application that will allow me to print each week on an 8 1/2 x 11 sheet of paper where Tuesday through Saturday are shown across the top of the page and the hours from 9AM to 6PM are broken out in 1/2 hour chunks down the left side of the page.  I do not want Sunday or Monday to show on the page as they would consume page real estate.  I would like to print my entire year in advance and use this as a hard copy calendar that will show existing regular appointments while also providing space for me to add new appointments as they come in.
    I can't seem to get iCal to print this way.  I am looking for either a new calendar app that will import iCal data and support this print format or a printing app that can work with iCal data that supports the print format that I need.
    Any suggestions out there?  I've started looking at a few apps but this isn't the type of functionality that is listed in the program description.
    Greg

    hi gregbr
    I wanted to do a similar thing as I like to see my calendars on my office wall at a glance
    i have an imac and an ipad, i installed an app on the ipad as i sync the calendars on the computer and ipad, this one is called Calprint. i can print these calendars easily so this may be an option. i would definitely ask the app developers if an app is capable of doing what you want though before you get it. hope have  been of some help and hope you find what you are looking for

  • How to set the default print format for the report

    Hi,
    In ALV report , i want to defalut specific print format and printer for background processing .
    Any clues!!!!!!!!!
    Regards
    Swatantra

    Hi
    Please check below code:
    DATA: PRIPAR TYPE PRI_PARAMS,
          ARCPAR TYPE ARC_PARAMS,
          LAY    TYPE PRI_PARAMS-PAART,
          LINES  TYPE PRI_PARAMS-LINCT,
          ROWS   TYPE PRI_PARAMS-LINSZ.
    DATA: val(1).
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        destination            = 'LOCL'   " <--- Printer Name
        no_dialog              = 'X'
        immediately            = ' '
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc <> 0.
    *     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *** Specifying the page formats
        pripar-linct = 65.
        pripar-linsz = 190.
        pripar-paart = 'X_65_132'.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
        in_archive_parameters  = arcpar
        in_parameters          = pripar
        no_dialog              = 'X'
    *      list_name              = 'Testing Purpose Only' "l_list
      IMPORTING
        out_archive_parameters = arcpar
        out_parameters         = pripar
        valid                  = val
      EXCEPTIONS
        archive_info_not_found = 1
        invalid_print_params   = 2
        invalid_archive_params = 3
        OTHERS                 = 4.
    IF sy-subrc EQ 0.
      NEW-PAGE PRINT ON
      NEW-SECTION
      PARAMETERS pripar
      ARCHIVE PARAMETERS arcpar
      NO DIALOG.
    ELSE.
      write:/ 'Unable to create spool'.
    ENDIF.
    So now a spool is created with the required print parameters...
    The list that is created from here will be in the spool.
    Once the list is completed, close it with NEW-PAGE PRINT OFF.
    Hope this helps.
    Regards
    Eswar

  • On the Wall Street Journal website, I am not able to print out of the print format. Never had a problem before with this.

    I click on the print icon under an article in the Wall Street Journal. A new window opens with the article in print format. When I print, I get blank paginated pages equaling the length of the article. On the top left hand corner of the page will appear the title of the article; on the top right hand corner will appear the web address of the article; on the bottom left hand corner will appear the pagination; and on the bottom right hand corner will be the date and time of the printing. This is just how any article would print; the only difference being that I'm not getting the content of the article printed.
    This has only started a couple of days ago. I do not have this issue with any other publication, yet this problem doesn't exist with other browsers.

    I don't have a WSJ account to test... Here is some general advice:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    This will open a window listing the site's cookies, which you can remove individually.
    Then try reloading the page and logging back in. Does that help?

  • Smartform -Network printer format Issue

    Hi,
    I can print fine using my YPCC default printer.
    But When i do through network printer FORMAT is getting Disturbed( Values are printing in next line).How can we handle this? Do we need to do some driver program modifications?
    Here are the parameters in Driver program
    CALL FUNCTION fm_name
          EXPORTING
            archive_index        = toa_dara
            archive_index_tab    = arc_ind_tab
            archive_parameters   = arc_params
            control_parameters   = ls_control_param
            mail_appl_obj        = ls_recipient
            mail_recipient       = ls_recipient
            mail_sender          = ls_sender
            output_options       = ls_composer_param
            user_settings        = space
            wa_itab              = wa_header
          IMPORTING
            document_output_info = document_output_info
            job_output_info      = job_output_info
            job_output_options   = job_output_options
          TABLES
            wa_dep               = item_itab
          EXCEPTIONS
            formatting_error     = 1
            internal_error       = 2
            send_error           = 3
            user_canceled        = 4.
        IF sy-subrc <> 0.
          WRITE: / 'ERROR in passing vars to the smartforms '.
        ENDIF.
        ls_composer_param-tdnewid = space.
        ls_control_param-no_dialog = 'X'.

    YOu need to modify the smartform not the driver program to print all lines the way you want by changing font size, reducing line length...etc..etc..
    It's printing fine on the default PC printer, because, it uses windows printer driver to render the output, where as SAP network printer uses SAP printer driver to generate the printer commands, there's always difference in the output between the two drivers.
    Regards
    Sridhar

  • To download the print format and mail it on giving a range of customers

    Hai
    i have a smartform attached program to a report.
    my selection screen contains only customer number (in range) and sales office code.
    on executing the program will generate a printfile file for each customers.
    i posted this question already and got the reply but the selection screen has only one parameter called p_mail(where u pass the address straight away).but i need the pdf format to get splitted for each and every customers and to mail them automatically.
    where to write the coding for fetching the email addressess of the customers and how to loop it in order to send for all the customers automaticlly.
    how to pass the parameters in the function module.
    please explain to me clearly.i am in need of help.
    this is the program i got for sending one mail.i get confused as how this will work for the range of customers.somebody please solve me this problem.kindly tell me where to do the changes
    REPORT  ztest_smartform.
    DATA:it_nfal      TYPE nfal OCCURS 0 WITH HEADER LINE.
    DATA:fm_name      TYPE rs38l_fnam.
    DATA:ssfctrlop    TYPE ssfctrlop.
    DATA:ssfcompop    TYPE ssfcompop.
    DATA:it_otf_data  TYPE ssfcrescl.
    DATA:it_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE.
    DATA:bin_filesize TYPE i.
    DATA:it_pdfdata   TYPE TABLE OF tline.
    DATA:it_pdf       TYPE TABLE OF solisti1.
    "  Mail related declarations
    "Variables
    DATA :
         g_sent_to_all   TYPE sonv-flag,
         g_tab_lines     TYPE i.
    "Types
    TYPES:
         t_document_data  TYPE  sodocchgi1,
         t_packing_list   TYPE  sopcklsti1,
         t_attachment     TYPE  solisti1,
         t_body_msg       TYPE  solisti1,
         t_receivers      TYPE  somlreci1,
         t_pdf            TYPE  tline.
    "Workareas
    DATA :
         w_document_data  TYPE  t_document_data,
         w_packing_list   TYPE  t_packing_list,
         w_attachment     TYPE  t_attachment,
         w_body_msg       TYPE  t_body_msg,
         w_receivers      TYPE  t_receivers,
         w_pdf            TYPE  t_pdf.
    "Internal Tables
    DATA :
         i_document_data  TYPE STANDARD TABLE OF t_document_data,
         i_packing_list   TYPE STANDARD TABLE OF t_packing_list,
         i_attachment     TYPE STANDARD TABLE OF t_attachment,
         i_body_msg       TYPE STANDARD TABLE OF t_body_msg,
         i_receivers      TYPE STANDARD TABLE OF t_receivers,
         i_pdf            TYPE STANDARD TABLE OF t_pdf.
    PARAMETERS p_mail type char120.
    *START-OF-SELECTION.
    START-OF-SELECTION.
      "select data
      SELECT * FROM nfal INTO TABLE it_nfal UP TO 10 ROWS.
      ssfctrlop-no_dialog = 'X'.
      ssfctrlop-preview   = 'X'.
      ssfctrlop-getotf    = 'X'.
      ssfcompop-tddest = 'LP01'.
    Continued
    Venkat.O  
    Posts: 1,036
    Registered: 12/2/05
    Forum Points: 1,782 
      Re: to down load the print format to pdf and sent the data thru the mail  
    Posted: Jul 15, 2009 7:31 AM    in response to: amalrose         Reply 
    from above
      "Get Function module name for given smartform
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname = 'ZTEST_SMARTFORM'
        IMPORTING
          fm_name  = fm_name.
      "Call Smartform function module.
      CALL FUNCTION fm_name
        EXPORTING
          control_parameters = ssfctrlop
          output_options     = ssfcompop
        IMPORTING
          job_output_info    = it_otf_data
        TABLES
          it_nfal            = it_nfal.
    ***********appending the otf data into the final table*********************
      it_otf_final[] = it_otf_data-otfdata[].
    converting OTF data into pdf data**************************
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = bin_filesize
        bin_file              =
        TABLES
          otf                   = it_otf_final
          lines                 = it_pdfdata[]
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          OTHERS                = 5.
    To send data as email attachment, we need to have a table of SOLISTI1.
    This table contains line size of 255 characters. Below function module
    does the trick of changing the table from X character sized lines into
    any given Y character sized lines.
      REFRESH it_pdf[].
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
        EXPORTING
          line_width_dst              = '255'
        TABLES
          content_in                  = it_pdfdata[]
          content_out                 = it_pdf[]
        EXCEPTIONS
          err_line_width_src_too_long = 1
          err_line_width_dst_too_long = 2
          err_conv_failed             = 3
          OTHERS                      = 4.
      IF sy-subrc  0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
    Continued
    Venkat.O  
    Posts: 1,036
    Registered: 12/2/05
    Forum Points: 1,782 
      Re: to down load the print format to pdf and sent the data thru the mail   
    Posted: Jul 15, 2009 7:32 AM    in response to: amalrose         Reply 
    from above
        "Subject of the mail.
        w_document_data-obj_name  = 'MAIL_TO_HEAD'.
        w_document_data-obj_descr = 'Regarding Mail Program by SAP ABAP'.
        "Body of the mail
        w_body_msg = 'This is body of mail msg.'.
        APPEND w_body_msg TO i_body_msg.
        CLEAR  w_body_msg.
        "Write Packing List for Body
        DESCRIBE TABLE i_body_msg LINES g_tab_lines.
        w_packing_list-head_start = 1.
        w_packing_list-head_num   = 0.
        w_packing_list-body_start = 1.
        w_packing_list-body_num   = g_tab_lines.
        w_packing_list-doc_type   = 'RAW'.
        APPEND w_packing_list TO i_packing_list.
        CLEAR  w_packing_list.
        "Write Packing List for Attachment
        w_packing_list-transf_bin = 'X'.
        w_packing_list-head_start = 1.
        w_packing_list-head_num   = 1.
        w_packing_list-body_start = 1.
        DESCRIBE TABLE it_pdf LINES w_packing_list-body_num.
        w_packing_list-doc_type   = 'PDF'.
        w_packing_list-obj_descr  = 'PDF Attachment'.
        w_packing_list-obj_name   = 'PDF_ATTACHMENT'.
        w_packing_list-doc_size   = w_packing_list-body_num * 255.
        APPEND w_packing_list TO i_packing_list.
        CLEAR  w_packing_list.
        "Fill the document data and get size of attachment
        w_document_data-obj_langu  = sy-langu.
        READ TABLE it_pdf INTO w_pdf INDEX g_tab_lines.
        w_document_data-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN( w_attachment ).
        "Receivers List.
        w_receivers-rec_type   = 'U'."Internet address
        w_receivers-receiver   = p_mail.
        w_receivers-com_type   = 'INT'.
        w_receivers-notif_del  = 'X'.
        w_receivers-notif_ndel = 'X'.
        APPEND w_receivers TO i_receivers .
        CLEAR:w_receivers.
        "Function module to send mail to Recipients
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data              = w_document_data
            put_in_outbox              = 'X'
            commit_work                = 'X'
          IMPORTING
            sent_to_all                = g_sent_to_all
          TABLES
            packing_list               = i_packing_list
            contents_bin               = it_pdf
            contents_txt               = i_body_msg
            receivers                  = i_receivers
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
        IF sy-subrc = 0 .
          MESSAGE i303(me) WITH 'Mail has been Successfully Sent.'.
        ENDIF.
      ENDIF.

    Here:
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en
    Was it deactivated on the old computer?  If not, you may need to contact Adobe support by clicking on "Chat"
    Serial number and activation support

  • SAP report print formats

    Hi!
    There are several report print formats in an ABAP report. You can choose between them during printing, some examples: X_65_80 (80 columns, 65 lines), X_90_120 (120 columns, 90 lines) and so on...
    Is there away to define more "standard" like printer formats?
    I know, I can give anything after the REPORT statement (like REPORT zreport LINE-SIZE 99 LINE-COUNT 99) but these are not standard and mostly the printers don1t like them.
    Thank you in advance
    Tamá

    Hi Tamas,
    When you run the report, the spool will be displayed on the screen. At this time, click on print,the system will show the print dialog. Click on properties, this will spool request attribites dialog. Click settings. in the next dialog box, select the required field, and the value and select the validity as required. This way you can set the standard format for all reports.
    Ravi

  • Why does ical print out starting tuesday?

    Why does ical print out staring the week on tuesday?
    Maybe the week starts one day later for the Yosemite dev team, but certainly not in my neck of the woods.
    The actual print out also looks nothing like the new matt and  'flat' graphic style of Yosemite.
    I suggest you start on monday next week and sort these issues out.
    Sunny

    For many people that is the correct option. If you think it should be different, tell Apple, as they aren't listening here.

  • Ical print scripting

    Hi, i was wondering if anyone knows how to write a script to make ical print out my scedual for the week. I have looked up scrpts for prtining and saving and all that stuff and i can get them to run both as applications and scripts in new events in my calender but i do not know how to make it print out the scedual. I assume that i would have to first save the calender and then print it so im lost. Thanks for the help -mike
    macbook pro   Mac OS X (10.4.8)  

    It would not, I think, be an easy task. There is no way, AFAIK, to ask iCal to save the equivalent of the week display as a separate file. It would be possible to do it with GUI scripting, but this is not easy and generally not considered reliable.
    AK
    [Edit]
    You could take a look here - John Maisey has posted a script to print a daily schedule automatically.

  • ICal prints times in front of event entries, I don't want these times entered. How to remove them?

    iCal prints times in front of event entries, I don't want these times entered. How to remove them?

    Go to your Flagged Photos Smrt Album on the Left.
    Command - a will select All
    Then File -> New -> Album
    Regards
    TD

  • SSRS 2008 R2 why Link Report Print format different from parent?

    Hi,
    I have created a link report based on Report A.
    In Report A I have set the print format to "LANDSCAPE", but the link report always appear in Portrait, any work around on this?
    If this is one of the SSRS bugs, is that anyway I can disable the print button in Report Server?
    Thanks

    Hi SAMSUNG,
    I can reproduce the issue in my local environment. As per my understanding, this scenario is caused by design.
    In Reporting Services, Report server administrators have the option of disabling the print feature by setting the report server system property EnableClientPrinting to false. But this property will disable client-side printing for all reports managed by
    the server. So if you want to hide the print icon in all reports, we can refer to the following document:
    http://msdn.microsoft.com/en-us/library/ms155874(v=sql.105).aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to create a print format in SAP

    Hi,
    I dont know if this is the right forum to ask this, but I have not done this for a long time. Does anybody know how to maintain a print format such as "X_65_200" that you use when printing a report in SAP? I'm trying to create a format that will use a Legal size paper. Useful answer will be rewarded.
    Thanks,
    Ricky
    Message was edited by: Ricky Orea

    Hi,
    The Print formats are maintained in TSP1D Table.. it is usually done by the BASIS folks..
    Regards,
    Suresh Datti

  • I am unable to print a proper playlist in the jewel case format.  Lines print on top of one another.  No problem with other print formats

    I am unable to properly print a playlist in the jewel case format.  All lines bunch together.  I have no problem with other print formats.  Help please.

    If it is a USB powered external, no AC adpater, that may be the reason. Mac notebooks are known to have low powered USB ports. You can get around that with a Y USB cable to connect to 2 USB ports at the same time.

Maybe you are looking for

  • E-MU 0202 - unsuccessful firmware update.

    I have E-MU 0202 usb interface and I tried to update firmware from 4 to 8th version. When i did it, the card became unable to boot - the "power" indicator blinks, I can hear clicks in headphones as if card reboots over and over again. Windows can't d

  • Wifi greyed out...yet another post about this.

    One of a million posts about this same issue.  I have iphone 4S with iOS 7.  My phone has been going along just fine.  On Sunday, I was on it, using wifi, off and on all day long.  Sunday night, my connection to it on my phone was acting a little wei

  • I am finding all the Apple TV apps are gone

    I am finding all the Apple TV apps are disappeared except settings and computer. I have setup automatic software upgrade and I an am not sure if one of the auto upgrades went wrong. I have tried to restart and reset, but no luck. Any help is apprecia

  • DELETE SD DOCUMENT (VA02)- ILLEGAL MESSAGE

    Hi all i have a strange problem it's occurs when i delete an sd document in va02. the dump is DYNPRO_MSG_IN_HELP. The situation is: in the save_document_prepare the are some controlls. one sends an error message. Now when I save the document, the mes

  • Is JServer is installed and running?

    how do I verify JServer is installed and running? I did the following and found JAVA TRUE but is there more to it? select * from v$option; thank u.