Getting error Can't read from the source or disk when moving documents from one folder to another folder in the library

Hi,
When we try to move documents from one folder to another folder in the document library using "Open with explorer" getting beloe error.
     Can read from the source file or disk.
    The user having below permission for the Library as well as site.
Fullcontrol,Limited access--->Given directly
Read,Limited access--->Givin through the all Test grp
Contribute,Limited Access-->given through test members grp
Read,Limited access---> givin through The group grp
Could you please help me anyone....
Thanks

Hi Reddy,
If you are moving files in two libraries in different sites, then the error will occur and it is by design that there are limitations on the DAV move commands that the DAV client is respecting.
https://social.msdn.microsoft.com/Forums/en-US/6245f332-c609-4a7b-8e00-c8b5e46f7759/cant-move-files-using-windows-explorer-cant-read-from-source?forum=sharepointgeneral
If you are moving files in the same library, I recommend you to use Wireshark to reveal the error message and enable IIS
Trace Logging for Failed Requests to examine the IIS log file for troubleshooting.
https://social.msdn.microsoft.com/Forums/en-US/47cd569d-98f2-4cca-b78e-fd178c097285/cant-read-from-the-source-file-or-disk?forum=sharepointgeneralprevious
To narrow down the issue scope, I recommend you to test with another library and see if the copy in explorer can work.
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • I just bought a song on the iTunes store, but when it reaches about one minute, it just skips to the next song. What should i do?

    I just bought a song on the iTunes store, but when it reaches about one minute, it just skips to the next song, with no warnings. I tried to delete and download it again, but it didn`t solve the problem. What should I do?

    Restart your Mac and try again...
    If no joy...  Contact iTunes Customer Service
    Apple  Support  iTunes Store  Contact Us

  • How do i  create space on the start up disk by moving pictures from i photo but keeping them readily available

    how do i get pictures off of my start up disk but in a way that i can recll them into iphoto

    You will first of all need an external hard drive. There are lots of them available. Search MacSales or NewEgg for one that suits your needs. Get one that is bigger than you think you'll need.
    Once you have an external drive, format it using Disk Utility (in the /Applications/Utilities folder) if it has not already been formatted to work with a Mac.
    Copy your Pictures folder (which should contain your iPhoto library) to the new hard drive.
    Launch iPhoto while holding down the option key on your keyboard. It will ask you to select an iPhoto library. Select the library on the external hard drive. Confirm that all your pictures are there and you can work with them.
    Drag the iPhoto library that is in your Pictures folder on the internal hard drive to the Trash.
    Empty the Trash.
    You should now have a bunch more space on your hard drive.
    If you have not been backing up your data religiously, start using the external hard drive to do so (be sure to get a nice BIG drive so you have plenty of room for backups.) Also realize that since your iPhoto library is now stored on the external drive, backing it up again to that drive is not particularly useful. I suggest burning all your important photos to DVDs. If the photo library is too big for that, get another external hard drive and back up to that. Data security is important.

  • HT1600 I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing? I am able to get the 'Home sharing' 'user and password on my Mac.

    I have an Apple TV 2nd Gen, iPad 2 and can't get the icon to appear when i swipe from left to right. What am I missing?
    I am able to get the 'Home sharing' 'user and password on my Mac.
    Also using IPad 2 I am able to get the ITunes to accept the user name and same password as the Mac.
    However, the only way I can see the 'Home sharing; icon is in Music on the Ipad. When I tap on the Icon it asks for a password.
    When I give the same password, it is rejected.
    Help!!!!
    Jaxxdiggs

    Personally I think the iOS devices are poor at reconnecting  - Airplay establishes that a link is available but when the iPhone/iPad has been away from the house and rejoins the network i think AppleTV already thinks it's connected with a different IP address and fails to recognise it has joined the network again with new credentials.
    Something along those lines anyway.
    I find that a combination of restarting AppleTV, router and iOS device tends to fix it, but not for everyone.
    AC

  • Getting Error in java mapping: Parsing empty source. Root element expected!

    Hi Experts,
       I am using java mapping for schema validation of input message. I have followed all the standard procedures and implemented the java class in the interface mapping.
    My interface mapping is like this:
    OrderData --->Java Class ---SchemaValidate
                         Mesg Map ---OrderData_to_BAP --->BAPI Msg
    So first I want to validate the schema of the input message. If the input message is invalid then XI should throw an exception. Then I use the actual message mapping to map the input order data to the BAPI input parameters.
    In the java code I am using xerces parser.
    The java code works fine when I run it as a standalone application.
    The interface mapping also works fine if I don't include the java mapping. Ofcourse schema validation does not happen.
    But when I test the interface mapping by including the java mapping then I am getting the error:
    Call method execute of the application Java mapping SchemaValidate
    Java mapping SchemaValidate completed. (execute() of SchemaValidate
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: Parsing an empty source. Root element expected!
    What am I doing wrong? Why it is not getting the root element?
    My Java code is as follows:
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.helpers.*;
    import org.xml.sax.*;
    import org.apache.xerces.jaxp.*;
    Sample mapper for SAP-XI
    @author Gopal
    public class SchemaValidate implements StreamTransformation {
        //Constants when using XML Schema for SAX parsing.
         static final String JAXP_SCHEMA_LANGUAGE =
         "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
         static final String W3C_XML_SCHEMA =
         "http://www.w3.org/2001/XMLSchema";
         static final String JAXP_SCHEMA_SOURCE =
         "http://java.sun.com/xml/jaxp/properties/schemaSource";
    Injection of mapping parameters
    from integration engine
    @param map Map with configuration data
        public void setParameter(Map map) {
    Mapping implementation
    @param inputStream Input data from integration engine
    @param outputStream Output data to integration engine
        public void execute(InputStream inputStream,
                            OutputStream outputStream)
          throws StreamTransformationException {
            try {
                  // obtain an object of class javax.xml.parsers.SAXParser,
                  SAXParserFactory spf = SAXParserFactoryImpl.newInstance();
                  spf.setNamespaceAware(true);
                  spf.setValidating(true);
                  SAXParser sp = spf.newSAXParser();
                  // setup the schema file
                  sp.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
                  sp.setProperty(JAXP_SCHEMA_SOURCE, new File("IOReqMsgSchema.xsd"));
                  //parse the input xml using the given schema
                  sp.parse(inputStream, new ParseErrorHandler());
            catch(SAXException se) {
              se.printStackTrace();
            catch ( Exception e ) {
              throw new StreamTransformationException( e.getMessage() );
    My input message is :
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:OrderCreate_request xmlns:ns0="mynamespace">
       <ORDER>HTEST1234567</ORDER>
       <ORDER_TYPE>z001</ORDER_TYPE>
       <ORDER_NAME>Test Order</ORDER_NAME>
       <CO_AREA>INTC</CO_AREA>
       <CCTR_POSTED>1234567890888888888</CCTR_POSTED>
       <CURRENCY>USD</CURRENCY>
       <PERSON_RESP>12345679</PERSON_RESP>
    </ns0:OrderCreate_request>
    Kindly help! please this is urgent!!!!!!
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Feb 28, 2008 9:34 AM

    Hi Stefan,
       I did the code changes to return output stream and the java code works perfectly in standalone mode in my PC.
       But when I use the same in the Java mapping with XI then It throws an error "Getting Error in java mapping: Parsing empty source. Root element expected!".
    My XI J2EE server has JDK1.4.3.11.
    Is there any limitation of using SAX parser in XI? If Yes, then which parser should be used for schema validation in XI?
    I have included the XSD file for schema validation along with class files in the .jar file. This jar file is then imported in XI repository. Is the XI engine not able to read the XSD file?
    Do I have to handle reading XSD file differently? Any suggession how?
    Is this parser error due to some security access?
    Kindly help me! I have been struggling with this problem since 2 weeks. I will be greatfull to you if you can help me.
    Thanks
    Gopal

  • Javac error: Can't read my .java-file

    Hi,
    sorry for my stupid question, but I have problems compiling my java code.
    Before, I used NetBeans to compile the code and I had no problems with it. Now I have to use the javac command (with the same *.java-files) and it does not work.
    It's running on Linux. In my current working directory, I have the file
    image/transfer/smallserver/RequestProcessor.java
    So I type
    javac image.transfer.smallserver.RequestProcessor.java but I get this error:
    error: can't read: image.transfer.smallserver.RequestProcessor.javaPlease, can anyone tell me, what's wrong with this?
    Thank you for your help
    Susanne

    I set all possible classpathes. It makes no difference.
    If I try it a different way, I get other errors concerning the files I want to import. These files are located in image/transfer/client.
    I tried to use smallserver as working directory, simply with the command
    javac RequestProcessor.javaI get
    Class image.transfer.client.ImageObject not found in importI tried it with the same working directory as before with "/" instead of "." in the path name. I get
    error: Invalid class file format: ./image/transfer/client/ImageObject.class, wrong version: 46, expected 45and addionally the message from above (ImageObject not found)

  • I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working"

    I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working" then I get Windows is looking on line for a solution, but then my document closes. I tried uninstalling and reinstalling Adobe Reader XI, rebooted my computer but this did not help.  I get the same message. What to do?

    Can you open Reader by itself?  If so, check if disabling Protected Mode improves the situation [Edit | Preferences | Security (Enhanced)].

  • Can I convert tracks from one format to another so that the converted tracks appear in the various playlists of the originals?

    I have a large number of tracks which I should like to convert from one format to another (aiff to Apple lossless).  These tracks are distributed in a large number of playlists.  Can I convert a track or tracks from one format to another so that the converted track appears in the playlist of the original track without going through a laborious and error-prone process of converting each track individually, determining the playlist of the original, and allocating the converted version to the playlist (or playlists, because in many cases the original track exists in more than one playlist) of the original track.

    I do not believe iTunes will do this.  The files created are essentially new media files, not regarded as replacements for old files.  There may be ways to trick iTunes if you are good at editing library files but that would be more trouble than it is worth.
    You can check the site below but I do not recall having seen such a script.
    Dougscripts - http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y - Many itunes scripts
    If you're into writing Applescripts you could try it.

  • How can I move my iPhoto Library from one Mac to another without losing the comments on the individual photos in the process?

    How can I move my iPhoto Library from one Mac to another without losing the comments on the individual photos in the process? The source Macbook (OS 10.4.11 and iPhoto 6.0.6 (3.2.2.)) is with my husband in Germany, the target MacBook Pro (OS 10.8.5, iPhoto 11) is with me in Japan. Thanks for your help.

    I copied the iPhoto Library to a CD and from there to the new MacBook
    If you copied the library to the CD via the Finder it would be no different than the methods Terence suggested.  If you used the Share ➙ Burn menu option from inside iDVD you'll get a mini library that has to be accessed from the open library and the events/alubums copied into the destination library.  Not the same as the other methods.
    The Share ➙ Burn method is no longer supported with iPhoto 9 and later.
    OT

  • HT201210 i updated my iphone 3gs to iphone 6 . while installing the software it gets error and closed. then i restored my previous version. when i turned on the phone it gets usb and itunes symbol on screen. when i run itunes error is coming like server c

    i updated my iphone 3gs to iphone 6 . while installing the software it gets error and closed. then i restored my previous version. when i turned on the phone it gets usb and itunes symbol on screen. when i run itunes error is coming like server contact problem. what can i do to start my phone????  plz help me

    I will need a little bit of information about your phone. What kind of error are you getting?

  • I am receiving this error message when trying to export pictures: 'Unable to Export": An internal error has occured: Win32 API error 2 ( "The system cannot find the file specified.") when calling ShellExecuteExW from AgWorkspace.shellExecute.// I have a H

    I am receiving this error message when trying to export pictures: 'Unable to Export": An internal error has occured: Win32 API error 2 ( "The system cannot find the file specified.") when calling ShellExecuteExW from AgWorkspace.shellExecute.// I have a HP ENVY Phoenix, fully loaded, 1 1/2 years old.

    Nevermind I fixed it. Thank you.

  • Why does the clone stamp work when I go from a darker colour to a lighter colour but not the other way around. How can I lighten up a dark area? Lasso tool takes from the wrong area too.

    Why does the clone stamp work when I go from a darker color to a lighter color but not the other way around? How can I lighted a dark area? The Lasso tool takes from the wrong area.

    c.pfaffenbichler wrote:
    Why do you use the Blend Modes Lighter and Darker at all in this case and not simply Normal?
    And what kept you from posting a screenshot?
    I borrowed the image below for an HDR workshop I ran at the 2010 PSNZ National Convention, to demonstrate a method of removing halos.  You'll remember that halos were a serious problem with early HDR, and while the halos in this image were caused by over sharpening, they are perfect for demonstrating this technique.
    It relies on the fact that halos so often tend to put a lighter tone between the two areas where sharpening is being applied. Whether that is the sky abutting a dark line of hills, or the rock and little tower as in this image.  I've uploaded it at the size it was supplied to me at (about 2700 pixels wide).  So
    Click to open the full image, right click and copy, and paste into Photoshop.
    Select the clone tool, and set its blend mode to Darken.
    Try to sample on a line horizontal to where you want to clone, to give the best tonal match, and start cloning.
    Because the sky is darker than the halo, it overwrites it. But the rock is darker than the sky, so it has no affect.
    It works even better if you clone on a new layer also set to Darken.  No masking, just Photoshop blend mode magic.
    You can also fix the little tower. Use a great big brush — just remember to sample horizontal to match the horizon.
    Back then I was using the same trick with CAs after forgetting to fix them in ACR, and having done too much work to start again after spotting the problem.

  • I have the original iPad and when I sync it with my macbook pro in iPhoto the faces are different on both, how can I get them to be the same as on the computer

    I have the original iPad and when I sync it with my macbook pro in iPhoto the faces key photo aren't the same on both devices, how can I get them to be the same as on the computer

    Interesting observation.  Thanks for sharing.
    Did you have a technical support question?

  • Forefox won't start in windows XP: I get the message that windows "cant' find the exe file" even when I click from the program file, rather than the shortcut.

    Forefox won't start in windows XP: I get the message that windows "cant' find the exe file" even when I click from the program file, rather than the shortcut.

    Delete the current Firefox shortcut on the desktop and create a new desktop shortcut via the right-click context menu on the Firefox.exe program (Send to > Desktop)

  • TS3694 iOS 7.02 update made my iPad stay frozen on the appl logo.  What's more, a factory update in DFU mode won't work either, I get error code 3194 - any tips on what I should do?  It is an iPad2 on iOS 5 something, the one just before Apple removed You

    iOS 7.02 update made my iPad stay frozen on the appl logo.  What's more, a factory update in DFU mode won't work either, I get error code 3194 - any tips on what I should do?  It is an iPad2 on iOS 5 something, the one just before Apple removed YouTube...

    iOS 7.02 update made my iPad stay frozen on the appl logo.  What's more, a factory update in DFU mode won't work either, I get error code 3194 - any tips on what I should do?  It is an iPad2 on iOS 5 something, the one just before Apple removed YouTube...

Maybe you are looking for

  • Can i use my apple g4 cinema display as a television monitor?

    i have an old apple g4 display that i never use anymore. can i connect it to my cable box somehow?

  • F.27 Generate one statement for items posted in several company codes

    Have a customer extended to several company codes. This customer has open AR line items in several company codes. Client wants to generate a statement that includes all AR line items. (Cross company code Statement) I found a place in config for defin

  • Field in vbfa table

    Hi friends, I am facing a problem in vbfa table. I have  a billing documnet number 1000 in l_value1 now based  upon this billing document number i need to get the delivery number from vbfa table can any one tell which field should i use to retrive de

  • Problem: Unable to get Flash Media Live Encoder output in AIR NativeProcess

    I'm having an issue interacting with the command line Flash Media Live Encoder 3.1 (FMLECmd) via AIR NativeProcess. I'm not sure if the issue lies with FMLE or with AIR. When starting the NativeProcess I am displaying the data from standard output to

  • How to activate IDOC

    Hi, I have followed the following TC to create IDOC we31,30 we81,82 and we60 saved as html page.I have to activate the IDOC that I have created, How to do that?. If i go to TC we02,05  then execute using F8,I am getting the below message "No IDOC Sel