S60 3rd calender (E90) and iCalendar format attach...

Hello all,
I've used 9300 for several years and have now switched to E90.
I work with multiple customers and use multiple MS Outlook calendars on customer sites.
My master calendar has been the calendar on my 9300 phone.
As I'm not allowed to install PC Suite on customer desktops I've used Outlook iCalender format emails (.ics) to sync my 9300 calendar.
You were able to open the .ics email attachments on 9300 and get the calendar events added to phone calendar.
Unfortunately E90 mail/calendar software doest not support .ics attachments. This is very annoying as I now have to insert calendar events manually on E90.
Has anybody found any kind of workaround for this?
Maybe a better 3rd party calendar on E90?
Of course the best solution would be adding .ics support to E90. Mr Nokia listening?
Cheers,
Arto
Helsinki
Finland

Dear Arto,
I have the same problem. I bought E90 just to add by email my calendar appointments and it does not work.
If you found a solution, i will be very glad if you advise me.
Robert.
Brussels - Belgium

Similar Messages

  • PT-6 Phone software update for S60 3rd ed

    Hi!
    I have a PT-6 Remote Camera which I controlled used the Remote Camera Manager on my previous Nokia phone.
    Now I have a Nokia E61, which is a S60 3rd ed. phone and the Remote Camera Manager doesn't work.
    Anybody know if there will be a new version of the Remote Camera Manager that supports S60 3rd edition?

    I am the owner of a Nokia Camera with a PT-6 remote control. I am very happy with the product. I have been using this camera with Nokia N-70 telephone. I just bought new telephone model Nokia N-73 which uses a new operating system S60 with the 3rd generation as opposed to N-70.
    The operating program which is installed into my telephone is supported on your site, however, it is only for systems S60 with the 1st and 2nd generation.
    I would like to ask you if it is possible for you to upgrade this application for the S60 3rd generation or advise me what my options are.
    Thank you for your support.
    Sincerely,
    Peter Spina,Czech Republic...
    MyTel.Story: Nok.11NMT,Nok.3110,6110,7110,7650,NGAGE,
    siemens-SX1,Nok.N70,
    akt.N_73+2GB_mSD /FW-V3.0638.0.0.1, Nokia 8800 Sirocco

  • Convert the spool to xls format and email through attachment to the user

    Hi all,
    When I execute a report in background, I get spool. I need to convert the spool to xls format and email through attachment to the user.The xls file should not be saved on local system.
    If I use the Spool Recepient tab in SM37 it mails the spool list as .txt file to the mail receipient. But I need to send it as an .xls file.
    Can any one help me on this

    Did you get the solution? i have the same problem.

  • To Send HTML Format and excel file attachment  in same mail

    Dear All,
            Have requerment ,to send a mail options HTML table format and same data in excel file attachement.have capable to do the html format using methods BCS .but how to send excel format attachment in same  mail.
    Please guide me how to do it.
    Regards ,
    Santhu
    Edited by: santosh jajur on Apr 9, 2010 1:54 PM

    Santhosh,
    please check the code:
    report bcs_example_7.
    This report provides an example for sending an Excel
    attachment in Unicode Systems
    constants:
      gc_tab  type c value cl_bcs_convert=>gc_tab,
      gc_crlf type c value cl_bcs_convert=>gc_crlf.
    parameters:
      mailto type ad_smtpadr
       default 'ur mail id'.                    "#EC *
    data send_request   type ref to cl_bcs.
    data document       type ref to cl_document_bcs.
    data recipient      type ref to if_recipient_bcs.
    data bcs_exception  type ref to cx_bcs.
    data main_text      type bcsy_text.
    data binary_content type solix_tab.
    data size           type so_obj_len.
    data sent_to_all    type os_boolean.
    start-of-selection.
      perform create_content.
      perform send.
    form send.
      try.
          send_request = cl_bcs=>create_persistent( ).
        create document object from internal table with text
          append 'Hello world!' to main_text.                   "#EC NOTEXT
          document = cl_document_bcs=>create_document(
            i_type    = 'RAW'
            i_text    = main_text
            i_subject = 'Test Created By BCS_EXAMPLE_7' ).      "#EC NOTEXT
        add the spread sheet as attachment to document object
          document->add_attachment(
            i_attachment_type    = 'xls'                        "#EC NOTEXT
            i_attachment_subject = 'ExampleSpreadSheet'         "#EC NOTEXT
            i_attachment_size    = size
            i_att_content_hex    = binary_content ).
        add document object to send request
          send_request->set_document( document ).
        --------- add recipient (e-mail address) -----------------------
        create recipient object
          recipient = cl_cam_address_bcs=>create_internet_address( mailto ).
        add recipient object to send request
          send_request->add_recipient( recipient ).
        ---------- send document ---------------------------------------
          sent_to_all = send_request->send( i_with_error_screen = 'X' ).
          commit work.
          if sent_to_all is initial.
            message i500(sbcoms) with mailto.
          else.
            message s022(so).
          endif.
      endtry.
    endform.                    "send
    form create_content.
      data lv_string type string.
      data ls_t100 type t100.
    columns are separated by TAB and each line ends with CRLF
      concatenate 'This Is Just Example Text!'                  "#EC NOTEXT
                  gc_crlf gc_crlf
                  into lv_string.
    header line
      concatenate lv_string
                  'MSGID'    gc_tab
                  'MSGNO'    gc_tab
                  'Language' gc_tab                             "#EC NOTEXT
                  'Text'     gc_crlf                            "#EC NOTEXT
                  into lv_string.
    data lines
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '182'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '316'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      try.
          cl_bcs_convert=>string_to_solix(
            exporting
              iv_string   = lv_string
              iv_codepage = '4103'  "suitable for MS Excel, leave empty
              iv_add_bom  = 'X'     "for other doc types
            importing
              et_solix  = binary_content
              ev_size   = size ).
        catch cx_bcs.
          message e445(so).
      endtry.
    endform.                    "create_content
    Thanks.

  • Nokia CarContcats for Ford and S60 3rd Edition

    Hello,
    As someone some information on a version of the "Nokia carcontacts for ford" application (www.nokia.com/ford and http://europe.nokia.com/link?cid=PLAIN_TEXT_82091) for the S60 3rd Edition?

    thank you for download

  • Difference between S60 and S60 3rd Edition

    Hello.
    This is not so much bout updating the phone's software but more about the phone's Operating system itself so hope this is in the right place.
    I have an N91 that comes with Symbian S60 3rd Edition. I wanted to install a screen reader so that I can use all the features of this phone (as I'm partially sighted) but it just would not install. Not sure whether this had something to do with unsigned applications, but that's another issue.
    I looked on the website and i think it did mention something about the application only being compatible with Synbian S60 phones and not S60 erd Edition. So my question is, how different are the two versions of the operating system? I'm more of a PC guy myself, so in PC terms would it be, say, the difference between Windows XP and 2000, built on the same basic foundation but with some differences, or say, the difference between Windows XP and 98, two totally different systems?
    Also, how difficult would it be to migrate program code from an S60 platform to the 3rd Edition platform, and therefore how long roughly would you say it would be before the application could be released?
    Finally, is there such a thing as an S60 emulator, so maybe I could run the screen reader in S60 mode until an S60 3rd edition version comes out? The emulator question would also hold for he fact that I want to be able to run some applications I used to run on my Nokia 6630 (Symbian S60) on my N91.
    Thanks in advance for your help, and sorry for the long post and many questions. I guess I'm just so excited at finally having this new phone i want to make the most of it lol.
    Hussein.
    Hussein Patwa
    PatwaNet
    Nokia 6630 on 3G (UK)
    Nokia 6610i - UNLOCKED! YAY!
    Currently looking for more cheap & new handsets - you never know when a spare can come in handy!

    Hi and thanks for your reply. sorry for not getting back to you sooner. I am just doing this more for a hobby than as a 'proper' project, as I doubt I'd actually get anywhere- and if I did it'd probably be a fluke. I'm going to download all the SDK's so I can at least get the actual code of the program, as at the moment it's just in its .sis form. then maybe I can at least see where the changes are, and any transformation into an S60 3rd Edition (or is it S9.1?) is just good luck I guess.
    Hussein.
    Hussein Patwa
    PatwaNet
    Nokia 6630 on 3G (UK)
    Nokia 6610i - UNLOCKED! YAY!
    Currently looking for more cheap & new handsets - you never know when a spare can come in handy!

  • Can't get Opera mini to connect - symbian S60 3rd ...

    I have installed Opera Mini v7.1.32448 on my Nokia 6700 slide which runs symbian S60 3rd edition. I keep getting the error that it can't connect. (The phone does not have WiFi and I connect using Vodafone). The phones built in web browser connects to the internet just fine, but I'd like to use 'opera' instead. On trying 'network test' in the advance Opera settings, it acknowledges that 'I have a working network connection'.  Any suggestions why it won't connect for me?
    Attached, 2 x screen grabs, 1) I have network -2) I can't connect!
    Attachments:
    scr000011.jpg ‏10 KB
    scr000012.jpg ‏7 KB

    Thanks for the suggestion, but unfortunately it was of no help at all. Using Nokia Suite, the version of Opera Mini, is the only one available for download to my phone. It's irritating that I can connect using the standard Nokia built in browser, but as I have a very low data contract on my SIM, would love to be able to use Opera Mini to compress web surfing.
    I have tried the different 'connection' options offered by Opear Mini, which are (1) use system default, (2) internet (3) WAP services. None of which connect for me. I'm sure it's a simple 'setting' somewhere, but my limited knowledge is now more than exhausted!
    Just can't understand why the standard browser connects straight away, yet Opera can't make that same leap!

  • E90 and the pictures...

    Hi
    I got this problem only yesterday and it seems that others are having it too!!
    When you open any photo either it’s saved on your memory card on the phone memory the options menu is not open where you can zoom-in, zoom-out, send via infrared or Bluetooth and the other options available in the options menu??
    By checking some other sites, I found some more users are complaining from the same problem, can anybody help or suggest something.
    NB: the software is the latest (till now) - 07.24.0.3 dated 12-6-2007, I know there’s a new update coming soon but still not available on Nokia web site...
    Please advise how to solve this annoying problem..
    Regards,

    That is an older version of the Channels project. The newest version is still in beta (http://www.nokia.com/betalabs/channels) though it is quite stable and functional. And the E90 is supported, along with all S60 3rd Edition devices.
    Bogdan Galiceanu
    http://nokiamobileblog.blogspot.com
    There's a thing in my pocket, but it's not one thing, it's many.

  • Itunes for s60 3rd edition.

    does any one have itunes music player for s60 3rd edition?????
    At last a nseries phone im truely happy with THE N82

    20-Dec-2006
    05:31 PM
    petrib wrote:
    And for protected iTunes files, you should be able to make a CD and rip it to your PC in a format like MP3 or AAC that the phone supports.
    You can do that?!
    I thought iTunes locked everything up so tight that wasn't possible .. It's one of the reasons I've never understood why anyone would want to use iTunes - that and the fact they rip off us poor Europeans: we pay like 50% more per track than they do in the US (99 cents is around 50p at current exchange rates).
    At least the price one still holds ..

  • How can I embed files of word, excel, and pdf format in a pdf document

    I have a word document of the product, which I am updating for next product release. However, there are some excel, word, and pdf files embedded within a word document. When I double click these embedded files in word, these files open in a new window. However, we deliver documentation to the customer in the pdf format. Therefore, when I am converting the word document in the pdf format, only an icon of the embedded file is displayed and the files do not open in a new window. Can someone let me know how can I embed these files (in word, excel, and pdf format) in a pdf document?

    You must attach them to the PDF file after it is created. You cannot embed file attachments onto a page as you can with Word.

  • Smartform to pdf conversion and send as attachment

    Hi,
    my requirement is i have to change the smartform to pdf and send as attachment to mail id's.
    For specified smartform it is converting and sending as pdf
    but in my selection screen i have to give smartform name and mail id's.
    if i give any other smartform name it is going to dump.because of parameters.
    every smartform is not having same parameter.
    so how i can differentiate between the smartforms
    it means import and export parameters are changing for every smartform.
    how to solve this problem.
    thanks.
    venki
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Dec 28, 2009 2:20 PM

    Hi Venki,
    Use the below code...
    Give the form name into SSF function module from the selection screen and get the import parameter  FM name (smartform FM which will be unique). Give that to the next FM and get the import parameter and covert the same to pdf using the CONVERT OTF.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = P_FORMNAME
    IMPORTING
       FM_NAME                  = FM_NAME
    EXCEPTIONS
       NO_FORM                  = 1
       NO_FUNCTION_MODULE       = 2
       OTHERS                   = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      CALL FUNCTION FM_NAME
       EXPORTING
         CONTROL_PARAMETERS         = WA_CTRLOP
         OUTPUT_OPTIONS             = WA_OUTOPT
         USER_SETTINGS              = 'X'
       IMPORTING
         JOB_OUTPUT_INFO            = T_OTFDATA
        TABLES
          T_ITAB                     = T_ITAB3
       EXCEPTIONS
         FORMATTING_ERROR           = 1
         INTERNAL_ERROR             = 2
         SEND_ERROR                 = 3
         USER_CANCELED              = 4
         OTHERS                     = 5
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    T_OTF[] = T_OTFDATA-OTFDATA[].
      CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        FORMAT = 'PDF'
        MAX_LINEWIDTH = 132
      IMPORTING
        BIN_FILESIZE = W_FILESIZE
      TABLES
        OTF = T_OTF[]
        LINES = T_PDF_TAB[]
      EXCEPTIONS
        ERR_MAX_LINEWIDTH = 1
        ERR_FORMAT = 2
        ERR_CONV_NOT_POSSIBLE = 3
        OTHERS = 4.
    Cheers,
    Sanil
    T
    Code Formatted by: Alvaro Tejada Galindo on Dec 28, 2009 2:19 PM

  • Weight/dimensions of brand new wireless keyboard? Use with Nokia S60 3rd?

    Hi,
    I am considering the new apple wireless keyboard (aluminium) to use with my Nokia N80 / N95 phones, but the exact specifications are nowhere to be found.
    Can anyone tell me if it is:
    - compatible with the bluetooth HDI profile like the previous model?
    - how much it weighs?
    - what its dimensions are?
    Has anyone, by any chance, tried using it with a Nokia S60 3rd edition phone like a nokia E series or N series?

    hi there,
    yes, i can confirm the usage of the new bluetooth aluminium keyboard in conjunction with my nokia n95 via the 'wireless keyboard' -application which is located in the office-folder of the n95.
    i got it paired with no problems and the usage itself is also perfect.
    best,
    netshare

  • Fscommand2 "shuts down" flash lite player 2.1 in S60 3rd Edition

    Hello.
    I am having the following problem in nokia phones S60 3rd
    edition:
    when I have a j2me midlet running in the background and open
    a swf that executes: fscommand2("GetSignalLevel") it automatically
    closes the flash lite player. This has happened in phones that come
    with the 1.1 player but that I have installed 2.1 and confirmed
    that the swf was running in the 2.1 player. I also tried other
    fscommand2 and they worked well (GetMaxSignalLevel, GetBatteryLevel
    and GetMaxBatteryLevel).
    Is this a known problem? Does it have a solution?
    Thanks in advance

    Ciao Pieter,
    in few days Adobe will release for free the FL 2.1 player to
    developers for several platforms, Brew, Windows Mobile 5 and
    Symbian, which includes 3rd edition. As far as the type of player,
    is probably the standalone.
    Alessandro

  • S60 3rd Edition MIDP + Netbeans 5.5 + Mobility CLDC !URGENT!

    My Environment       Device: Nokia E61
           SDK: S60 3.0 MIDP SDK (S60 3rd Ed MIDP)
           Java: javac 1.5.0_12
           OS: Microsoft Windows XP Professional [Version 5.1.2600]/ Service Pack 2
           Computer: AMD Athlon 64bit CPU 3200+ 2.1GHz, 1.00GB Mem
           NetBeans (5.5 dev build ):
              Number: 200704122300
              Date: ${buildday}
              Branding:
              Branch: release551
              Tag:
           Mobility: NetBeans Mobility Pack 5.5.1I am having problems building application with netbeans. The jar file is coming out excessively large and it fails to run on the emu, get -10504 error (already tried to lookup error code at http://newlc.com/Symbian-OS-Error-Codes.html and it is not listed there). I inspected the .jar file and did not see anything there that did not belong; only .class, .png, kxml library and manifest files were present (no Thumbs.db or other clutter).
    When I build the same application with CarbideJ the jar file size is significantly smaller and it executes on the Emulator. Are any of the CarbideJ tasks, namely <ndsj2mejavac> and/or <ndsj2mepackage>, doing something special to source, jar or images that maybe netbeans is skipping; running a different preverifier, different archiver, using it's on version of javac.exe or something?
    When I compile using Carbide.j this is what I get (NO obfuscated/NO debug info);
         AppXXX.jad (400 bytes)
         AppXXX.jar (728,538 bytes)however, when I compile with Netbeans, I get the following(obfuscated set to level 9/NO debug info);
         AppXXX.jad (471 bytes)
         AppXXX.jar (927,530 bytes)The jad files generated were different but only because one had more descriptor tags in it, nothing major about that. The problem is that the jar file generated by netbeans is significantly larger than the one generated by carbide. Also, I compiled the exact same program under the Sun Wireless toolkit v2.5.1 and got the exact same jar file sizes and runtime error on emu that netbeans generated; I installed s60 sdk for wtk and selected it before before creating package for application. Also I state before, the version created with Carbide.j runs in the Emu; however, the NB version does not.
    Already posted to Nokia forum and no help there
    I would be very appreciative if I can quickly get some help!
    Files:
    build.xml (output of netbeans build process is append to the end of the build file in an xml comment): http://home.comcast.net/~eramsey1535/JavaME/Nokia/build.xml
    CFG_DEV.properties: http://home.comcast.net/~eramsey1535/JavaME/Nokia/CFG_DEV.properties.txt
    project.properties: http://home.comcast.net/~eramsey1535/JavaME/Nokia/project.properties.txt
    image of error displayed on emu: http://home.comcast.net/~eramsey1535/JavaME/Nokia/error_displayed_on_emu.gif
    image of error in emu popup dialog: http://home.comcast.net/~eramsey1535/JavaME/Nokia/error_displayed_in_emu_popup_dialog.gif
    Thanks!

    Hi,
    I'm facing exactly the same problem, and was wondering whether you found the solution to this problem.
    Thanks in adance,
    Iwan

  • SIS Files on S60 3rd edition?

    Hi,
    Has anyone managed to successfully install a Flash Lite
    application via SIS file on a series60 3rd edition device?
    My SIS file works fine on 2nd edition devices, but when i
    change the product UID range to 3rd ed. if just comes up straight
    away with the 'not supported' installation error.
    Is there a new version of makesis that i must use?
    Any ideas?
    Paul

    For anyone having the same problems as me...
    If you are trying to create a sis file for 3rd edition or
    UIQ3
    download the s60 3rd edition CDK from Forum Nokia (this will
    give you the newer version of makesis, and some other stuff i
    havent checked out yet,).
    Download the 'Symbian Developer Certificate Request' app from
    Symbian signed as well as
    some new UID's
    Change your PKG file to have the new OS UID's eg.
    s60 1st Edition (0x101F6F88), 0, 0, 0, {"Series60ProductID"}
    s60 1st Edition, FP1 (0x101F8202), 0, 0, 0,
    {"Series60ProductID"}
    s60 2nd Edition (0x101F7960), 0, 0, 0, {"Series60ProductID"}
    s60 2nd Edition, FP1 (0x101F9115), 0, 0, 0,
    {"Series60ProductID"}
    s60 2nd Edition, FP2 (0x10200BAB), 0, 0, 0,
    {"Series60ProductID"}
    s60 2nd Edition, FP3 (0x102032BD), 0, 0, 0,
    {"Series60ProductID"}
    The new ones:
    S60 3rd Edition [0x101F7961], 0, 0, 0, {"S60ProductID"}
    S60 3rd Edition, FP1 [0x102032BE], 0, 0, 0, {"S60ProductID"}
    UIQ v2.0 ( 0x101F617B ),2,0,0,{ " UIQ20ProductID " }
    UIQ v2.1 (0x101F61CE), 2, 1, 0, {"UIQ21ProductID"}
    UIQ v3 (0x101F6300),3,0,0,{"UIQ30ProductID"}
    Note: you cant mix the old and the new product id's in one
    pkg file as the sis files are created differently and are not
    compatable, you will need one for the older nokia devices, one for
    the new 3rd edition, and another if you develop UIQ (although there
    are none available with UIQ3 and Flash lite yet...it might be
    possible you'd have to have a separate one for that as well!).
    If only Symbian could have written a simple document with all
    that in it, it would have saved me and my collegue hours of trying
    to get past error messages!
    Paul

Maybe you are looking for