Getting document no. using document id  from dms

Dear Experts,
      I want to get Document No. using  Document ID of particuler document from DMS. Is there any Function Module which returns Document No. from Document ID. So how to get this.
<< Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
With Regards !
Shekh Ibrahim
Edited by: Rob Burbank on Jan 17, 2011 4:23 PM

Hi again,
maybe the report DMS_KPRO_READ2 can be useful for this requirement. Other useful tables could be DMS_PH_CD1, DMS_DOC2LOIO or DMS_PHIO2FILE.
Best regards,
Christoph

Similar Messages

  • Is there any way to get the query used in discoverer from backend??

    Hi All,
    I am new to dicoverer.
    Is there any way to get the query used in discoverer from backend??
    Thanks,
    Sachin

    Hi,
    you can view the SQL from within the discoverer menu:
    in desktop: View-> SQL Inspector
    in Plus: Tools-> Show SQL
    The SQL in the DB tables is encrypted so it's a problem getting it from there.
    You can export the workbook into SQL but it is not working for every worksheet (subquery, inline pivot tables...)
    you can create a batch file to export them all using the output of this script:
    select null,null,'echo off'
    from dual
    union all
    select distinct
    qs.qs_doc_name Workbook_name,
    qs.qs_doc_details Worksheet_Name,
    'start /wait <path>\dis51usr.exe /connect '||'&p_user_name'||'/'||'&p_password'||'@'||'&p_env'||' /apps_user /apps_responsibility "&responsibility" /opendb '||
    chr(34)||qs.qs_doc_name||chr(34)||' /sheet "'||qs.qs_doc_details||'"'||' /export SQL "C:\Export Discoverer SQL\'||qs.qs_doc_name||'-'||qs.qs_doc_details||'.sql" /batch'
    from eul_us.eul5_qpp_stats qs
    where qs.qs_doc_name is not null
    --order by 1,2
    union all
    select null,null,'echo off'
    from dual
    union all
    select null,null,'exit'
    from dual

  • Opening Document's using Document ID (DocIdRedir.aspx) results in Read-Only mode

    Hi,
    The document doesn't have Edit option when it opens through the DocIdRedir.aspx?DocId.
    Tried below below registry update solution and it doesn't provide the checkin/checkout options.
    do we have any other option/solution to enable the edit button with checkin/checkout?
    Request you please provide the solution.
    Registry update Solution:
             Add the following entry into the users registry.
    [HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Internet]  "OpenDocumentsReadWriteWhileBrowsing"=dword:00000001
               For a large number of users this would need to be done via Group Policy of course.
    Thanks,
    Neerender

    Hi  Neerender ,
    According to your description, my understanding is that you want to open document in edit mode with checkin/checkout through the DocIdRedir.aspx?DocId.
    For my test, if I configure my SharePoint 2010 to open office documents using the client application, when I open document through the DocIdRedir.aspx?DocId, the document  will be downloaded , then opened
    by the client application. So I can open it in edit mode.
    If I configure my SharePoint 2010 to open office documents in the browser, when I open document through the DocIdRedir.aspx?DocId, the document will be opened in the office web apps and I can edit it by clicking
    Edit in Brower.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Why do i not get option to use idvd option from my imovie

    Hi there
    I have recently bought a 15in macbook pro and wish to create a dvd from iMovie. But when i click the Share button I do not see the option to choose iDVD. Could someone please shed some light on this . Thanks.

    Welcome to Apple Support Communities
    iDVD and iWeb are no longer included in new computers because they aren't supported. If you want iDVD, you have to buy iLife '09 or '11 from eBay or Amazon and install it on your computer. After doing it, open  > Software Update, and install the latest iDVD

  • Show 'Text' Document contents  instead of using Document Links

    I have a requirement from my customer that requires comments to be stored and display both on the planning layout and display instantly in query.
    I am aware that documents which type other than text is stored in BIN form, so my first approach is just to assume to work with document with type 'TEXT'.
    I am aware this can be partly achieved by using the document links, but are there ways to get round of using document "links"? We want to show <b>instantly</b> the content of the document when the layout is opened and when BW query with the right combinations of characteristic values are displayed.

    Yes, for bex, it works only in workbook.
    Check F.Group: SKWF_CONTENT. There are many FM for documents which you can use.
    Here are the VBA Code part for calling RFC FM :
    Public Function BW_DOCUMENT_READ()
      Application.ScreenUpdating = False
    ' Declaration
      Dim FuncCtrl As Object
      Dim ABAP_FUNC As Object
      Dim ABAP_TAB_E_DOCUMENT_PROPERTY As Object
      Dim ABAP_TAB_E_DOCUMENT_CONTENT As Object
      Dim Row As Object
    ' Class Declaration
      Set FuncCtrl = CreateObject("SAP.Functions")
    ' Transfer SapConnection
      FuncCtrl.Connection = SapConnection
    ' Setting ABAP Functions and parameters
    '   Func Name
        Set ABAP_FUNC = FuncCtrl.Add(ABAP_FUNC_NAME)
    '   Func Export Params
        ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM1) = SAP_QUERY_DESCP
        ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM2) = SapConnection.Language
    '   Excute Function
        CALL_ABAP_FUNC = ABAP_FUNC.Call
    '   Check Function Call return
        If ABAP_FUNC.Exception <> "" Or Not CALL_ABAP_FUNC Then
           Call COLLECT_MESSAGE(Msgtxt001 & ABAP_FUNC.Exception)
           'MsgBox Msgtxt001 & ABAP_FUNC.Exception
        Else
        ' Func Import Params
          BW_BEX_SUBTOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM1)
          BW_BEX_TOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM2)
          BW_DOC_URL_PREFIX = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM3)
        ' Doc Content
          X_pos = 1
          ' Create Header for Doc content
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, "Document Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, "Document Line Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, "Document Content")
          ' Fill Doc content
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE2).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, Row("DOCNR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, Row("LINENR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, Row("LINE"))
            Next
        ' Doc Properties
          X_pos = 1
          ' Create Header for Doc content
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, "Document Nr.")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, "Property Name")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, "Property Value")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, "Language")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, "Text Short")
            Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, "Text Long")
          ' Fill Doc Property
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE1).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, Row("DOCNR"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, Row("NAME"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, Row("Value"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, Row("LANGU"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, Row("TXTSH"))
              Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, Row("TXTLG"))
             Next
        ' Infoobjects Text
          X_pos = 1
          ' Create Header
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, "Infoobject Name")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, "Language")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, "Text Short")
            Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, "Text Long")
          ' Fill Texts
            For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE3).Rows
              X_pos = X_pos + 1
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, Row("IOBJNM"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, Row("LANGU"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, Row("TXTSH"))
              Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, Row("TXTLG"))
            Next
        End If
        Application.Worksheets(SHEET_NAME_DOC_CONT).Select
        Range("A2").Select: Selection.End(xlDown).Select
        MAX_NR_DOC = Selection.Value
        Cells.Select: Cells.EntireColumn.AutoFit
        Application.Worksheets(SHEET_NAME_DOC_PROP).Select
        Cells.Select: Cells.EntireColumn.AutoFit
        Application.Worksheets(SHEET_NAME_IOBJ_TEXT).Select
        Cells.Select: Cells.EntireColumn.AutoFit
    End Function
    Private Function WRITE_DOC_TABLES(SHEET_NAME, I_X, I_Y, I_TEXT)
      Application.ScreenUpdating = False
      Set DOC_POS = Application.Worksheets(SHEET_NAME)
      DOC_POS.Cells(I_X, I_Y).NumberFormat = "@"
      DOC_POS.Cells(I_X, I_Y).Value = I_TEXT
    End Function
    For the BW Web, you can searh in how to paper from Tobias Kaufmann. Or search for Doc: "WEB API REFERENCE". In that Doc, search for the topic: 'WEB DESIGN API FOR TABLES'. There you will get all info needed, about how to enhance BW Web application designer.
    There is no possibility for me to attach that doc here. sorry, you have to search it by your self, or send me your email.
    Hope it helps.
    Best Regards,
    Suan Liono

  • Print from DMS directly

    hi all,
        i have a requirement that document should be printed directly from DMS. i came to kno from someone that there is s program named MCDOKPRT which can solve my problem. But i tried that program, it is giving me some text and not displaying or printing the actual document which has been loaded using the Tcode CV01n.
    Pls help
    any suggestions most welcomed.
    Regards
    Kshitij

    Hi Kshitij,
    If you want to print originals directly from a DMS transaction (CV02N or CV03N)
    it is necessary that you have defined workstation application type "3" (print) for the relevant workstation application and the frontend type in transaction DC30.
    Further it is necessary that your Windows folder options are also maintained correctly. Please see the following sample for the direct print of PDF files:
    I would recommend to do the following steps:
    1. Open Microsoft Explorer
    2. Menue: Tools   > Folder options   > File types
    3. Select "PDF" and press button "Advanced"
    4. There should be a input called "print". If there is no such entry
       please create it by pressing the button "New"
    5. Into the action field please insert "print" and to application used..
       write the Acrobat application path (see sample picture attached)
    Back to SAP system at transaction DC30:
    1. Select "PDF" and then select "define Workstation application"
    2. Edit entry: PC    PDF    3 (application type)    %Auto%
    3. Save
    After creating this settings the pdf document should be printed by
    directly. Only the empty Reader (without displaying a file) opens.
    Best regards,
    Christoph
    P.S.: Please award points of the information is useful.

  • Get document from DMS to VB

    Hello,
    does anyone know how to get the document from DMS to a local drive, while using VB Code (with SAP Connector) or .NET?
    I tried to use the 'CVAPI_DOC_CHECKIN' but it didn't work.
    maybe it's the wrong function to use...
    I've also tried to examine the 'CVAPI_DOC_GETDETAIL' but got an error.
    does anyone has a sample code in VB or .NET to get the document from a DMS to a local file?

    Try BAPI_DOCUMENT_CHECKOUTVIEW2.
    Remember to reward points if this solves ur problem.

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • My pdf reezes when I click on COMMENT. I am trying to get at the tools to edit a pdf. If I use the tools from the toolbar, there is no issue, but once I click COMMENT, the document freezes and I have to open Task Manager to crash it. This started in the l

    Sorry, I am new to the type of problem-solution process and I do not know how to edit my first statement. My true statement is below:
    My pdf freezes when I click on COMMENT. I am trying to get at the tools to edit a pdf. If I use the tools from the toolbar, there is no issue, but once I click COMMENT, the document freezes and I have to open Task Manager to crash it. This started in the last seven days (3.31.15).

    I answered your questions below, BUT while I was searching for properties, I found the REPAIR ACROBAT INSTALLATION feature, did the repair and (Voila!) the issue was resolved!
    Thanks for making me search for information.
    Karen
    I am using Acrobat XI Pro, version 11.0.10.32.
    I did not create the file I was working in during the freezes, so I tried a PDF that I created with Adobe and it also freezes when I click on COMMENT. I did discover that the COMMENTS plug-in is loaded. (see image
    I have used COMMENT for years without this issue occurring. It started in the last 2 weeks.
    I could not find Properties under the file menu, but found a security setting in Preferences under the Edit menu. It did not have a way to allow/disallow COMMENT.

  • Get/retreive managed metadata column value from Document Library using SharePoint 2013 JSOM

    Hi,
    I am trying to retrieve managed metadata column (NewsCategory) value in SharePoint 2013 Document library using JSOM.
    I get "Object Object" rather than actual value.
    I tried:-
    var newsCat = item.get_item('NewsCategory');
    alert(newsCat) //Displays [Object Object]
    var newsCatLabel = newsCat.get_label();
    var newsCatId = newsCat.get_termGuid();
    But, I get the error "Object doesn't support property or method get_label()"
    I also tried :-
    var newsTags = item.get_item(' NewsCategory ');
    for (var i = 0; i < newsTags.get_count() ; i++) {
    var newsTag = newsTags.getItemAtIndex(i);
    var newsTagLabel = newsTag.get_label();
    var newsTagId = newsTag.get_termGuid();
    Even now I get the error "Object doesn't support property or method get_count()"
    I have included " NewsCategory " in the load request:- context.load(items, 'Include(File, NewsCategory)');
    Any idea what the issue is? Do I have to add any *.js file using $.getScript?
    I added following .js files
    var scriptbase = _spPageContextInfo.webServerRelativeUrl + "/_layouts/15/";
    $.getScript(scriptbase + "SP.Runtime.js", function () {
    $.getScript(scriptbase + "SP.js", function () {
    $.getScript(scriptbase + "SP.Core.js", function () {
    Thanks in Advance,

    Hi Patrick,
    I already added those references. I just pasted the parts of script snippet in my initial post. To avoid confusion I am pasting here complete script.
    2.1.1.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
    var scriptbase = _spPageContextInfo.webServerRelativeUrl + "/_layouts/15/";
    $.getScript(scriptbase + "SP.Runtime.js", function () {
    $.getScript(scriptbase + "SP.js", function () {
    $.getScript(scriptbase + "SP.Core.js", function () {
    function getdata() {
    var context = new SP.ClientContext.get_current();
    var web = context.get_web();
    var list = web.get_lists().getByTitle('Documents');
    var camlQuery = new SP.CamlQuery();
    var filterCategory = 'Solutions';
    var IDfromTaxonomyHiddenList = 15;
    camlQuery.set_viewXml('<View><Query><Where><Eq><FieldRef LookupId="TRUE" Name="'+filterCategory+'" /><Value Type="ID">' + IDfromTaxonomyHiddenList +'</Value></Eq></Where></Query></View>');
    /*the above CAML query successfully gets all the list items matching the criteria including "NewsCategory" managed metadata column values
    But when I try to display the value it retrieved it ouputs/emits Object Object rather than actual values */
    var items = list.getItems(camlQuery);
    context.load(items, 'Include(File,NewsCategory)');
    context.executeQueryAsync(
    Function.createDelegate(this, function (sender, args) {
    if (items.get_count() > 0) {
    var listItemEnumerator = items.getEnumerator();
    while (listItemEnumerator.moveNext()) {
    var oListItem = listItemEnumerator.get_current();
    var file = oListItem.get_file();
    var name = file.get_name();
    var newsCat = oListItem.get_item('NewsCategory'); alert(newsTags.constructor.getName());
    alert(newsCat) //Displays [Object Object]
    var newsCatLabel = newsCat.get_label(); // Here it errors out with message "Object doesn't support property or method get_label()"
    var newsCatId = newsCat.get_termGuid();
    } //end while
    }//end if
    Function.createDelegate(this, function (sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    ExecuteOrDelayUntilScriptLoaded(getdata, "SP.Core.js");
    </script>
    In the above script "var name = file.get_name(); " gets the exact file name.
    But the line "var newsCat = item.get_item('NewsCategory');
           alert(newsCat) //Displays [Object Object]  rather than actual value.
    Issue resolved replace "oListItem.get_item('NewsCategory');" with oListItem.get_item('NewsCategory').get_label();"
    Thanks

  • Reg: Document upload from DMS to local System

    Hi All,
    I have to download documents from DMS to my local system. I am following:
    1) CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2'
         EXPORTING
              documenttype    = 'XXX'
              documentnumber  = 'XXXX'
              documentpart    = '000'
              documentversion = '00'
         IMPORTING
              documentdata    = ls_documentdata2
              return          = ls_return
         TABLES
              documentfiles   = li_documentfiles.
    2) Getting file name & path from li_documentfiles & changing the path &  name of the file.
    3)   CALL FUNCTION 'BAPI_DOCUMENT_CHECKOUTVIEW2'
             EXPORTING
                  documenttype    = 'IBD'
                  documentnumber  = 'WWI-00000000000000000086'
                  documentpart    = '000'
                  documentversion = '00'
                  documentfile    = ls_documentfiles1
             IMPORTING
                  return          = ls_return
             TABLES
                  documentfiles   = li_documentfiles1.
    Summary:
    1) CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2' - it does not return file name & path
    2) i am changing path name & file name & passing to  ls_documentfiles1.
    3) CALL FUNCTION 'BAPI_DOCUMENT_CHECKOUTVIEW2' - This F/M does not save the file into given path. It always stores at "C:\Documents and Settings\TEMP\SapWorkDir". Also Name of the file is determined by the system. The file name which i pass, is not taken into account.
    Kindly help me out to download the document from SAP to my local system.
    Early response will be highly appreciated.
    Best Regards,

    Hi,
    Try this...use the FM BAPI_DOCUMENT_CHECKOUTVIEW2 to download the files to the directory that sap is saving..Then use the class method CL_GUI_FRONTEND_SERVICES=>FILE_COPY to move the files to the directory you want..
    Thanks
    Naren

  • BAPI to download document from DMS

    Hi ALL
    I have the requirement that to download the all the active drawing(DWG) files to local file system or data base for purpose.
    1. I am looking at BAPIS to download from external program.
    Do we have any BAPIS to get the files from DMS.?
    2. And i want to convert those DWG files to pdf files.
    Is there any way we can convert in the dms and download or
    I have to download DWG to localsystem and convert afterwards??
    3. Is there any way to push IDOC for DMS files when the file changes in DMS to external system??
    Please help me.
    Thanks
    Vansi

    Hi Vamsi,
    I think you can do it using program DMS_RELOCATE_CONTENT.
    Go through below link as well
    BSP & DMS Document Download
    <b>Reward Points if this helps,</b>
    Satish

  • Error creating document from using list using Document Template

    Hi All,
    I am trying to create a document from sharepoint list and upload it to a document library using item added and item updated event receiver methods. I can create metadata from list update in document library but unable to open the document. The error message
    I get is "we're sorry. we can't open "Filename" because we found a problem with its contents. no error detail available". Please see the below code.
    SPSecurity.RunWithElevatedPrivileges(delegate()
                       try
                           string TemplateUrl = string.Empty;
                           SPWeb web = properties.OpenWeb();
                           web.AllowUnsafeUpdates = true;
                           SPDocumentLibrary olist = web.Lists["NewLibList"] as SPDocumentLibrary;
                           String url = olist.RootFolder.ServerRelativeUrl.ToString();
                           SPFile file = null;
                           file = web.GetFile(olist.DocumentTemplateUrl);
                           if (file != null)
                               SPListItem oItems = properties.ListItem;
                               web.AllowUnsafeUpdates = true;
                               byte[] readStream = file.OpenBinary();
                               SPFile uploadedFile = olist.RootFolder.Files.Add("http://site/subsite/Libraryname/" + properties.ListItemId.ToString() + ".docx", readStream,
    true);
                               SPListItem listitem = uploadedFile.Item;
                               listitem["Firstname"] = oItems["Firstname"];
                               listitem["Lastname"] = oItems["Lastname"];
                               if (uploadedFile.CheckOutType != SPFile.SPCheckOutType.None)
                                   uploadedFile.CheckIn(string.Empty);
                               listitem.Update();
                               uploadedFile.Update();
                               web.AllowUnsafeUpdates = false;
                       catch (Exception ex)
                           EventLog.WriteEntry(EventLogName, ex.Message, EventLogEntryType.Error);

    Hi,
    Please try to use the code below:
    SPSecurity.RunWithElevatedPrivileges(delegate()
    try
    string TemplateUrl = string.Empty;
    SPWeb web = properties.OpenWeb();
    web.AllowUnsafeUpdates = true;
    SPDocumentLibrary olist = web.Lists["NewLibList"] as SPDocumentLibrary;
    String url = olist.RootFolder.ServerRelativeUrl.ToString();
    SPFile file = null;
    file = web.GetFile(olist.DocumentTemplateUrl);
    if (file != null)
    SPListItem oItems = properties.ListItem;
    web.AllowUnsafeUpdates = true;
    Stream readStream = file.OpenBinaryStream(); //file is SPFile type
    SPFile uploadedFile = olist.RootFolder.Files.Add("http://site/subsite/Libraryname/" + properties.ListItemId.ToString() + ".docx", readStream, true);
    uploadedFile.CheckOut();
    SPListItem listitem = uploadedFile.Item;
    listitem["Firstname"] = oItems["Firstname"];
    listitem["Lastname"] = oItems["Lastname"];
    listitem.Update();
    uploadedFile.Update();
    uploadedFile.CheckIn(string.Empty);
    web.AllowUnsafeUpdates = false;
    catch (Exception ex)
    EventLog.WriteEntry(EventLogName, ex.Message, EventLogEntryType.Error);
    If the issue still exists, I suggest you dubug your code and check whether line of code error.
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • Not able to copying files/folders from one Document Library to another Document Library using Open with Browser functionality

    Hi All, 
    We have SharePoint Production server 2013 where users are complaining that they are not able to copy or move files from one document library to another document library using “Open with Explorer” functionality.
    We tried to activate publishing features on production server but it did not work. We users reported following errors:  
    Copying files from one document library to another document library:
    Tried to map the document libraries and still not get the error to copy files: 
    In our UAT environment we are able to copy and move folders from using “Open with Explorer” though.
    We have tried to simulate in the UAT environment but could not reproduce the production environment.  
    Any pointers about this issue would be highly appertained.
    Thanks in advance
    Regards,
    Aroh  
    Aroh Shukla

    Hi John and all,
    One the newly created web applications that we created few days back and navigated to document library, clicked on “Open with Explorer”, we get this error.
    We're having a problem opening this location in file explorer. Add this website to your trusted and try again.
    We added to the trusted site in Internet Explorer for this web application, cleared the cache and open the site with same document library but still get the same above error.
    However, another existing web application (In same the Farm) that we are troubleshooting at the moment, we are able click on “Open with Explorer”,  login in credentials opens and we entered the details we are able to open the document
    library and tried to follow these steps:
    From Windows Explorer (using with Open with Explorer), tried to copy or move a files to
    source document library.
    From Windows Explorer moved this file to another destination document library and we got this error.
    What we have to achieve is users should be able to copy files and folders using
    Open with Explorer functionality. We don’t know why Open with Explorer
    functionality not work working for our environment.  
    Are we doing something wrong? 
    We have referred to following websites.
    we hope concepts of copying / Moving files are similar as SharePoint 2010. Our production environment is SharePoint 2013.   
    http://www.mcstech.net/blog/index.cfm/2012/1/4/SharePoint-2010-Moving-Documents-Between-Libraries https://andreakalli.wordpress.com/2014/01/28/moving-or-copying-files-and-folders-in-sharepoint/
    Please advise us. Thank you.
    Regards,
    Aroh
    Aroh Shukla

  • On 10.4.11 Mac Mail I get this: Mail cannot update your mailboxes because your home directory is full. You must free up space in your home folder before using Mail. Delete unnedded documents or move documents to another volume. I can't open mail.

    On 10.4.11 iMac Mac Mail I get this message: "Mail cannot update your mailboxes because your home directory is full. You must free up space in your home folder before using Mail. Delete unneeded documents or move documents to another volume." I can't open mail to do this. I have reinstalled software but no effect. How do I get into Mail to delete?

    Found this on the "more like this" Worked like a charm!
    With the Mail.app quit and using the Finder, go to Home > Library > Mail. Copy the Mail folder and place the copy on the Desktop for backup purposes.
    Go to Home > Library > Mail > Envelope Index. Move the Envelope Index file to the Desktop.
    Launch Mail and you will be prompted to import mailboxes. Select OK and allow the import process to complete.
    After confirming all mailboxes were successfully imported and available, you can delete the copy of the Mail folder and old Envelope Index file from the Desktop and this should resolve the problem.

Maybe you are looking for

  • Script does not work anymore after updating to FM 12.0.3

    Hi, With TCS5, Robohelp would crash when importing FrameMaker books to RH, because the FM files had embedded graphics. So, I found a script to externalize the graphics before doing the import (the script is: ExtendScript of the week: Externalizing Gr

  • Basic swing question

    I just started looking at swing yesterday because I want to provide a GUI to replace a command line utility we use. I've basically finished it but have a quick question about form - I will get some literature later but would like to get a feel from t

  • Exchange 2010 Org Health check telling me I need Enterprise CALs, bug?

    My new install of Exchange 2010 Enterprise organizational health check  is telling me I also need Enterprise CALs for all of my test users. This does not seem right since I have not enabled any features listed as ecal features at http://www.microsoft

  • Bad service and support

    I have heard that BT are just as bad. I think we will just have to accept that all broadband suppliers are very very bad at support.

  • Funds mngt - Number range 01 not found for object BULI_DOCNR

    Hi all need some urgent help to crack an error am getting while creating a budget in funds management. the error am getting is "Number range 01 not found for object BULI_DOCNR in fiscal year 2007" I have maintained the number range in Public Sector M