Partly reserve a resource like a meeting room

Hi fellow Technetters,
I have a question. The title says it all actually.
What I want to know if it is somehow possible to partly reserve a resource like a training/meeting room.
We have, in our office, a training room which can also be used as a meeting room. There are 4 training workplaces setup in the training/meeting room.
What I want to do is to create 4 separate calendars for each training workplace. I know how to do that so that's not the problem.
Then I want to create a fifth calendar for the whole training/meeting room so it can be reserved completely.
But here comes the tricky party. If colleague1 already reserved one (or more) of the training workplaces in that room, and colleague2 tries to reserve the
whole training/meeting room, colleague2 should get the message that his/her reservation is declined because one (or more) of the training workplaces is already reserved.
So in short, somehow there must be a connection between the 4 separate training workplace calendars and the fifth whole training/meeting room calendar.
Is this even possible in Exchange?
If yes, how?
Gr,
Ash

Hi Ash,
Based on my knowledge, there is no method to achieve this. The resource assistant which is used for room mailbox can't achieve this relationship among mutiple room mailboxes. The meeting request forwarding is not a good choose either.
I suggest we can just create four calendars for these four training workplaces. When the user wants to book the whole meeting room, please add all four rooms in the Location field and send meeting request as a workaround. Then the room would not be conflicted
during the booking.
Regards,
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
Winnie Liang
TechNet Community Support

Similar Messages

  • How do I add resources as a meeting room to iCal?

    How do I add resourcas as a meetingroom to iCal?

    An iPad is not a multi-user device and does not support separate user accounts. You can go to Settings > General > Reset > Erase All Content and Settings, and set it up as your own.

  • [E2010][EWS-XML][JAVA]How to get the properties of meeting rooms in Exchange 2010 using EWS Java API

    When you look at meeting room properties in Outlook 2010, you can see 'City', 'Country/Region' and 'Department' information.
    Is there any way to get this information using EWS Java API? 

    Hi Glen,
    I am able to understand what u have said, but do not know how to implement it with meeting rooms....
    If i am implementing
    "Get all appointments between startDate and endDate in the specified folder, including recurring meeting occurrences" in ews-java-api, as you have mentioned above, i am able to get only my appointments from the start date to end date , as i
    have given my email id and password, how to get my organization meeting room details, booked or not.
    static ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
    public static void main(String[] args) throws Exception {
    // TODO Auto-generated method stub
    ExchangeCredentials credentials = new WebCredentials("[email protected]", "zzzz");
    service.setCredentials(credentials);
    try {
    System.out.println("Check");
    service.autodiscoverUrl("[email protected]",new RedirectionUrlCallback());
    } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    NameResolutionCollection nameResolutions = service.resolveName("SDB1",ResolveNameSearchLocation.DirectoryOnly, true);
    System.out.println("nameResolutions==="+nameResolutions.getCount());
    for(NameResolution nameResolution : nameResolutions)
    System.out.println("NAME==="+nameResolution.getContact().getDisplayName());
    The above code gives me the output like, the meeting room in my organization with word SDB1 are
    Output:
    nameResolutions===2
    NAME===SDB1- TELCON - 1
    NAME===SDB1-TELCON - 2
     for. eg. I need to know today at what are the appointments in the room SDB1-TELCON2 and who all have booked the room.
    I do not know how to implement for the meeting room can you please help me how to give it.
    Thanks in advance.

  • Exchange 2010 - How can add a meeting room resources and make it available to users to view and book a room

    Hello,
    I need to setup a group of meeting rooms in Exchange to enable (approx 300) users to view and book rooms.
    I would be very grateful if anyone has a step by step guide they can share with me.
    Many thanks !

    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/resource-mailboxes-exchange-2010-part1.html
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Exchange 2007: User getting meeting invitations from 3 meeting rooms

    Hi,
    Hope someone can help. I have an Exchange 2007 server with various room mailboxes.  One user is getting meeting room invitations from 3 meeting rooms. He is not a delegate on these meeting rooms, nor does he seem to have special permissions on their
    calendars. I checked a couple of persons who ARE delegates, to see if he was a delegate on them in case there was some weird looping thing going on but nothing. I also checked transport rules and there was nothing that could cause this behavior.
    Anyone have any ideas, because I don't?
    Thanks.

    Not sure that I follow this completely.  My understanding of this issue is that there are 3 or so resource mailboxes who I assume are setup to auto-process incoming meeting request.  For each received meeting request, another user is receiving
    a copy of the meeting request, even though he is not listed as a delegate nor are there any rules configured to send to this user.
    So my understanding of the question was, why is this user receiving meeting notifications for these calendars/resource mailboxes?
    But now it sounds like there is a 3rd person involved. 
    Are there any calendar folder permissions or settings specifically defined in any of these 3 locations (resource mailbox, user1, colleague)?
    Completely remove delegates from all 3 resources & apply the change.  Test to see if the problem still occurs.  If not, re-add all of the users who should be delegates and test again. If they get the message again once delegates are added,
    then one of those delegates might be the cause.
    For PublicDelegates, open ADSIEdit  and look at the Active Directory properties of each users.  These are attributes on the AD object.  Just open ADSIEDIT.msc, select the defaults in the Connect To window, go to the OU where the users
    reside, and view the properties of the users.

  • 'Could not find the requested node error' when guests join the meeting room

    I am working on a program where the owner would allow guests after they knock to enter the meeting room.  Upon acceptance, they would also be permitted to publish/subscribe audio.
    My ' meeting owner' application code is an adaptation of the Knocking Queue example. The 'owner app' code has the following settings in its creation complete.
    // Require that guests must knock.Note that this line changes the setting of your room so that in future anyone guest coming in
    // has to knock.
    cSession.roomManager.guestsHaveToKnock = true;
    //Enable autopromote
    cSession.roomManager.autoPromote =
    true;
    I get an error when the owner logins in first and accepts the guest into the meeting room.
       // Event handler function for displaying the selected Alert button.
                private function alertClickHandler(event:CloseEvent):void {
                 var queue:Array = pendingArray;
                 if ( cSession.userManager.myUserRole == UserRoles.OWNER ) {
          var item:Object = pendingArray.shift();
          trace (item["label"]);
          trace (item["descriptor"].userID);
                   if (event.detail==Alert.OK)
                    //Admit user for chatting
           cSession.roomManager.knockingQueue.acceptUser(item["descriptor"].userID);
           //Allow user to publish audio - supposed to be promoted through room setting
           //audioPub.setUserRole(item.descriptor.userID, UserRoles.PUBLISHER);
          else //if (event.detail==Alert.CANCEL)
           cSession.roomManager.knockingQueue.denyUser(item["descriptor"].userID);
    The 'client' application throws the following error.
    SWF] C:\Documents and Settings\a246216\My Documents\Flex Builder 3\Client Chat Tool\bin-debug\ClientChatTool.swf - 1,572,471 bytes after decompression
    AFCS Beta Build # : 0.92
    requestInfo http://connectnow.acrobat.com/fidelity2/ramr?guk=ZzprOg==&mode=xml&x=0.011843591462820768
    Getting FMS at https://na2.connectnow.acrobat.com/fms?ticket=1468amkp7k35g, attempt #1/3
    result: <fms>
      <origin>fms2.acrobat.com</origin>
      <proto_ports>rtmps:443</proto_ports>
      <retry_attempts>2</retry_attempts>
    </fms>
    #FMSConnector# Tue May 12 11:26:50 GMT-0400 2009 protocols: [object ProtocolPortPair]
    #FMSConnector# Tue May 12 11:26:50 GMT-0400 2009 [attempt 1 of 2] Connecting to 0/0: rtmps://fms2.acrobat.com/cocomo/na2-sdk-825d634c-46ed-4ed3-aa58-7450f0f7e36a/ramr #startProtosConnect#
    #FMSConnector# Tue May 12 11:26:50 GMT-0400 2009 tempNetStatusHandler 0/1,NetConnection.Connect.Success
    #FMSConnector# Tue May 12 11:26:50 GMT-0400 2009 isTunneling? false
    #FMSConnector# Tue May 12 11:26:50 GMT-0400 2009 is using RTMPS? true
    RECEIVED LOGIN AT SESSION
      .user descriptor from server [object]
        .displayName [string]= k
        .userID [string]= GUEST-110858C2-4F16-4FE8-BF2C-D572F915FEC5
        .affiliation [number]= 5
        .role [number]= 5
    RECEIVENODES UserManager
    receiveAllSynchData UserManager
    checkManagerSync:[object UserManager]
    RECEIVENODES FileManager
    receiveAllSynchData FileManager
    checkManagerSync:[object FileManager]
    RECEIVENODES AVManager
    receiveAllSynchData AVManager
    checkManagerSync:[object StreamManager]
    RECEIVENODES RoomManager
    receiveAllSynchData RoomManager
    checkManagerSync:[object RoomManager]
    RECEIVENODES Chat
    receiveAllSynchData Chat
    Error: Could not find the requested node.
    at com.adobe.rtc.sharedModel::CollectionNode/getNodeConfiguration()[C:\work\main\connect\coc omoPlayer10\src\com\adobe\rtc\sharedModel\CollectionNode.as:394]
    at com.adobe.rtc.sharedManagers::StreamManager/getNodeConfiguration()[C:\work\main\connect\c ocomoPlayer10\src\com\adobe\rtc\sharedManagers\StreamManager.as:577]
    at com.adobe.rtc.collaboration::AudioPublisher/onUserRoleChange()[C:\work\main\connect\cocom oPlayer10\src\com\adobe\rtc\collaboration\AudioPublisher.as:1009]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at com.adobe.rtc.sharedManagers::StreamManager/onUserRoleChange()[C:\work\main\connect\cocom oPlayer10\src\com\adobe\rtc\sharedManagers\StreamManager.as:1410]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at com.adobe.rtc.sharedModel::CollectionNode/http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveCascadingUserRole()[C: \work\main\connect\cocomoPlayer10\src\com\adobe\rtc\sharedModel\CollectionNode.as:813]
    at com.adobe.rtc.messaging.manager::MessageManager/http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveUserRole()[C:\work\mai n\connect\cocomoPlayer10\src\com\adobe\rtc\messaging\manager\MessageManager.as:715]
    at com.adobe.rtc.session.managers::SessionManagerBase/receiveUserRole()[C:\work\main\connect \cocomoPlayer10\src\com\adobe\rtc\session\managers\SessionManagerBase.as:352]
    The above error is thrown just when the 'guest' is accepted into the meeting room.  The guest has not published anything at this point.
    The chat part is working fine.
    I have tried different ways to resolve this issue but I am not getting anywhere.  I have tried different things.  Your help is appreciated.
    Ram

    It is win 7 64 bit system and same error on Illustrator x86 and x64.

  • File Share Pod in Meeting Room: File Names Changed by Connect 9?

    In Connect 9.1 I create meeting rooms. After I have one "just right" I move it to the My Templates folder, to be used in future as the basis for other meeting rooms. The room that I put in My Templates folder contains a File Share Pod, and in that I uploaded three PDF files (small file size).These PDF files had names like "Course Journal" and "Job Aid".
    BUT, when I created a new meeting room based on the template room, the File Share Pod in the new room contained the right number of files, but with names like "/p4cofh5hqse/".
    How can I make Connect use my file names instead of the names it assigns?
    My alternatives now seem to be two:
    - In each of my new rooms, open the File Share Pod and rename each file (if I make 5 rooms, and each has 5 files, you can see this will take a lot of time and wasted energy)
    - Don't put files in the original meeting room's File Share Pod. Then upload files into each new room's File Share Pod from either my local machine or from Shared Content or My Content. Again, a lot of work.
    Thanks, Colleagues, for posting some suggestions/answers!

    It looks like it is taking the name from the URL for the content object. Try uploading the files to your Content library and give them a custom URL, like course_journal and job_aid. Then place those files in the file share pod of the template room and see if it takes the name or the url to the rooms created from it. Maybe not a 100% solution, but may be a good enough work around to save you more pain and effort.
    This sounds like a bug to me. Maybe worth reaching out to support to see if they can qualify it as one or identify the root problem causing the issue.

  • New Appointment creation in Meeting Room exception

    Dear KMC experts,
    I have a problem while creating new appointment in the collaboration room based on template "<b>Meeting Room</b>" on SAP EP KMC SPS 14.
    When I fill in all the information about the appointment and click on Send button, an exception occurs and no appointment is set for the "Next Meeting" iView in the main page of the room.
    It seems that part of the process works fine because the e-mail with the appointment date of the proposal is sent.
    I would really appreciate your help.
    Regards Jiri
    PS: Error message listed below.
    Versions:
    Portal 6.0.14.0.0
    KnowledgeManagementCollaboration 6.0.14.1.0 (NW04 SPS14 Patch 1)
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception:
    class com.sap.netweaver.coll.meetingroom.util.CurrentMeetingException
    Call Stack:
    com.sap.netweaver.coll.meetingroom.util.CurrentMeetingException
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.readDataFromGroupware(CurrentMeeting.java:441)
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.readCurrentMeetingData(CurrentMeeting.java:159)
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.isAvailable(CurrentMeeting.java:662)
            at com.sap.netweaver.coll.meetingroom.meetingoverview.OverviewControl.receive(OverviewControl.java:702)
            at com.sapportals.wdf.stack.Control.dispatchWdfEvent(Control.java:427)
            at com.sapportals.wdf.stack.Control.dispatchWdfEvent(Control.java:433)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:408)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.PaneStack.executeEvent(PaneStack.java:269)
            at com.sapportals.wdf.WdfCompositeController.executeEvent(WdfCompositeController.java:353)
            at com.sapportals.wdf.WdfCompositeController.onWdfEvent(WdfCompositeController.java:539)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sapportals.htmlb.page.DynPage.doProcessCompositeEvent(DynPage.java:204)
            at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:142)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115)
            at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:62)
            at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:22)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sapportals.wcm.app.servlet.WcmHtmlbBaseServlet.service(WcmHtmlbBaseServlet.java:109)
            at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:334)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sapportals.portal.prt.core.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:110)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
            at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    exception is chained. Original exception -
    Key already exist in Cache and overriding should not be forced
            at com.sapportals.portal.prt.service.cache.CacheEngine.put(CacheEngine.java:151)
            at com.sapportals.portal.prt.service.cache.CacheEngine.put(CacheEngine.java:130)
            at com.sapportals.portal.prt.service.cache.CacheService.put(CacheService.java:140)
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.readDataFromGroupware(CurrentMeeting.java:437)
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.readCurrentMeetingData(CurrentMeeting.java:159)
            at com.sap.netweaver.coll.meetingroom.util.CurrentMeeting.isAvailable(CurrentMeeting.java:662)
            at com.sap.netweaver.coll.meetingroom.meetingoverview.OverviewControl.receive(OverviewControl.java:702)
            at com.sapportals.wdf.stack.Control.dispatchWdfEvent(Control.java:427)
            at com.sapportals.wdf.stack.Control.dispatchWdfEvent(Control.java:433)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:408)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.Pane.updateControls(Pane.java:421)
            at com.sapportals.wdf.stack.PaneStack.updateTopControls(PaneStack.java:324)
            at com.sapportals.wdf.stack.PaneStack.executeEvent(PaneStack.java:269)
            at com.sapportals.wdf.WdfCompositeController.executeEvent(WdfCompositeController.java:353)
            at com.sapportals.wdf.WdfCompositeController.onWdfEvent(WdfCompositeController.java:539)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at com.sapportals.htmlb.page.DynPage.doProcessCompositeEvent(DynPage.java:204)
            at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:142)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115)
            at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:62)
            at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:22)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sapportals.wcm.app.servlet.WcmHtmlbBaseServlet.service(WcmHtmlbBaseServlet.java:109)
            at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:334)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sapportals.portal.prt.core.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:110)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
            at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)

    Hello all,
              I found the solution for this problem. It is a bug in SP14 that will be fixed in SP15. Also there will be a hotfix available in January 2006 for SP14 if you want to wait. I reported this bug to SAP and they provided me with the solution (hotfix). If you are in a hurry then you might need to open OSS call for this.
    Best regards,
               Hamad

  • Modifying the Collaboration Meeting Room

    Hello, 
    I am running EP 7.0 (Netweaver 2004s) SPS 9.  I copied the meeting room template and created my own version.  Then I took that meeting room template and used it to create a test meeting room. 
    My problem is that now that I have the room, I would like to personalize by putting some sort of graphic in it.  I would like to do that in the iview that comes up at the top of the page that identifies the meeting room name.   I cannot seem to find where/how to do that.  Can I do that at the room level or do I have to do that at the room template level?  
    Any help would be appreciated as I am a novice without any formal training. 
    Thanks
    Angie

    Perhaps, I need to clarify what I am trying to accomplish.  I created a room template, then I created a room from that template.  It is a meeting room.  I am trying to figure out a way to change the roominformationextended iview so that I can include a customized image. 
    What is the way to do this?
    Thanks
    Angie.
    Edited by: Angie Radjen on May 11, 2009 3:42 PM

  • Record multiple, simultaneous sessions through one webinar meeting room

    Is there a way to record multiple, simultaneous sessions through one webinar meeting room? I know breakout rooms can't be recorded, but is there another way to have users join a main webinar room, select a sub-room/session they're interested in, and then join that sub-session? We want to have four sessions happening at once and allow users to choose which they want to participate in. We'd also like to record the sessions. Thanks for any help you can provide.

    Use PPT, or a tool of your choice, to create a slide/object with links to each room. Then the user can click between the rooms as desired.
    You may want to use the ?launcher=false command at the end of the URLs to keep the individuals from having the add-in launched multiple times and in multiple rooms at the same time. This will keep the meetings in the individual's browser.

  • Location, Capacity information of Meeting Room at Zimbra

    Hi,
    Sorry if this is an faq.
    I installed my Beehive 2.0 instance, and created a meeting room with BeeKeeper specifying location, Contact, and Capacity information.
    However, when I search a meeting room with Zimbra to create new appointment, these information are not displayed although there are corresponding columns.
    How can I set Zimbra to show these information?
    Regards,
    Ats

    Hello,
    On Zimbra when you create a meeting and you want to add a resource click on "More details"
    Then, if you want to add
    - a resource type room, click on Find Location.
    - a resource type, equipment or other , click on Find Resources
    In both cases, use the " % " as wildcard character to make your searches
    Regards
    Fred

  • Renamed meeting room not resolving and people can still book using old name.

    I have renamed a meeting room ( using power shell) and restricted the resource in policy requests to a limited list as per an users request.  The issue is that people can still book it, I'm told, using its old name including people not on the list of
    resource in policy requests.
    I can see that resource in EMC with the new name. When I go to outlook and setup a new meeting, I can type in the old name and it will resolve and underscore, but the new name does not. I have updated address lists using powershell and have downloaded the
    offline address book using outlook.  I still cannot get the new name to resolve.
    Any thoughts?

    Hi,
    It should be OAB issue, restart the SA and MSFDS service and manually download the OAB again on the Outlook. It should be fine this time.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Deploy Symantec certificate profiles to mobile devices using Microsoft Intune to manage company resources like WiFi

    We are planning to deploy Symantec certificate profiles to Mobile devices to manage company resource like WiFi. I've seen documentation on Technet and the post here http://ronnydejong.com/2014/12/15/part-1-deploy-certificates-to-mobile-devices-using-microsoft-intune-ndes-overview/ that
    we need to install Intune NDES connector which needs to be installed on NDES server. These docs are true when we are using Microsoft PKI.
    Here, we're planning to use Symantec cloud PKI to deploy the certificates to mobile devices. So, I would like to know which are the required on-premises components ? NPS, NDES  or something else? Any documentation URL would be helpful ;) We're in planning
    face hence the question in the forum. 
    Regards
    Anoop
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

    Thank you Jason for the reply !
    Sorry for stupid questions !
    Does that mean, NDES is needed only for initial enrollment process of a mobile device? We don't need it deploying Symantec certificate profiles to manage company resources like WiFi VPN etc... Or I'm totally lost here? 
    My understanding is : Mobile devices will get enrolled to Intune and that device will become a managed device. Now, the mobile device needs to get a connectivity to company resources like VPN or WiFi and for the we may need to deploy certificate profiles.
    Isn't it ? So, you were saying for this process we don't need to have NDES. (or I'm wrong here as well).
    If so, we'll be deploying a public certificate to all the devices via certificate profile deployment and the devices need to get connected with issuing authority to get a device specific private key before connecting to WiFi or VPN?
    Regards
    Anoop 
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • Booked meeting rooms - general view question

    Hello,
    I am working on a application to manage the meeting rooms booking.
    The request is to create a table to include the meeting rooms name on top of the columns and the dates as head of the rows.
    Then for each day & meeting room I have to display if it's booked (AM / PM / Whole day) or available. When clicking on available position should go to the form to book it for that meeting room & day.
    Any idea how can I do this? Where can I find an example?
    Thank you in advance.
    Anca

    Hi Anca.
    I like to advice in this kind of situations.
    You are in process to develop in Apex, and seems your objectives are to build a "departmental" application. The first I have to advice you is that you have to think in integrating you app at the rest of the apps that your organization use to manage it. If your organization don't have a plan for IT. you are lucky, because you will have the opportunity to build it. But if your company have a plan, that you have to do is match with its objectives.
    Second, you must search all the existing structured data in the company, and try to integrating the database you will use to the existing information. Some times, doing this search, some people discover that there is a lot of duplicated sources for the same information, in which case you have the opportunity to do ask that the company clean any abnormal situation.
    Knowing the exact situation about the existing databases, you might discover that the rest of tables you will need will be minimal.
    But before this, you should know exactly the process involved in the activity you have to help to manage in your program, and also you must know how the user expect your program will help him.
    My true profession is to be a designer, and as I learned, I can advice you that is very important to have a project before begin to build any thing.
    Then, you could try to organize all your ideas, research the rest of your company infrastructure, match to the company plan, talk with the future users, thinking in the present and future objectives, and after all, begin to drawing models before begin to sitting at the keyboard.
    Surely exists many apps that you could found that match partially or totally your needs, but I think this isn't the more complex case, and finally you will had a solution with a little of sql and using the Apex assistants.
    If you share with us how is your work environment, I think somebody could help in a more specific question.
    Regards, Marcelo.

  • Meeting Room emails are in German date format not English

    Hi,
    We've consolidated some Exchange servers and this has included creating some Meeting room resource mailboxes on our German Exchange 2010 server (Sp1 + update rollup 3v3).
    When a user gets a reply from the meeting room (E.g. if the meeting room is already booked and it conflicts with someone else) then the message is sent showing the time and date as:
    Organizer and Time of Conflicting Meeting 
    Username - Montag, Juli 11, 2011 1:00:00 to Montag, Juli 11, 2011 1:30:00
    It shows Juli instead of July and Montag instead of Monday. Does anyone know if this setting change be changed? If so is it a property of the mailbox or is it a property of the resource attendant so if I change it for one mailbox it will affect every other
    meeting room?
    Thanks,
    Joe

    Hi Joe,
    Thanks for your update.
    Reboot the server sounds low technical but it actually resolved many technical issues. So go ahead and have a try.
    Based on my research, whenever Exchange returns the decline DSN message, it generates the date time in the format of the original message (meeting
    request). To be more specific, it is the property "PR_Message_Locale_ID". It is also worth to verify this attribute.
    So, please verify the following attributes:
    1.   
    The "PR_Message_Locale_ID" of the original meeting request (which was declined) from Sent Items via MFCMAPI tool.
    2.   
    Check the language code of the problematic e-mails using MFCMAPI, “PR_INTERNET_CPID” and “PR_MESSAGE_CODEPAGE”.
    You may download MFCMAPI from
    http://www.microsoft.com/downloads/details.aspx?familyid=55FDFFD7-1878-4637-9808-1E21ABB3AE37&displaylang=en. If you have any difficulty in this tool, please feel free to send me the meeting request as an attachment. My email address is
    [email protected]
    Fiona

Maybe you are looking for

  • New Auto-save to Plug-In Settings

    Has anyone else noticed the automatic save that occurs when you make a change in a plug-in setting and close the plug-in window? Its something new that happens with the upgrade 9.1.1 It's a bit shocking. Before you had the option to hit the compare b

  • Web page with javascript login shows the login in IE8 but not Firefox 9

    The web page http://epgservices.sky.com/nevermiss/ loads properly in Internet Explorer 8 and shows login details but these don't show when loaded in Firefox 9.0.1 The login is generated by Javascript as far as I can see. Java is enabled and is not be

  • Authorization Issue with P_HAP_DOC

    Hi experts, we have a problem with our authorizations approach concerning the appraisal documents. The situation is the following: We have two different approaches for appraisals. 1st as a manager you give appraisals to your assigned employees and as

  • Best Browser for 8.6

    I would like your opinions on what you guys consider the best browser/s for 8.6 running on a 8500. I'm going to connect it to my 4 port ADSL router/modem I've always liked Netscape, then Mozilla, now use SeaMonkey on 10.3.9. I use FireFox as a second

  • I keep getting notifications that I need to sign in to iCloud using an old email address

    Ever since I did the latest update, I keep getting notices popping up on the screen that I need to sign in to iCloud. The problem is it wants the password to an old address I haven't had for several years and don't remember the password to. I've chec