LSO Correspondence u2013 Add Outlook Calendar Request

Dear User,
     When a employee is booked for a course he should be added in the outlook calender to all the LSO request. Please advice.
Thanks

Hi,
The below link should help you to solve your question. We took had followed the similar way to add calendra to outlook in LSO.
http://aspireopenmic.com/2011/06/29/lso-outlook-calendar-requests-as-attachments/
Do let me know if it helped.
Thanks,
Padmaja.

Similar Messages

  • How can we add Outlook calendars to iPads and share views

    My boss and I both have iPad2's.  We would like his Outlook calendar to be viewable on both our pads.

    you can get the photo url with my javascript, see my posts here:
    http://discussions.apple.com/thread.jspa?messageID=10539208
    however, adding any html snippet widget onto photos page as you plan is a no no, because the widgets stay on top of the picture when in detail view. many tried to add paypal button in their photos page and failed, search my posts for paypalbegone.
    but it can be done: http://iweb3widgets.cyclosaurus.com/PayPalBeGone/Photos.html

  • 2 computers; Add Outlook calendar data to T3 only from 1 computer; sync with the other

    I have 2 computers.  How do I add the Outlook data from one computer to the T3 without syncing totally (adding the T3 data to Outlook).  Then I need to do a total sync with the other computer.  Any suggestions.
    Post relates to: Tungsten T3

    A word of caution: When setting a conduit to Overwrite, any existing data in that PIM database will be entirely replaced by the overwritten data.
    Your situation sounds like you wish to add work Calendar items onto a personal device. Will you be comfortable having no personal Calendar items if you overwrite the Work Calendar when you arrive at work until you can sync with your home computer?
    Post relates to: Palm TX

  • LSO Correspondence doesn't work with vCalendar attachment in MSOutlook 2007

    Hello,
    Is anyone using the Learning Solution Request-Based Correspondence with either vCalendar attachments and Microsoft Outlook 2007?
    Our client moved from Microsoft Outlook 2003 to Microsoft Outlook 2007. None of our vCalendar attachments work since we have moved to Outlook 2007. When we try to open the .VCS attachment, we receive an error message stating that it is not a valid Internet calendar file.
    I even tried .ICS attachment but same error pops up !
    Any work around !!
    Request to help , it would be greatly appreciated !!
    Thanks!
    Hello SAP Gurus ,
        Please help me out on the issue.
        or any alternative to this.
    Thanks in advance
    Edited by: Kumar214reddy on Jan 19, 2012 3:45 PM

    I was experiencing this same issue and have finally have it resolved with a code recommendation from SAP.  Hopefully you have already performed all the actions as outlined in this document:
    http://aspireopenmic.com/2011/06/29/lso-outlook-calendar-requests-as-attachments/
    However this does not work with Outlook 2007/2010 - only with Outlook 2003.  I had to do this additional work:
    1) Copy Class CL_LSO_CRP_RENDER_EXAMPLE to ZCL_LSO_CRP_RENDER_EXAMPLE
    2) Edit the method CREATE_VCAL of this new class.
         - Comment all code out from this line onwards:
      * BEGIN:VCALENDAR
        ls_soli-line = 'BEGIN:VCALENDAR'.
       APPEND ls_soli TO lt_soli.
      * Add CR/LF
        LOOP AT lt_soli ASSIGNING <fs_soli>.
          <fs_soli>-line+253(2) = cl_abap_char_utilities=>cr_lf.
       ENDLOOP.
    3) Add this statement:
    DATA: helpstring    TYPE string.                  
    4) Add the following code within the method:
    * BEGIN:VCALENDAR
      CONCATENATE 'BEGIN:VCALENDAR' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* BEGIN:VCALENDAR
      CONCATENATE helpstring 'VERSION:1.0' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* BEGIN:VEVENT
      CONCATENATE helpstring 'BEGIN:VEVENT' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* ORGANIZER
      CONCATENATE helpstring 'ORGANIZER:MAILTO:' ls_data-sender-smail
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* ATTENDEE
      CONCATENATE helpstring 'ATTENDEE;ROLE=ATTENDEE:' ls_data-astxt '<' ls_data-amail '> '
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DTSTART
      CONCATENATE helpstring 'DTSTART:' ls_data-kbgda 'T'
        INTO helpstring.
      IF NOT ls_data-kbtim IS INITIAL.
        CONCATENATE helpstring ls_data-kbtim INTO helpstring.
      ENDIF.
      CONCATENATE helpstring
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DTEND
      CONCATENATE helpstring 'DTEND:' ls_data-kndda 'T'
        INTO helpstring.
      IF NOT ls_data-kbtim IS INITIAL.
        CONCATENATE helpstring ls_data-ketim INTO helpstring.
      ENDIF.
      CONCATENATE helpstring
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* LOCATION
      IF NOT ls_data-b_ort IS INITIAL OR NOT ls_data-rstxt IS INITIAL.
        CONCATENATE 'LOCATION:' ls_data-b_ort ls_data-rstxt
          INTO l_subject SEPARATED BY space.
        CONCATENATE helpstring l_subject
          cl_abap_char_utilities=>cr_lf
          INTO helpstring.
      ENDIF.* CATEGORIES
      CONCATENATE helpstring 'CATEGORIES;ENCODING=QUOTED-PRINTABLE:EDUCATION'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* CLASS
      CONCATENATE helpstring 'CLASS:PUBLIC'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* SUMMARY
      CONCATENATE text-001 ls_data-kstxt INTO l_subject SEPARATED BY space.
      CONCATENATE helpstring 'SUMMARY;ENCODING=QUOTED-PRINTABLE:' l_subject
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DESCRIPTION
      CONCATENATE helpstring 'DESCRIPTION:' l_subject
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* END:VEVENT
      CONCATENATE helpstring 'END:VEVENT'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* END:VCALENDAR
      CONCATENATE helpstring 'END:VCALENDAR'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.
      CALL METHOD CL_DOCUMENT_BCS=>STRING_TO_SOLI
        EXPORTING
          IP_STRING = helpstring
        RECEIVING
          RT_SOLI = lt_soli.
    5) Activate this class
    6) Search for all occurances of where method CREATE_VCAL is used within class CL_LSO_CRP_RENDER_EXAMPLE
    7) Replace following statement:
        lr_document = cl_lso_crp_render_example=>create_vcal( lr_reader ). 
    with: 
      lr_document = zcl_lso_crp_render_example=>create_vcal( lr_reader ). 
    This should resolve any problems now with the calendar attachments.

  • Outlook calendar invitations in Yosemite Mail

    I know that there is an answer for this somewhere out there, but scouring the discussion boards and web I can't seem to find it.
    I am using the stable version of Yosemite and have updated all my apps to date. For some reason, I can no longer add outlook calendar invitations to Mac calendar via the Mac Mail app! When I hit the "accept" button, the person who sent the invitation gets an email back saying that I accepted (most of the time!, the calendar event is NOT added to my calendar, and the invitation email is trashed! Neither the mail or calendar apps crash, but I don’t get my calendar event added! Any ideas would be greatly appreciated!! Thanks so much! Mike
    When I look at the console, I see stuff like:
    11/6/14 4:22:38.421 PM Mail[531]: Could not load x-msg URL
    11/6/14 4:22:44.912 PM Mail[531]: Unexpected flag key "MessageHighlightTextInTOC"in flagsBySettingValueForKey

    I have this same problem. The only difference is nothing happens when I hit accept from inside of mail.  It doesn't accept the invite in calendar, it doesn't, trash the invitation, it just does nothing.  I have the most up to date version of Yosemite.

  • How do I fix meeting requests/invitations default to ms outlook calendar and do not show up on iCloud calendar?

    This is frustrating and seems to be a known issue. Regular calendar items work fine but any meeting invitations sent to and accepted on PC running Outlook 2010 with iCloud add in only show up on default (local) calendar. Must add them manually. Also meeting requests sent from same PC configuration are being hijacked by iCal/iCloud feature and prompt the receiver to accept through iCloud interface rather than a regular Outlook email invite, though those meeting do show up on end user's Outlook calendar. And meeting requests sent to a group gives an STMP error. Is there an update or newer version that fixes any of these issues?  I turned off MobileMe add in but doesn't help. We use iCloud and like it because we need the calendar and contact features to sync between the PC and iPhone and iPad, which works fine.

    Outlook will not allow a subscribed calendar to be the default, unless it is an Exchange calendar. You can't change this behaviour unfortunately.

  • TS3999 I am unable to sync my Outlook calendar with my Iphone. I have noted that the Icloud Outlook add in is not ticked When I attempt to load it from the designated file nothing happens Can anyone help with this? Robyn

    I am unable to sync my Outlook calendar with my Iphone. I have noted that the Icloud Outlook add in is not ticked When I attempt to load it from the designated file nothing happens Can anyone help with this? Robyn

    Re: check that the appointments in my phone are going into iCloud calendars....exactly how do I do this?  I fear this is a really stupid question!
    My iCloud account is set up with my Apple ID as one email account (for example [email protected]) which is the email account I use to sign up for internet sites like Amazon, Apple,etc, so that I can differentiate vendors/mass emails.  But my default calendar on my iPhone is in a different email name (ie [email protected]) which I use for most communications to friends, relatives, etc. and it is this account that holds most of my appointments.  To further complicate things I have other email accounts that I use for business/professional and community work.  If I want all my calendars to show on my iPhone AND sync to my iCloud, do I set this at the phone level or the iCloud level?  or both?   
    Let me clarify....It looks like if I go into appointments that I previously set up through my personal account (ie above [email protected]) and edit the entry on my iPhone, selecting the iCloud "home" calendar within the entry, it will then sync to my iCloud account, no problem....do I have to do this to EVERY entry I have? or is there  a way to name my personal account as one to sync to iCloud?

  • I use ical and my husband uses outlook.  how can i add an appointment or event to his outlook calendar from my iphone , ipad or mac?

    I use ical and my husband uses outlook.  How can I add an  appt or event to his outlook calendar from my iphone, ipad or mac?

    I use ical and my husband uses outlook.  How can I add an  appt or event to his outlook calendar from my iphone, ipad or mac?

  • Why won't my iPhone receive updates to Outlook Calendar appointments?

    I am able to receive an Outlook appointment request on my iPhone. It appears as an attachment called something like "mime-attachment.ics". When I click this, details of the event pop up and I am able to add it to my calendar. Works like a charm. The problem I'm having now is, if the appointment is updated in Outlook and updates are then sent to attendees, I receive the email with an attachment again BUT instead of the details being updated, it appears exactly the same as the original event (same date, same time) instead of showing the new event information.
    Does anyone know a way around this that does not involve syncing... iTunes... none of that nonsense...??!

    It seems the recurring theme on these types of problems is the use of a POP email account. Something originates in corrupting or blunting the full affect of an ics event from Outlook through this method.
    I guess just thinking about it, this makes some sense in that Microsoft has probably not fully developed their ActiveSync to work properly with POP accounts, especially w/in Mac OS (if you use that). It's understandable that their motivation is towards Exchange interoperability and even further, the need to support an "old" technology like POP.
    Sorry I couldn't be more help, but perhaps you'll just have to continue to work around this until your migration to Exchange is complete.

  • Integrate Outlook Calendar for all users to Sharepoint 2013 calendar

    Hi,
    I have a specific requirement to add the outlook calendar for each user in my organisation to sharepoint 2013 calendar.
    Any user at any point of time can get the details for other user(s) from the Sharepoint 2013 calendar.
    I know there is a calendar overlay option in sharepoint which will add my outlook calendar to Sharepoint 2013.
    Can any one please help me to integrate all users calendar so that the schedule for any user(s) can be requested directly from Sharepoint 2013 calendar.
    I am ok to use exchange webservice and c# to achieve this.
    Thanks in advance.

    Hi Somdeep,
    I assume you are using Exchange product as SMTP server.
    If you would like to integrate all Exchange mailbox accounts' schedule to SharePoint calendar, I'd recommend you create a shared mailbox in Exchange side, then let all accounts make schedule on it. That way, you may need to overlay one Exchange
    calendar on SharePoint calendar.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Is there a way to send mass Outlook calendar invites?

    Our business is a subscription based business that has multiple service lines that hold a client only webinar each month. One of our service lines has found great success in terms of response and attendance sending out calendar invitations via Outlook.
    However, these invites can only be sent out to 20-30 email addresses at once without being marked by spam filters.
    1. Is there a way to do this in outlook or a product that allows us to do this?
    2. Is there a way to do a "mail merge" of sorts for outlook invitations?
    3. I know we are able to do a mail merge and attach an .ics file, but correct me if I'm wrong, we aren't able to verify who added that to their calendar because the sending email address won't receive an accepted or declined response. It would be
    nice to see who accepts as well because then we are able to cross reference our registration list and manually register those who may have just added the calendar request, but didn't go into the link to register for the conference--this also gives us collateral
    for sponsors.
    Any ideas would be very helpful. Thanks!
    PS - Most users are on either Office for Mac 2011 or Office 2010.
    Oliver Pugh Information Systems Administrator Healthcare Business Insights

    Please have a look at the suggestion in the below thread (answered by Diane) to overcome the spam issue.
    http://answers.microsoft.com/en-us/office/forum/office_2010-outlook/spam-creates-appointments/56e6ad96-5060-4a81-ba33-2b7e1621a349
    DeVa, M.S., {MSFT} Please remember to mark the replies as answers if they help

  • Can more than one iPhone share a MS Outlook Calendar?

    I successfully installed the iCloud control panel on my PC and was able to set up full access of my Outlook calendar on my new iPhone 4s.  I wondered if it is possible if my wife (using an iPhone 4) can share the same Microsoft Outlook Calendar on her phone too.  If it's doable, could someone let me know how to do it?  The iCloud "Help", explains below.  I think that these are the instructions on how to set it up from the Calendar on a Mac and not a PC.
    Any help is appreciated.
    Thanks!
    kennyfromsimcoe
    Go to icloud.com/calendar and sign in using your Apple ID (the one you use with iCloud).If you’re already using a different application on icloud.com, click the iCloud button to switch applications.
    Click the Share button (shown below) to the right of the calendar or reminder list in the sidebar, and then do one of the following:
    For reminder lists, go to step 3.
    For calendars, choose Private Calendar.
    Type the invitee’s email address in the Add Person field and press Return.

    I sync using mobile me - over the air, my wife syncs via itunes, we keep several calendars in ical.
    You can look through the manual as well. It may help you figure out what iphone can do.
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • How to display MS Outlook calendar of a user exactly in Office 365 SharePoint site calendar?

    Hi,
    I just followed the below article for getting my whole calendar events into my SharePoint Office 365 site's calendar.
    http://sharepoint.stackexchange.com/questions/83366/view-outlook-calendar-in-sharepoint-2013
    But I get the below error.
    The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'Basic Realm=""'. (830fe69c-407a-0000-24b4-502420637d1c)
    Any ideas how to achieve my requirement?
    Thanks in Advance,
    Thanan

    Hi,
    From your description, I know you want to use calendar overlay with exchange online in SharePoint online.
    I reproduce your issue, and it throws the same exception to yours. I try to find some information for you, I find that the feature is not available from this article:
    http://community.office365.com/en-us/f/148/t/221842.aspx.
    Thanks for your understanding.
    Best Regards
    Vincent Han
    TechNet Community Support

  • How can I sync my outlook calendar with iPhone or calendar on Maverick?

    I have just updated to Mavericks on my iMac. I use Microsoft Outlook for email, contacts and calendars. How do I now sync these on my iPhone ?
    The only sync seems to be via iCloud, this is sharing calendar and contacts on the iMac but if I make any calendar additions to the outlook calendar it doesn't copy to the phone or the iMac calendar and similarly if I add an item to the phone calendar it syncs to the iMac calendar but doesn't copy to outlook.

    1. Apple has removed sync services in OS X Mavericks. Therefore, you cannot sync Outlook 2011 with Contacts or Calendar.
    2. Apple has removed the ability to sync through iTunes in OS X Mavericks, so that, even if you use Contacts and Calendar on the Mac, you can only sync them with your iPhone through iCloud, thus exposing all your contacts and calendar information to the mercies of the Web.
    3. Microsoft does not not support CalDAV and CardDAV in Outlook, so there is no way to sync directly through iCloud, except perhaps by setting up a Microsoft Exchange account.
    4. Apple makes it extremely difficult (virtually impossible) to revert to a version of OSX that is earlier than OS X Mavericks once Mavericks is installed.
    In short, we are screwed and neither company seems to care.

  • Sync multiple Outlook calendars?

    Is is possible to create 2 different calendars on my iPod Touch from the 2 different calendars I have in Outlook?
    If not, can I make it so that both my Outlook calendars can sync with my one iPod Touch calendar?
    On the iTunes menu, when I look at my iPod Touch--> info page, it refers to "Sync calendars with: Outlook" and then offers 2 choices: "All calendars" or "Select calendar". However, the second option is not clickable.
    Any help appreciated.

    I have exactly the same requirement. If it helps here's my workaround pending a solution:
    1. Export the second calendar to Excel
    2. Import the Excel file to the first calendar.
    This successfully adds the contents of the second calendar to the first. (If you don't want to do this an alternative is to create a third calendar in Outlook to hold the merged contents).

Maybe you are looking for

  • Logging in to RPD in online mode fails after upgrading rpd from 10G to 11g

    Hello guys I have an issue here.. I have everything working in 10g using external table authentications by having 2 init blocks: ISAuthorization --- row wize initailization: select 'GROUP', UG.GROUPNAME from USER_USERGROUPS FFF, USER U, USERGROUP UG

  • Can my hp1510 scanner be used as a fax

    Can my scanner be used as a fax?

  • Installing CS4 problems

    My CS4 stalls (@ Checking System Profile) when I try to install it on my new IMAC. Not sure what is wrong. Can anyone help?

  • How do I create a title whose size matches my video frame size?

    How do I create a 1920x1080 title? I'm using Premiere Pro CS4 on Windows 7.  I created a default title.  If I right-click on the title in the Project Explorer and select properties, it says:   Title Size: 720 x 480   Pixel Depth: 32   Pixel Aspect Ra

  • BGP Timers

    I have a lab setup simulating 2 routers connected to 2 different service providers. I am forcing all traffic to go through router1 using weight values. I am simulating link failures by pulling the WAN connection on router1. The routing changes over q