Cannot move version controlled resource if parent collection is checked out

Hi,
I want to move a document from one folder to an other one.
The folders are all version enabled, and all part of the same FSDB repository manager.
I tried to "Cancel Checkout" all the folders, without success. (I eaven to not understand what checkout is).
If I cancel the versionning, this is working properly, but this is of course not the purpose.
Do you know what to do ?
Thank you for your support.
Vincent

Yes Julian,
I confirmed I did intentionnaly enable the versioning on the documents and folder.
And I want to keep versioning ...
As this is working with other folder :
I can move documents for this folder :
- <D:response>
  <D:href>/irj/go/km/docs/BvD-it%20SEPData/Unrestricted/Technical%20Knowledge/BU%20Business%20Management/</D:href>
- <D:propstat>
- <D:prop>
  <D:lockdiscovery />
- <D:version-history>
  <D:href>/irj/go/km/docs/BvD-it%20SEPData/.~system~/versions/4/18/292057791804</D:href>
  </D:version-history>
  <D:getlastmodified>Wed, 25 Jul 2007 12:19:21 GMT</D:getlastmodified>
  <D:ishidden xsi:type="xs:boolean" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">0</D:ishidden>
  <D:comment />
  <D:creator-displayname />
- <D:resourcetype>
  <D:collection />
  </D:resourcetype>
- <D:ordering-type>
  <D:href>dav:unordered</D:href>
  </D:ordering-type>
- <D:supported-method-set>
  <D:supported-method name="GET" />
  <D:supported-method name="HEAD" />
  <D:supported-method name="PUT" />
  <D:supported-method name="COPY" />
  <D:supported-method name="MOVE" />
  <D:supported-method name="POST" />
  <D:supported-method name="PROPFIND" />
  <D:supported-method name="REPORT" />
  <D:supported-method name="PROPPATCH" />
  <D:supported-method name="ORDERPATCH" />
  <D:supported-method name="VERSION-CONTROL" />
  <D:supported-method name="CHECKIN" />
  <D:supported-method name="CHECKOUT" />
  <D:supported-method name="UNCHECKOUT" />
  <D:supported-method name="LABEL" />
  <D:supported-method name="UPDATE" />
  <D:supported-method name="ACL" />
  <D:supported-method name="DELETE" />
  <D:supported-method name="LOCK" />
  <D:supported-method name="UNLOCK" />
  <D:supported-method name="SEARCH" />
  </D:supported-method-set>
  <ImageSource xmlns="http://sapportals.com/xmlns/cm/rendering">/BvD-it SEPData/Unrestricted/Technical Knowledge/images/BU Business Management.img</ImageSource>
  <IconSource xmlns="http://sapportals.com/xmlns/cm/rendering">/BvD-it SEPData/Unrestricted/Technical Knowledge/images/BU Business Management.ico</IconSource>
  <sap:readonly xmlns:sap="http://sapportals.com/xmlns/cm" xsi:type="xs:boolean" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">false</sap:readonly>
  <sap:enhancedcollection xmlns:sap="http://sapportals.com/xmlns/cm" xsi:type="xs:boolean" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">true</sap:enhancedcollection>
  <IconRolloverSource xmlns="http://sapportals.com/xmlns/cm/rendering">/BvD-it SEPData/Unrestricted/Technical Knowledge/images/BU Business Management.icr</IconRolloverSource>
  <sap:modifiedby xmlns:sap="http://sapportals.com/xmlns/cm">bpl</sap:modifiedby>
  </D:prop>
  <D:status>HTTP/1.1 200 OK</D:status>
  </D:propstat>
- <D:propstat>
- <D:prop>
  <D:getcontentlength />
  <sap:description xmlns:sap="http://sapportals.com/xmlns/cm" />
  <startuperror xmlns="http://sapportals.com/xmlns/cm/crt" />
  <D:checkout-set />
  <state xmlns="http://sapportals.com/xmlns/cm/crt" />
  <D:checked-in />
  <D:checked-out />
  <D:displayname />
  <D:reftarget />
  <configurationerror xmlns="http://sapportals.com/xmlns/cm/crt" />
  <D:getcontenttype />
  </D:prop>
  <D:status>HTTP/1.1 404 Not Found</D:status>
  </D:propstat>
  </D:response>
I think there is somethink I do not properly understand, but I'm not able to understand what ...
Thank you
Vincent

Similar Messages

  • Oracle 10g R2 - Metadata Issue With Version Controlled Resources

    We are trying to utilize the Oracle 10g R2 feature that allows user-defined metadata to be attached to XML DB resources. However, we are encountering errors when we try to append/attach metadata to a version-controlled resource (VCR). The following steps were followed:
    1. Register a new schema to be used for metadata (XMLSCHEMA.registerSchema).
    2. Add a new resource to to the XML DB and make it version controlled (DBMS_XDB.createResource and DBMS_XDB_VERSION.makeVersioned).
    3. Checkout the newly created version-controlled resource (DBMS_XDB_VERSION.checkout)
    4. Add metadata to the version-controlled resource (DBMS_XDB.appendResourceMetadata)
    However, after step 4, the errors shown below are encountered:
    ========================================================
    begin
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [qmxStrCopy: INLOB 2], [], [], [],
    ORA-06512: at "XDB.DBMS_XDB", line 890
    ORA-06512: at line 2
    ========================================================
    The steps followed for adding metadata to a resource were taken from Chapter 26 of the "Oracle XML DB Developer's Guide 10G Release 2" (http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb_repos_meta.htm#sthref2302).
    Is is possible to append and maintain metadata to an XML DB version controlled resource (VCR)? If so, what are the correct steps to do this? Note that if this is tried with a resource that is not version controlled, then no errors are encountered.
    Thanks,
    Steve

    It appears that this issue has been solved in the next release of the database
    QL> spool testcase.log
    SQL> --
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> var schemaURL varchar2(256)
    SQL> var schemaPath varchar2(256)
    SQL> var resourcePath varchar2(256)
    SQL> --
    SQL> begin
      2    :schemaURL := 'metadata.xsd';
      3    :schemaPath := '/public/metadata.xsd';
      4    :resourcePath := '/public/metadataTest.txt';
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> call dbms_xmlSchema.deleteSchema(:schemaURL,4)
      2  /
    Call completed.
    SQL> declare
      2    res boolean;
      3    xmlSchema xmlType := xmlType(
      4  '<?xml version="1.0" encoding="UTF-8"?>
      5  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" attributeFormDefault="unqualified" xdb:storeVarrayAsTable="true">
      6          <xs:element name="root" type="rootType" xdb:defaultTable="METADATA_TABLE"/>
      7          <xs:complexType name="rootType" xdb:SQLType="METADATA_ROOT_T">
      8                  <xs:sequence>
      9                          <xs:element name="child" type="childType"/>
    10                  </xs:sequence>
    11          </xs:complexType>
    12          <xs:complexType name="childType" xdb:SQLType="METADATA_CHILD_T">
    13                                  <xs:sequence>
    14                                          <xs:element name="Child1" type="xs:string"/>
    15                                          <xs:element name="Child2" type="xs:string"/>
    16                                  </xs:sequence>
    17          </xs:complexType>
    18  </xs:schema>
    19  ');
    20  begin
    21    if (dbms_xdb.existsResource(:schemaPath)) then
    22      dbms_xdb.deleteResource(:schemaPath);
    23    end if;
    24    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    25  end;
    26  /
    PL/SQL procedure successfully completed.
    SQL> begin
      2    dbms_xmlschema.registerSchema
      3    (
      4      :schemaURL,
      5      xdbURIType(:schemaPath).getClob(),
      6      TRUE,TRUE,FALSE,TRUE,
      7      enableHierarchy=>DBMS_XMLSCHEMA.ENABLE_HIERARCHY_RESMETADATA
      8    );
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2    res boolean;
      3  begin
      4    if dbms_xdb.existsResource(:resourcePath) then
      5      dbms_xdb.deleteResource(:resourcePath,4);
      6    end if;
      7    res := dbms_xdb.createResource(:resourcePath,'Mary Had a Little Lamb');
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select xdbUriType(:resourcePath).getClob()
      2  from dual
      3  /
    XDBURITYPE(:RESOURCEPATH).GETCLOB()
    Mary Had a Little Lamb
    SQL> declare
      2    resid raw(16);
      3  begin
      4    resid := dbms_xdb_version.makeVersioned(:resourcePath);
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> begin
      2    dbms_xdb_version.checkout(:resourcePath);
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> set long 10000 pages 0 lines 150
    SQL> --
    SQL> select r.res.getClobVal()
      2    from resource_view r
      3   where equals_path(res,:resourcePath) = 1
      4  /
    <Resource xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd" Hidden="false" Inv
    alid="false" VersionID="1" ActivityID="0" Container="false" CustomRslv="false" V
    ersionHistory="false" StickyRef="true">
      <CreationDate>2006-06-10T05:01:25.355009</CreationDate>
      <ModificationDate>2006-06-10T05:01:25.355009</ModificationDate>
      <DisplayName>metadataTest.txt</DisplayName>
      <Language>en-US</Language>
      <CharacterSet>UTF-8</CharacterSet>
      <ContentType>text/plain</ContentType>
      <RefCount>1</RefCount>
      <ACL>
        <acl description="Public:All privileges to PUBLIC" xmlns="http://xmlns.oracl
    e.com/xdb/acl.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch
    emaLocation="http://xmlns.oracle.com/xdb/acl.xsd                           http:
    //xmlns.oracle.com/xdb/acl.xsd">
          <ace>
            <grant>true</grant>
            <principal>PUBLIC</principal>
            <privilege>
              <all/>
            </privilege>
          </ace>
        </acl>
      </ACL>
      <Owner>SCOTT</Owner>
      <Creator>SCOTT</Creator>
      <LastModifier>SCOTT</LastModifier>
      <SchemaElement>http://xmlns.oracle.com/xdb/XDBSchema.xsd#binary</SchemaElement
    >
      <Contents>
        <text>Mary Had a Little Lamb</text>
      </Contents>
      <VCRUID>15DE79F263F7CC00E040578C2A0656F8</VCRUID>
    </Resource>
    SQL> begin
      2    dbms_xdb.appendResourceMetadata(:resourcePath,xmltype(
      3  '<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      4         xsi:noNamespaceSchemaLocation="metadata.xsd">
      5      <child>
      6        <Child1>AAA</Child1>
      7        <Child2>BBB</Child2>
      8      </child>
      9  </root>'));
    10  end;
    11  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> select r.res.getClobVal()
      2    from resource_view r
      3   where equals_path(res,:resourcePath) = 1
      4  /
    <Resource xmlns="http://xmlns.oracle.com/xdb/XDBResource.xsd" Hidden="false" Inv
    alid="false" VersionID="0" ActivityID="0" Container="false" CustomRslv="false" V
    ersionHistory="false" StickyRef="true">
      <CreationDate>2006-06-10T05:01:25.355009</CreationDate>
      <ModificationDate>2006-06-10T05:01:25.558913</ModificationDate>
      <DisplayName>metadataTest.txt</DisplayName>
      <Language>en-US</Language>
      <CharacterSet>UTF-8</CharacterSet>
      <ContentType>text/plain</ContentType>
      <RefCount>1</RefCount>
      <ACL>
        <acl description="Public:All privileges to PUBLIC" xmlns="http://xmlns.oracl
    e.com/xdb/acl.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch
    emaLocation="http://xmlns.oracle.com/xdb/acl.xsd                           http:
    //xmlns.oracle.com/xdb/acl.xsd">
          <ace>
            <grant>true</grant>
            <principal>PUBLIC</principal>
            <privilege>
              <all/>
            </privilege>
          </ace>
        </acl>
      </ACL>
      <Owner>SCOTT</Owner>
      <Creator>SCOTT</Creator>
      <LastModifier>SCOTT</LastModifier>
      <SchemaElement>http://xmlns.oracle.com/xdb/XDBSchema.xsd#text</SchemaElement>
      <Contents>
        <text>Mary Had a Little Lamb</text>
      </Contents>
      <VCRUID>15DE79F263F7CC00E040578C2A0656F8</VCRUID>
      <Parents>15DE79F263F8CC00E040578C2A0656F8</Parents>
      <root xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNam
    espaceSchemaLocation="metadata.xsd">
        <child>
          <Child1>AAA</Child1>
          <Child2>BBB</Child2>
        </child>
      </root>
    </Resource>
    SQL> quit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.0.0 - Alpha
    With the Partitioning and Data Mining options
    I've filed bug 5313655 for the 10.2.x behavoir. If this is important to you you might want to consider signing up for the forthcoming beta program for the next release of the database

  • You cannot change the price of an item AFTER I check out!

    I ordered an XMEN: Days of Future Past box set with a robot head last night for $17.99 plus tax for store pickup online. The total came out to be a bit over $20. When I checked my email today, I was charged $29.99 for the item, and tax based on the new sale price. This is an increase of more than 50%!
    It is not legal to change the price of an item AFTER a price is agreed and someone has paid. I would like someone to fix this, as this is a big deal for your customers.
    I would like to know what Best Buy can do about this issue? I live in Minneapolis, and would like to believe that our local businesses aren't cheating their customers, especially those in their hometown.

    Greetings Kylearin,
    I can imagine why you'd be concerned! I'd be surprised too if a price I saw during checkout was not reflected in my order confirmation page.
    I've had the chance to review your account and it appears that your order for X-Men: Days of Future Past was submitted on 11/26/2014, shortly after midnight. Since this particular movie was a Deal of the Day item on 11/25 -- and since your order was not received while the lower sale price was in effect -- the price reflected on your order is correct. It's unfortunate if this does not meet your expectations, but remember that you may always cancel your order if you'd like by signing into your account on BestBuy.com.
    BestBuy.com > Help Center > Cancel Your Order
    http://bbyurl.us/ModifyingOrders
    Thanks for your understanding, as well as for taking the time to post.
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How to turn off Check Out prompt in RH7 for VSS version control.

    Using RH7 HTML, and VSS version control. Have been using without problem for 2 years. Now I had to get a new computer
    set up, VSS seems to be correctly set up with RoboHelp, and asks to 'get latest' when I open a project, in the usual way.
    However, each time I try to edit a topic in RH now, I am prompted to check out the topic.This should happen automatically. the RH tip that displays says:
    "To turn off prompts when performing version control tasks manually, clear the option on the version control tab. Files are then checked out automatically.
    Note: Files not selected in the list cannot be checked out."
    this is unclear - there IS no version control tab, and which option are they saying to clear? there is a version control toolbar, and File>Version Control menu, neither of which has a 'prompt checkout' option.
    I need not to check out manually every time!

    Use the Tools > Options menu. There should be a "Version Control" tab in that dialog box.

  • I, work on dell laptop latitudes version 7, win 7 64 bit, ssd disk, 16 gb ram. i receive the error 12 This device cannot find enough free resources that it can use. please help

    I, work on dell laptop latitudes version 7, win 7 64 bit, ssd disk, 16 gb ram.
    i receive the error 12 This device cannot find enough free resources that it can use. please help

    1. You have placed problem in wrong forum, or use different Windows operating system
    2. Double check your resources, namely in Disk manager. What is free space on HDD?
    Regards
    Milos

  • Photos are dark and cannot be used in slideshow mode.  Also cannot move photos in a sequence.  Also photos will not move from grid to add to another collection.

    Lightroom 4, photos are dark when in slideshow mode.  Therefore, cannot create a slideshow.  Cannot move photos from grid to add to another collection.  Also cannot change sequence of photos.  Have searched multiple  times for troubleshooting help online with no resolution available.

    Just to clarify my problem with the "dark photos"....when in slideshow mode, photos are dark and state "no photo selected"  I've created multiple slideshows and this was never an issue.  Just downloaded updates as well for Lightroom 4 and this didn't seem to help either.

  • Mac OS X version 10.6.8 but cannot access 'mission control'?

    I have Mac OS X version 10.6.8 but cannot access 'mission control'. I have read about it being really good but don't have it on my desktop? I'm not sure if my laptop is too old and needs to be updated or what, but have no idea why I can't find out ANYWHERE how to get it onto my laptop.
    Sarah

    MIssion control is a feature introduced in OS X 10.7. Prior to that, it was called Expose (with an accent mark over the 2nd e).  See this Apple note on how to use Expose.

  • User control ActiveX cannot move between objects using TAB

    I created a simple ActiveX control with 3 text boxes.
    I added it as an ActiveX object to a SAP form.
    It apears good on the screen but it seems like SAP is "stealing" the TAB keypress and therefore I cannot move between the ActiveX controls accrdinf to their Tabindex property
    It happed both in VB6 and VB.NET user control
    How it can be solved ?
    Tx Yaron

    I'm assuming you're not using a BusinessObjects reporting solution, which would mean you're posting to the wrong forum.
    Sincerely,
    Ted Ueda

  • Regarding version control

    Hi,
    Could u please help me out in giving some ideas of version control in sap?
    First let me give some example as follows:
    First if i develop something in the developement server then later when i transfer to the QA server and later to production server then is there any change in version.
    Please give me a details of this issue????
    Thanks,
    Batista....

    hi priya,
    Version Control
    Version control is a mechanism that helps maintaining the revision history of a development resource and tracking the changes done to it. It defines a set of constraints on how a development resource can be changed. A development resource that complies with the constraints defined by the version control is called a versioned resource. When a versioned resource is modified or deleted, a new version is created for the resource. A unique sequence number is associated with each version of the resource created in a particular workspace. This sequence number identifies the order in which the versions were created in that workspace. The DTR graphically represents the relationship between the different versions of a versioned resource in the form of a version graph.
    For the representation of version graphs, this document follows the conventions shown in this figure.
    The figure shows the meaning of the symbols in the version graph.
    The following changes are tracked by the version control mechanism of the DTR:
    ·        Addition of the resource to the repository
    ·        Modification of the resource in the repository
    ·        Deletion of the resource from the repository
    In all the above cases, a new version of the resource is created.
    Production Delivery
    Packaging
    To deliver your product, you have first to package it. There are different packages you can use for shipping your product to your customers:
    &#9679;      Software Component Archives (SCAs) – this is the standard way to deliver software for the SAP NetWeaver platform.
    &#9679;      Software Deployment Archives (SDAs) – for top-level applications you can deliver only the executable part of the software. You can directly deploy the SDA file.
    &#9679;      Public Part Archives (PPAs) in Development Component Interface Archives (DCIAs) – for reusable components (Java EE server libraries, Web Dynpro components, Visual Composer components and so on). You can deliver only the metadata of the components. DCIA can be included in SCA file too.
    How to do that?
    Using the command line tool provided with the SAP NetWeaver Composition Environment you can:
    &#9679;      package a collection of components into an SCA including only the deployable archives. This is required if you do not want others to reuse the delivered components.
    &#9679;      package a collection of components into an SCA including the deployable archives and the corresponding interface archives. This allows customers to develop against these components. Those customers can directly import the SCA into their own SAP NetWeaver Development Infrastructure (NWDI) or into an SAP NetWeaver Developer Studio local installation.
    &#9679;      package the public parts of a component together with the required metadata into a DCIA (and further into an SCA).
    &#9679;      include source code into an SCA.
    &#9679;      unpack a deliverable archive and drop the result into an existing version control system for example, or directly import them into an existing Design Time Repository (DTR).
    Delivery of Source Code for Further Customization
    In addition, you can deliver source code to your customers to allow further customizing or add-on development. The deliverable archive may contain sources for:
    &#9679;      individual development components (DCs).
    &#9679;      a collection of development components, for example a whole software component (SC).
    Example
    A customer can add a new source compartment to an existing configuration, and then locate that compartment in the file system where it is accessible by the version control system in charge. Then he or she extracts the sources with the command line tool to the compartments root directory and refreshes the configuration in the SAP NetWeaver Developer Studio. The compartment tree is populated with components from the archive. Afterwards, the customer may put those components under version control. Deliverables that contain only individual components may be treated accordingly.
    This mechanism may also be used for other purposes, for example for setting up a simple backup and restore mechanism for components in Developer Studio, or sharing DC sources without having a central version control system: a developer may pack a compartment and store the resulting SCA on a central share or backup system. Another developer may take that SCA and import it.
    Limitations
    Note the following limitations connected with this kind of source code delivery:
    &#9679;      There is no support for handling conflicts when different actors in a delivery chain develop independently in the same source code. You cannot prevent the customer from modifying delivered sources. When you ship a new version of the sources, there is no special support for updating and no support for merging the update with modifications done by the customer. You and the customer have to agree on a process how those conflicts are handled. For example, the customer can decide not to import the update you deliver directly into the active development line, but to unpack the delivered sources to some unconnected sandbox system and perform the required merges manually.
    &#9679;      When you deliver source code to customers, it is important that you also deliver the required libraries and generators that are needed to build these sources. For example, it may be necessary to ship some archive compartments that contain used components.
    &#9679;      There is no support for delivering deletions in a new version. If a source file was deleted, the customer has to manually ensure that the file is also deleted in the Developer Studio or source code management system.
    &#9679;      If a customer prefers to work with the SAP NetWeaver Development Infrastructure (NWDI), this customer cannot directly import the source delivery package into the NWDI landscape. Between NWDI landscapes at different places, sources usually are exchanged through a more sophisticated export format that contains not only the pure source code, but also the versioning meta information of the exporting DTRs. This ensures that the importing repository can detect conflicts that arise due to modifications. If this versioning information is not available, the only way to import source deliveries is to unpack them to a file system and manually put them under version control with the Design Time Repository perspective of the Developer Studio. In case of an update, the customer would have to check out all affected files, merge them with the new versions from the source delivery, and finally check them in as a new version.
    More information: Composition Environment Command Line Tool
    see this url
    http://www8.sap.com/businessmaps/0134713B1D6046C59DE21DD54E908318.htm
    thanks
    karthik
    reward me if usefull

  • Cannot directly book a resource for this meeting after Exchange2007 to Exchange2013 migration

    Hi,
    I’ve migrated a customer from Exchange 2007 to Exchange 2013 successfully. However. There are troubles with booking resources. Users receive the following error message when booking a resource: Direct Booking – Cannot directly book a resource for this meeting.
    The user follows the following procedure:
    The user opens his/her ‘own agenda’, create a meeting, use Scheduling Assistant to schedule a meeting with another user and to add a Room. When hitting Send the above message appears.
    When the user has Full Control to the resource mailbox and the user opens the agenda of the resource directly and follows the above procedure in the ‘resource agenda’ he/she is able to book the resource without a problem (this workaround is not preferred
    as a final solution).
    To fix this, I’ve tried the following:
    Add a registry key to the client. HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Options\Calendar\EnableDirectBooking (0)
    Turn cache mode ON, this works.
    However for some users cache mode must be turned off, so this workaround doesn’t apply for all the users.
    I worked with Full Control permissions on the resource, so that the user is able to book directly from the ‘resource agenda’.
    Some more information:
    Public Folders are not in use anymore.
    There are several clients in the environment:
    Windows XP with Outlook 2007
    Windows 7 with Outlook 2007
    Windows 7 with Outlook 2010  (I do not have a confirmation if these symptoms also apply on these clients as well).
    Does anyone has a final solution for me?
    Or how can I troubleshoot this any further?
    Thanks in advance,
    Yuri

    Hi,
    According to your description, I understand that user cannot book room and return an error “Direct Booking – Cannot directly book a resource for this meeting” after move mailbox from Exchange 2007 to 2013.
    If I misunderstand you concern, please do not hesitate to let me know.
    I want to double confirm some points, please help to collect answers for below questions:
    1. Move mailbox within same forest or cross-forest?
    2. How about the OWA with problematic account?
    3. How about new a mailbox in Exchange 2013?
    If it works in OWA, please try to repair Outlook profile or re-create profile for testing.
    If not, please run below command to double check the permission of resource mailbox:
    Get-MailboxPermission room | select user,accesslight
    Get-MailboxFolderPermission “room:\calendar” | FL
    Additional, I find an similar thread about your question. For your reference:
    https://social.technet.microsoft.com/Forums/exchange/en-US/78faa211-1af0-4a07-93d0-e9d39c8de9c8/resource-mailboxes-questions
    Thanks
    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]
    Allen Wang
    TechNet Community Support

  • I cannot move, resize, minimize, or close the browser window despite everything inside the window still working.

    I don't know what details are needed so I'll just rattle off anything that I can think of.
    I am running an Asus laptop with windows 7. I have never had an issue with firefox in the past (beyond the usual freezing and some obvious issues with pop up ads that are par for the course with firefox since adblocker never does what it says.... not really. Lets be honest.) I am using Avast for my virus protection and it is also up to date.
    My issue started about an hour ago when firefox stopped responding. The video I had playing kept going but I could not interact with anything. Assuming the program froze for the billionth time that week I rebooted it. This has always solved freezing issues in the past. Now, however, firefox is doing something new.
    I can access the menus and almost everything on the window itself except for the minimize/maximize/close buttons, I cannot move the window at all, and I cannot manually resize it. I have also noticed that although videos will play, I can only click on their buttons if there is another smaller window overtop of firefox. The video controls will only appear that way and when I click them firefox naturally comes to the front and the video responds with the button I used but the buttons are gone again and I cannot resume playing without the smaller window back in front to make the buttons show again.
    It's as if half of firefox is frozen while the other half is still running somehow.
    I have no themes that could be causing this. Literally none. I only use firefox for the things that can no longer be opened in Opera so I have no need for any theme beyond default. The only addons I installed on purpose were adblockers (lord knows why. they don't DO anything.) though several other random things seem to have been installed over time to aid in one thing or another. Various plugins and players and versions of java, that sort of thing. But I have everything (and i mean EVERYTHING) in the addon menu disabled.
    I have tried booting it up in safe mode (the program, not windows) and the problem is still there except now it won't show the menu bar at all unless I press the alt key first and even then it wont let me actually click on anything in the menu bar. When I try the whole bar vanishes. I had to close firefox with the task manager.
    Rebooting will fix the issue for about 15 seconds before it all comes back.
    Any attempts at updating have failed as it says I am already up to date on everything so I don't know what its issue is.
    It's not an urgent issue right now as most of what i need to do can be done on the half screen window I am using, but some of my sites have buttons that literally vanish in anything but full screen and I imagine that this will be a much greater annoyance within a few days.

    After following all the instructions given, I poked around safe websites as suggested. I am not sure why this step was needed, as websites functioned rather normally before I came here but I did it anyways and found that the websites still work the same as they did. I can still do everything I used to be able to do. I see no change in the function of the websites.
    However, I still cannot resize, close, or move the browser window. I don't know if Netflix is a safe site or not (too many conflicting opinions on that one from the masses) so I don't know if the issue with the vanishing buttons is still there, but all the issues I had with the browser window itself is still there.
    Even in safe mode the browsers three window control buttons on the top right refuse to let me use them and the window itself will refuse to be moved around.

  • Cannot Move the Slider in Videos/Podcasts

    I cannot seem to drag and move the slider while watching a music video or podcast. The pause/play and the forward buttons work, but I cannot move freely to any part of the podcast/video or adjust the volume with the slider, almost as if there was some sort of blockade. Any ideas how to resolve this? I really appreciate any tips.

    There's a weird bug in the latest version of iTunes regarding this issue. If you maximize iTunes and run it full screen, I believe you'll find that all of the video controls, including the volume slider, now work. However, if the program is minimized even slightly, the controls no longer work. I've tried this on two different Windows machine with the exact same results.

  • Version Control of PL/SQL programs in Database

    Is there a version control feature available in Oracle v9.x ???
    I am trying to implement version control on PL/SQL programs(Packages/Functions/Procedures). I should be able to rollback to old version and keep the system running if the latest ones failed. This should be done automatically without bringing the database down or recompiling the PL/SQL programs and also users do not need to reconnect(users might be caught in a LOCK and might get their sessions killed by DBA...)
    Ex: I have heard that in .NET, u can have more than one version of a DLL and have only one version active. If we want to go back to the old version of the DLL, u don't need to recompile the DLL to make it active. I am looking something similar to this....
    I have thought of several ways like creating a small repository table for my PL/SQL programs and store the PL/SQL code in the repository and based on the situation, compile only that program (which might be a OLD or a NEW version) and so forth... But this does not satisfy the requirement of rolling back to the old version without recompiling.(RENAMING a PL/SQL program feature doesn't seem to be implemented yet...)
    I don't want to use Designer just for this purpose...
    Any ideas..
    Thanks,
    Purush

    Are you dealing with code that's being called remotely (i.e. via a database link)?
    No
    I'd be concerned about the concept of rolling back code changes in production on a regular basis-- that would seem to indicate problems that ought to be addressed in development and QA. Rolling back code in production seems like it ought to be a rather painful process, if only because it indicates a massive failure elsewhere.
    This is not on a regular basis at all. Our Database applications are tied with lots of programs which directly control the robots and machines. Certain machines and robots needs to be working all the time and any downtime will cost time and money. To make sure that the implementation goes into production smoothly(without shutting down machines and robots) and then into maintainance mode, we are looking for some kind of source control to control the implementation and make sure to revert back (without shutting down machines and robots) if there are major issues.(There are certain things here which cannot be tested outside of a shop floor due to the physical and other constraints.)
    I have thought of otherways like a compile flag (in the DB.. Ex: a packaged variable) to set before compiling and reset after compiling. The programs on the shopfloor will always read this flag and check buffer(time taken to do this will have to be considered) before calling a DB txns and if the flag is set, buffer the txns and and move on to the next task the machine should do. The next time it call a txn. if the flag is reset, it checks the buffer and if buffer exists, execute the buffer txns first.. and then proceed to actual txn. The things that bothers me is time taken to compile the huge package and the no. of txns getting buffered and the overall txn time.
    I am trying to come up with some kind of solution for this issue if possible.....
    Thanks,
    Purush

  • Beginners Q: Motion tracking - Cannot move trackpoint

    Hi all,
    this seems to be simple:  start motion tracking, move your trackpoint to the correct place that needs to be tracked.
    Problem:  I see the trackpoint, but cannot move it to its place.  
    The only way to do that, is to close AE, reopen AE & reopen the project, and continu moving the trackpoint.  
    This is only possible to do so for a few frames, then the trackpoint is fixed again, and moving is not possible anymore.
    This topic seems not to be found on the internet, so I suspect a bug maybe.
    Please help, it's driving me nuts... 
    any help is welcome...
    -Edit1-
    And as I saw an OpenGL error I'm providing also system info below.
    SW:
    AE CS6, trial version, no extra's installed. ver. 11.0.0.378
    Windows 7 Home Premium, SP1, build 7601, 64bit
    Driver pack ver. 8.98-120611a-141402C-ATI
    2D driver ver. 8.01.01.1253
    OpenGL ver. 6.14.10.11733
    Direct3D ver. 9.14.10.0920
    Catalyst Control Center Ver: 2012.0611.1251.21046
    Used Render Multiple Frames Simultaneously multiprocessing: With & Without. 
    HW:
    16Gb Ram
    i7-3770K CPU @3.5MHz, 64Bit
    Graph Chipset: AMD Radeon HD 6800 Series
    -Edit2-
    The more I mess around with it, the more I see the proof I need to restart AE to continue follow the same actions as in tutors over the net.
    VERY often, I cannot move object with the mouse cursor like text objects for instance.
    Is there anything I can do??

    Hi thx for replying,
    If I remember well, the error message was a general OpenGl one.
    I did have the error message not that often unfortunately.
    Graphic card is updated to latest version.
    It's very annoying I cannot drag&drop after a while...  

  • Cannot move items. Cannot move or copy folders...

    I have the most baffling problem.  This is with any version of Outlook.  I'm logged into a terminal server as the user of this mailbox.  Its inbox has many subfolders.  One is a folder called "2014".  At the same level
    is a folder we'll call "Test".  When I drag "Test" onto "2014" I get this entire message:
    "Cannot move items.  Cannot move or copy folders.  Cannot move folder.  A top-level folder cannot be moved to one of its sub-folders.  Or, you may not have permissions for the folder."
    Here's the thing...  I've given ownership permission to the inbox folder and both subfolders in question.  I still get this error.  There are other people that share this mailbox and I've done the same thing with one of them; owner permission
    to all subfolders and full access to the mailbox via exchange.  No matter what permission I give to anyone, including the mailbox owner I'm logged in as, outlook refuses to move the folder.  It's not a case of a top level folder being moved into
    one of its subfolders.  The actual owner of the mailbox has ownership permissions to everything yet I still get this error.
    Any ideas?
    Thanks!
    Edit: I can't even create a folder in the inbox.  It just says "Cannot create the folder".  I own everything to do with the folders.

    Hi,
    Please first check if you can reproduce this issue from OWA. If it works correctly in OWA, it means the issue is with Outlook side. We can try to create a new mail profile in Control Panel and then reconfigure the account in the new mail profile to see the
    result.
    If this issue continues in OWA, it could be caused by a permission synchronization problem. I'd recommend you post a new question in the Exchange forum to get further assistance:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Steve Fan
    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.
    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]

Maybe you are looking for

  • Install OBIEE 11g on Windows 7 64 bit

    Hi there, I've gone thru the previous blogs on install obiee11g on windows 7 64 bit and after going thru all previous posts I got confused and I didn't get clear idea. I have windows 7 home premium 64 bit OS..so can i install OBIEE11g with Administra

  • Security advice

    Hi, I developed an application with Jdev 9.0.2. It contains JSP pages which uses bc4j library and business components. I deployed it on a stand alone OC4J and it works fine. I am not so familiar with security issues. In my project, I use a login page

  • INS-08106: Unexpected error occurred while loading the 'InventoryUI'

    Hello. Have done alot of installs over time, but this error has me stymied. Here are the givens: 2-node Linux RHEL 5 OS Will ASM over fiber (using ASMLib) Attempting to install Oracle 11gR2 (11.2.0.3.0) SSH is working and runcluvfy gives no errors on

  • Error when using 'dbca' on 10g RAC

    I installed Sun cluster 3.1, so I used clustered filesystem for datafiles. After installing Oracle 10gR2 DB without creating a database. I ran "dbca" to create one and this is the screen shot with the error that I get: http://bostonfx.com/temp/dbca.g

  • HT4539 Apple Id Disabled

    When i download an app on my ipad it comes up with 'Your apple id has been disabled' i have changing my password and still nothing happens please help mee!!!!!:(