Create an appointment in sap office calendar

Hello Gurus,
I should create an appointment in sap office calendar when the task is released.
This appointment should have :
as definition task = title appointment
definition project = description appointment
finish date task = date appointment
Somebody know some bapi for this functionality?
thanks in advance
Vanessa

EXACT same problem.  Eagerly awaiting any helpful reply.

Similar Messages

  • Creating an appointment in an exchange calendar using webdav (slide)

    Hello!
    I am new in webdav. I am trying for a long time to create an appointment in
    an exchange calendar (pubic folder) using webdav but without success.
    I am despairing.
    Here my programm:
    String strCalendarURI = "http://server/public/test1";
    HttpURL hrl = new HttpURL(strCalendarURI);
    hrl.setUserinfo("user", "pw");
    WebdavResource wdr = new WebdavResource(hrl);
    wdr.setDebug(1);
    Hashtable props = new Hashtable();
    props.put(new PropertyName("DAV:", "contentclass"), "urn:content-classes:appointment");
    props.put(new PropertyName("DAV:", "contentclass"), "urn:content-classes:appointment");
    props.put(new PropertyName("http//schemas.microsoft.com/exchange", "outlookmessageclass"), "IPM.Appointment");
    props.put(new PropertyName("urn:schemas:httpmail","subject"), "Changed Test Appointment Subject");
    props.put(new PropertyName("urn:schemas:httpmail","htmldescription"), "Let's meet                here");
    props.put(new PropertyName("urn:schemas:calendar","location"), "do");
    props.put(new PropertyName("urn:schemas:calendar","dtstart"), "2006-01-01T10:00:00.000Z");
    props.put(new PropertyName("urn:schemas:calendar", "dtend"), "2006-01-01T10:30:00.000Z");
    props.put(new PropertyName("urn:schemas:calendar","instancetype"), "0");
    props.put(new PropertyName("urn:schemas:calendar","alldayevent"), "0");
    props.put(new PropertyName("urn:schemas:calendar","responserequested"), "1");
    props.put(new PropertyName("urn:schemas:calendar","busystatus"), "BUSY");
    props.put(new PropertyName("urn:schemas:calendar","meetingstatus"), "CONFIRMED");
    props.put(new PropertyName("header", "to"), "user");
    props.put(new PropertyName("urn:schemas:mapi","finvited"), "1");
    out.print("returned value ...     " + wdr.proppatchMethod(props, true));
    The output:
    to server ---------------------------------------------------PROPPATCH /public/test1 HTTP/1.1
    Authorization: Basic Qi5XZWl0bGFuZXI6c3NvYg==
    Content-Type: text/xml; charset=utf-8
    User-Agent: Jakarta Commons-HttpClient/2.0final
    Host: server
    Content-Length: 1068
    <D:propertyupdate xmlns:D="DAV:">
    <D:set>
    <D:prop>
    <responserequested xmlns="urn:schemas:calendar">
    1
    </responserequested>
    <dtend xmlns="urn:schemas:calendar">
    2006-01-01T10:30:00.000Z
    </dtend>
    <meetingstatus xmlns="urn:schemas:calendar">
    CONFIRMED
    </meetingstatus>
    <to xmlns="header">
    user
    </to>
    <instancetype xmlns="urn:schemas:calendar">
    0
    </instancetype>
    <outlookmessageclass xmlns="http//schemas.microsoft.com/exchange">
    IPM.Appointment
    </outlookmessageclass>
    <location xmlns="urn:schemas:calendar">
    do
    </location>
    <alldayevent xmlns="urn:schemas:calendar">
    0
    </alldayevent>
    <dtstart xmlns="urn:schemas:calendar">
    2006-01-01T10:00:00.000Z
    </dtstart>
    <htmldescription xmlns="urn:schemas:httpmail">
    Let's meet here
    </htmldescription>
    <finvited xmlns="urn:schemas:mapi">
    1
    </finvited>
    <D:contentclass>
    urn:content-classes:appointment
    </D:contentclass>
    <v xmlns="urn:schemas:contacts">
    1
    </v>
    <subject xmlns="urn:schemas:httpmail">
    Changed Test Appointment Subject
    </subject>
    <busystatus xmlns="urn:schemas:calendar">
    BUSY
    </busystatus>
    </D:prop>
    </D:set>
    </D:propertyupdate>
    <<<<<<< from server ---------------------------------------------------
    HTTP/1.1 207 Multistatus
    Date: Wed, 25 Jan 2006 08:38:54 GMT
    Server: Microsoft-IIS/6.0
    MicrosoftOfficeWebServer: 5.0_Pub
    X-Powered-By: ASP.NET
    MS-Exchange-Permanent-URL: http://server/public/-FlatUrlSpace-/ddd97380fa9bf5429d9fdc31ddb24cd9-288e4
    Repl-UID: <rid:ddd97380fa9bf5429d9fdc31ddb24cd9000000000529>
    Content-Type: text/xml
    Content-Length: 617
    ResourceTag: <rt:ddd97380fa9bf5429d9fdc31ddb24cd9000000000529ddd97380fa9bf5429d9fdc31ddb24cd9000000000879>
    MS-WebStorage: 6.5.7638
    <a:multistatus
    xmlns:a="DAV:"
    xmlns:b="urn:schemas:calendar"
    xmlns:c="header"
    xmlns:d="http//schemas.microsoft.com/exchange"
    xmlns:e="urn:schemas:httpmail"
    xmlns:f="urn:schemas:mapi"
    xmlns:g="urn:schemas:contacts">
    <a:response>
    <a:href>
    http://server/public/test1
    </a:href>
    <a:propstat>
    <a:status>
    HTTP/1.1 200 OK
    </a:status>
    <a:prop>
    <b:responserequested>
    </b:responserequested>
    <b:dtend>
    </b:dtend>
    <b:meetingstatus>
    </b:meetingstatus>
    <c:to>
    </c:to>
    <b:instancetype>
    </b:instancetype>
    <d:outlookmessageclass>
    </d:outlookmessageclass>
    <b:location>
    </b:location>
    <b:alldayevent>
    </b:alldayevent>
    <b:dtstart>
    </b:dtstart>
    <e:htmldescription>
    </e:htmldescription>
    <f:finvited>
    </f:finvited>
    <a:contentclass>
    </a:contentclass>
    <g:v>
    </g:v>
    <e:subject>
    </e:subject>
    <b:busystatus>
    </b:busystatus>
    </a:prop>
    </a:propstat>
    </a:response>
    </a:multistatus>
    to server ---------------------------------------------------PROPFIND /public/test1 HTTP/1.1
    Authorization: Basic Qi5XZWl0bGFuZXI6c3NvYg==
    Content-Type: text/xml; charset=utf-8
    User-Agent: Jakarta Commons-HttpClient/2.0final
    Host: server
    Content-Length: 207
    Depth: 0
    <D:propfind xmlns:D="DAV:">
    <D:prop>
    <D:displayname>
    </D:displayname>
    <D:getcontentlength>
    </D:getcontentlength>
    <D:getcontenttype>
    </D:getcontenttype>
    <D:resourcetype>
    </D:resourcetype>
    <D:getlastmodified>
    </D:getlastmodified>
    <D:lockdiscovery>
    </D:lockdiscovery>
    </D:prop>
    </D:propfind>
    <<<<<<< from server ---------------------------------------------------
    HTTP/1.1 207 Multistatus
    Date: Wed, 25 Jan 2006 08:38:54 GMT
    Server: Microsoft-IIS/6.0
    MicrosoftOfficeWebServer: 5.0_Pub
    X-Powered-By: ASP.NET
    Content-Type: text/xml
    Accept-Ranges: rows
    MS-WebStorage: 6.5.7638
    Transfer-Encoding: chunked
    <a:multistatus
    xmlns:a="DAV:"
    xmlns:b="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"
    xmlns:c="xml:">
    <a:response>
    <a:href>
    http://server/public/test1/
    </a:href>
    <a:propstat>
    <a:status>
    HTTP/1.1 200 OK
    </a:status>
    <a:prop>
    <a:displayname>
    test1
    </a:displayname>
    <a:getcontentlength b:dt="int">
    0
    </a:getcontentlength>
    <a:resourcetype>
    <a:collection>
    </a:collection>
    </a:resourcetype>
    <a:getlastmodified b:dt="dateTime.tz">
    2006-01-25T08:38:54.755Z
    </a:getlastmodified>
    <lockdiscovery xmlns="DAV:">
    </lockdiscovery>
    </a:prop>
    </a:propstat>
    <a:propstat>
    <a:status>
    HTTP/1.1 404 Resource Not Found
    </a:status>
    <a:prop>
    <a:getcontenttype>
    </a:getcontenttype>
    </a:prop>
    </a:propstat>
    </a:response>
    </a:multistatus>
    It looks not so bad. But no appointment is created.
    Where is the problem?
    When i google for the problem i always find howtos for .NET but nearly nothing for java
    Thank you for your help.
    best regards
    Bernhard

    I am working in same topic so please if you have been sloved it send it to me.
    I will be very thankfull for you.
    Thanks

  • Sap Office PDF to ArchiveLink

    In one of our workflow we create a PDF in SAP office with the request information that we send to the employee. If the request is approved, HR people archive this in the employee archive. This is done manually and takes lots of time.
    We want to do this automatically. We have already have a archivelink link to our archive.
    Is it possible and if how to copy the SAP office document to our archive by archivelink. We also need to specify the correct archive.
    Some documentation would be helpfull.

    Hi,
    Check the function group ARCHIVOBJECT (not sure if this was spelled correctly, but check for example function ARCHIVOBJECT_GET_TABLE and its function group). This function group includes many useful functions which you can use to programatically archive documents with archivelink. There is also lots of examples in SDN - just search with some of the functionas that you can find and look promising.
    Regards,
    Karri
    PS. Check for example this thread: Re: Generic Object Services (GOS) + ArchiveLink against IXOS.
    Edited by: Karri Kemppi on Mar 23, 2010 6:21 PM

  • Uploading file and creating SAP office documnet in background

    Hi,
    Is ther any FM which will upload the PDF file from PC in SAP office to create document in SAP
    i.e. create SOFM object , so that it can be used for attachmnets purpose?
    P.S. I am trying to use SO_OBJECT_UPLOAD , which does not work in background - error is Front-end services are not available.
    Regards,
    Akshay

    To upload in background you need to use OPEN DATASET later modify the record as you want to..also not the Window Path but you need to pass UNIX path.

  • How can I create a recurring appt/event on calendar on ipad3?  Ex:  12-1pm on Tuesday and Thursday for 2 weeks.

    When I try to create an appointment that occurs for more than a day it appears on my calendar for the entire day and not the time that I want. Example:  create an appointment on Monday, Wednesday and Friday for 12-1pm and goes for two weeks. I just want the appointment to show up on those 3 days for 2 weeks for that hour only. This task was very easy in Outlook but I can't seem to do it on my iPhone or iPad. I should mention that my phone  is a 3GS and the iPad is 3rd generation. Thanks in advance for your help.

    Thanks for responding. I'm an outside sales person and I create the vast majority of my appointments while I'm out of the office. When I'm in the office I certainly create them this way.  It would be great if Apple could make this option available.

  • Outlook2014 - Creating an appointment issue

    Hi guys,
    I am in an Enterprise environment and our email accounts are hosted by Microsoft on O365.  We have a client who have recently received a new machine.
    Previously the client was using Office 2010 and Outlook2010 and since he's received a new machine, he is now on Office 2013 & OUtlook2013.
    The issue he is experiencing is that he is unable to create a new appointment or any appointment in a shared calendar.  The shared mailbox/calendar was initially setup as a regular mailbox and i've tried changing it to a resource and it didn't make
    a difference.
    Errors:  you don't have permsisiosn to create an entry in this folder
    Details are as follow:
    1) Client is an owner of the shared calendar. 
    2) I have removed and re-added him as an owner in Powershell.  I have also changed his permissions level to publishing editor as some people have suggested on some forums to no avail.
    3) He cannot check the Permissions Properties tab.
    4) I have changed his permissions level in my Outlook from Owner to PUblishing Editor.  The permissions change however upon applying it, it prompted me with an error.
    5)  Client is able to create calendar appointments in Outlook2010
    6)  Client is also able to create calendar appointments in OWA
    7)  Tried re-creating client's profile and it didn't make a difference.
    8)  Have also tried clearing offline cache in Outlook and also the Microsoft Only credentials in Credentials Manager.
    9)  He is able to access the calendar if I create a separate Outlook profile just to have access directly to the shared mailbox.
    I am out of ideas. Any advise is welcome. If no one has any ideas, I will try logging a ticket with Microsoft Tech Support for further assistance. Thank you in advance.

    Hi,
    since your question relates to the hosted/service aspects of O365 (specifically ExchangeOnLine), a better forum for your question might be here:
    http://community.office365.com/en-us/f/default.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • How to implement SAP organizational Calendar in my application?

    Hi,
    I have to create an application page that could either be developed in Web Dynpro or JSP. This page should contain a list of countries and when the user selects a country, the page must make use of the SAP Organizational Calendar to fill a grid with the predefined list of holidays for that country. How can i implement this?

    Hi,
    I have to create an application page that could either be developed in Web Dynpro or JSP. This page should contain a list of countries and when the user selects a country, the page must make use of the SAP Organizational Calendar to fill a grid with the predefined list of holidays for that country. How can i implement this?

  • How do I prevent/fix iCloud from creating duplicate CONTACTS "notes" and recurring CALENDAR items?

    I use a PC with Outlook 2010 at my office.  At home I use and iMac. My mobile devices are an iPad & iPhone.  I just upgraded all operating systems and switched from Mobile Me to iCloud.  Everything (new appointments, new contacts) seems to sync as it should with a couple of exceptions;
    1) In the "notes" sections of my CONTACTS I now have triplicates of all of my "notes" for each individual contact (with thousands of contacts it would be impossible to clean this up one at a time).  Does anyone know how to easily fix this so that I only have 1 set of notes for each contact?
    2) Regarding the CALENDARS...in Outlook and the other devices, I'm only running the iCloud calendars (all others are unchecked) however, there are multiple Calendars that seem to have been created.  I've deleted all calendars that aren't necessary or don't appear to be used, however in my iOS devices (iphone & ipad) when I tap the CALENDARS button to open the SHOW CALENDARS pane, I can scroll down and see a section that says "Other" and has a "Birthdays" calendar which is obviously pulling the data from Outlook.  This "birthday" calendar doesn't show up anywhere in Oulook.  95% of my contacts were originally created in Outlook and when known, I have put their birthdays, anniversaries, etc. in the corresponding fields.  Normally, this would create a recurring event/reminder in Outlook but now I have 2 to 4 of the same event in each device.  If I delete the redundant Birthdays/anniversaries, etc. (shown in grey & blue on my  calendar vs. another little icon of a birthday present) on the iOS devices the calendar on Outlook will no longer show these events (90% of the time I'm relying on my Outlook calendar at work for these reminders). I would like to be able to see the same data as only 1 occurence of each event across each of my devices. Any suggestions or help would be much appreciated.

    The problem may be that the iphone is immediately syncing with icloud and losing the newly restored data.  You might turn off your router.  Once restored, turn off icloud on the device, turn on the router, then turn on the iphone.
    (I'm going by memory on this, and that hasn't been too reliable lately.)

  • Is there a way to create an appointment from the contact screen

    I want to create an appointment for a contact so it included phone number and address.  Is there a way to do it on an iPhone?  Thanks.

    If there is, I don't know how. I moved to Apple products about a year ago and in general I love them, but they just don't do some of the most basic of things, this being one of them. At the end of the day Microsoft Office products are head and shoulders ahead of the game.

  • Can not add a New appointment to a shared calendar in Outlook 2010, can only add a New Meeting.

    Hi
    I can not add a new appointment to a shared calendar in Outlook 2010. I can see the calendar and appointments in it (all appointments are marked as busy, the detail can not be seen. I want it to do this) and I can and a New meeting to the shared calendar
    but I can not add just an appointment.
    I do not want e-mail being sent to the owner of the shared calendar everytime I add something.
    When I view the appointment that im creating in the shared calendar the New appointment button is greyed out but the New meeting button is available.
    The permision on the shared calendar for the user is:
    Custom
    Read = none
    Write = create items, create subfolders, edit own
    delete = Own
    Other = folder visable
    Thanks
    contributor permission in outlook 2010 calendar does not work, I have given this as permision but issue is the same.  We currently connect to an exchange server 2003;

    Hi Cmrl,
    Does it happen when you create an appointment via OWA?
    Does it happen when you create an appointment via Outlook 2003?
    Do you have any mobile device?
    How many users encountered the issue, all users or some user?
    At first, I suggest you recreate outlook profile.
    At second, 
    use PFDAVAdmin
    to correct any problems found.

  • How i can send a mail to the user SAP Office mailbox through the spool.

    hi all,
    I have created an report and scheduled for background and it generated a spool now how i can send a mail to the user SAP Office mailbox through that spool.
                          please provide me the sample code if possible.
                   thanks.

    Read the spool number with this...
        SELECT RQIDENT
        INTO (T_TSP01-RQIDENT)
        FROM TSP01
        WHERE RQOWNER EQ SY-UNAME
          AND RQCLIENT EQ SY-MANDT.
        APPEND T_TSP01.
        ENDSELECT.
    Use this FM RSPO_IRETURN_RAW_DATA to read the content of the spool into an Internal Table...
    Finally use this FM SO_OBJECT_SEND to send the mail to an SAP Office user...
    Greetings,
    Blag.

  • SAP office messages can't be opened in UWL

    Hi,
    I have installed and tested SONIC (SAP Office Notification Connector). I have a SAP_ALL profile. When I receive a SAP office message, I can either open it in the SBWP or in the UWL notification tab (all my messages show up and I can display its content).
    I have created other users with no SAP_ALL profile. These users have the right to access to the SBWP and see their messages. When they log on the portal, they are able to see the list of messages, but when they click on display to see their content, the message is empty. I think I am facing an authorization issue, but I have no idea what are the necessary authorization objects I should add to my users' profile.
    Any help would more than much appreciated.
    Thanks in advance.
    Thibault

    Did you look what SU53 say? Did you do an authorisation trance with ST01? That will tell you the details if you are facing an authorisation issue.
    Regards,
    Karri

  • How to create a Quick Step to create an appointment but keep the formatting

    I created a Quick Step in Outlook 2013 to create an appointment from a selected email.  The process works except the appointment is created with only the text from the email; all formatting and graphics are lost.  I guess this is the expected
    behavior since the Action is called "Create an appoint with text of message."  Is there a way to set this up so the formatting is retained?

    Hi,
    This is expected and not changeable currently.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can I get autofill to use my contacts when creating an appointment ?

    I'm looking for a quick and easy way to create an appointment form a contact or at least have the calendar app autofill from my contacts.

    Most likely the library blocks the ports needed for sending and receiving mail. Check with them.
    ''some Thunderbird setting that prevents Thunderbird from working, maybe because it considers this a vulnerable network.''
    There is no such Thunderbird setting.

  • How to create an appointment in crm webui?

    hello experts!
    i'm verymuch new to crm webui. would anybody please let me know how to create an appointment in crm web ui. even though i established a account and contact relationship in t-code BP in GUI. The error still pops up asking me to enter Sales organization,distribution channel and division.
    regards
    sanguine

    You can follow chapter "3.1 Maintaining Organizational Data Profile" from best practices' building block ['C23: CRM Basic Sales'|http://help.sap.com/bp_crm70/BBLibrary/HTML/C23_EN_DE.htm]. For "Organizational Model Determin. Rule" instead of a rule 10000166 enter 10000194. It will determine org. data from current user.
    Also take a look in near settings. There you can define your own rule.
    Or check this thread Org Unit determination based on Emp Resp in Task which describes how to create profile for employee responsible.

Maybe you are looking for

  • How to unassign handling unit in outbound delivery?

    (Don't Want to delete HU onlu unassign it from delivery: WM requirement) I would like to unassign HU in an outbound delivery. code i'm using make the handling unit disappear in the overview of HU. but corresponding line in the "item overview" are sti

  • Project stops at a certain frame

    I have been scanning these forums and I have not come across a fix for the problem I am having. Also, please keep in mind I am somewhat of a AE Novice, so if the fix is simple don't blame me for not finding it Basically, I am trying to render a loopi

  • Mac Mail - rebuild address book

    I've replaced the disk drive in my daughter's MacBook after a total disk crash and reinstalled OSX etc. She had quite a lot of stuff backed up, but not her MacMail address book. Fortunately our ISP has kept nearly 3000 emails she sent via webmail (wh

  • MacBook Pro updated at MacWorld

    Just got off the phone to the Apple Store as I was about to place an order for a MacBook Pro. They advised me to wait until Wednesday to call place my order...the same advice was given to me in person at an Apple retail store last Friday. Seems stran

  • FWSM not reaching it´s Syslog Server

    Hi, I have a FWSM Ver. 4.1(5) configured in transparent mode. My problem is that the FWSM is not reaching the Syslog Server. The FWSM can reach other Servers in the  10.10.113.0/24 Subnet, which is the Syslog Server´s Subnet. What can be causing this