EasyDMS

Hello,
What is the difference between public folder and private folder in EasyDMS?
What is the relation between folder and document type?
Atul

Hi,
pls find comments
a) When an user does a search, document from both public as well as private folder are shown. For the user who is search public/private forlder is irrelevant. So what is the actual / real use of private folder? As i understand documents stored in private folder are not directly visible to other users where as documents stored in public folder is directly visible.
Both Public and Private folders help in creating/maintaining documents in structured manner. i.e Document Structures
lets take an ex:
some equipment has to be assembled for which drawings are already available in DMS.
consider 3 users - user1, user2, and user3
all these 3 users develop their own document structures/design equipment based on their own ideas which must be maintained confidential so that other user shud not see the structure.
if this structure is created in public folder the all other users will have access but if it is created in private folder then only respective user can see his own structure.
b) When creating a folder, document type is asked. But in that folder one can store documents of any document type. Would it be right to understand that folders are just representation of boxes and the documents stored in these boxes relate to the box?
How do i control/ authorize creation/non-creation of folders in public folder? How do i control/authorize that an user should by able to store documents in a particular folder only? e.g. i have created 5 folders under the public folder for project1, project2, project3, project4, project5 using document type PRJ. Now i want user2 to store documents in the folder project2 only?
while creating folder doc type is asked, tis is just for repesenting as an header folder under which u will be structuring all the required folders and documents.
all authorizations give in SAP while be taken into EDMS, after creating doc in standard SAP, document browser tab refers to creation of document structures which is nothing but fucntionlity of EDMS.
if user have authorisation to doc type thru which folder is created, any documents can be stored in that particular doc type/folder.
hope this example helps u.
Thank You,
Manoj

Similar Messages

  • Automatic creation of Thumbnail in EasyDMS

    Hi Experts,
    When I'm checking in an document with the EasyDMS Browser and apply, the DMS creates an thumbnail which is only shown in WebUI and SAP GUI but not in EasyDMS Browser.
    But when I check in an document via WebUI or SAP GUI this thumbnail is not created.
    Any ideas how I can switch off the creation of the thumbnail?
    Thanks,
    Pascal

    Hi Pascal,
    You can use these workstation applications in document management to display images that are assigned to a document info record (DIR) as thumbnails.
    The workstation applications are used for display per document type in the sequence defined.
    When displaying thumbnails, the system first takes the first Customizing entry. If the document of this document type has no image of this format, the system checks the next Customizing entry.
    If there are no images with the formats defined in Customizing, no thumbnail is displayed.
    /Tilak Raj

  • How to use template files in EasyDMS

    Hi everyone,
    In certain doc types we are using a template file (like excel or word document), so the user can choose in the "originals" section to create file from a template.
    The problem is that on EasyDMS there isn't such option.
    How can we use the template files from there too?

    refer
    http://help.sap.com/erp2005_ehp_04/helpdata/en/48/d602b6553b3e49e10000000a421937/content.htm

  • EasyDMS - search by date range for characteristics of type date

    Hi Folks,
    I have a characteristic of type date in the additional data of a DMS document. If I enter the date (for example validity date) as 08/31/2009 and search using cv04n and give a date range for the characteristic (i.e. 01/01/2009 - 12/31/2009), the search result will bring up the document.
    However, I cannot do this from the EasyDMS find function. I need to specify an exact date. This is not very helpful for user who need to find documents with a validity date between 01/01/2009 - 12/31/2009 for example. Is there a way users can search for date range in EasyDMS find function?
    Thanks,
    Lashan

    To search a date range with EasyDMS Client you have to set the registry key
    \HKEY_CURRENT_USER\Software\SAP\EasyDms\Generel\DateSearchPick to Value 0
    Then you can use the input field like in SAP-Gui. (01.01.2009-31.01.2009)
    If you set the value to 1 or the key is not defined you can only search for one specified date.
    If you don't find this key on your PC create it as dword.
    Maybe you must restart you PC for takeing effect.
    Hope this will help you.
    Regards Wolfgang

  • All document types not visible in SAP EasyDMS

    Hi,
    We have configured a no. of  document types in DMS ( in SAP R/3). But  only a few of those are visible in the SAP EasyDMS ( Web GUI). We are not able to figure out how to make those visible. I am completely new to EasyDMS. Can anybody help?

    hİ,
    that is very general problem, you should be more specific.
    i send you , link for easy dms configuration,
    i hope this helps
    [http://help.sap.com/bp_bl603/BBLibrary/Documentation/223_BB_ConfigGuide_EN_TR.doc]
    best regards,

  • Opening more than 1 ECL Viewer window from EasyDMS

    I have found that I can open more than one EasyDMS window as long as I am in 2 different directories, much like normal Windows operates. But when I double click on an image, in the first EasyDMS window, the image will open the image but I am unable to open an ECL  Viewer window if I double click on an image from the second EasyDMS window. The request seems to hang until I close the ecl viewer from the first EasyDMS window.
    Is this a limitation of EasyDMS / ECL Viewer or do I have something not configured correctly?
    I am using the Z_EASYDMS_ECL_OPEN_DOCUMENT function module.

    We have seen reports about a Community Toolbar extension causing this issue with not being able to open a new tab.
    So if you have such a toolbar then start with disabling it.
    *Tools > Add-ons > Extensions
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • EasyDMS : Function module to define allowed document types

    Hello together,
    I am working on EasyDMS 6.00 and have implemented the function module "Z_EASYDMS_GETDOCTYPES" to have a filtered list of allowed document types for creating folders and documents in EasyDMS.
    But this FM does not seem to work, the list still contains all document types that are customized in R3.
    Here is my implementation:
    FUNCTION z_easydms_getdoctypes.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(FOLDERDOCUMENT) TYPE  BAPI_DOC_KEYS OPTIONAL
    *"     VALUE(ISFOLDER) LIKE  BAPI_DOC_DRAW2-CADINDICATOR OPTIONAL
    *"  EXPORTING
    *"     VALUE(RETURN) TYPE  BAPIRET2
    *"  TABLES
    *"      DOCUMENTTYPES STRUCTURE  TDWAI OPTIONAL
    * default implementation: define some document types
    * for documents and folders
      DATA: ls_tdwai TYPE tdwai.
      REFRESH: documenttypes.
      IF isfolder IS INITIAL.
        ls_tdwai-dokar = 'IMP'.APPEND ls_tdwai TO documenttypes.
        ls_tdwai-dokar = 'TST'.APPEND ls_tdwai TO documenttypes.
        ls_tdwai-dokar = 'DMO'.APPEND ls_tdwai TO documenttypes.
        ls_tdwai-dokar = 'DRW'.APPEND ls_tdwai TO documenttypes.
      ELSE.
        ls_tdwai-dokar = 'IMP'.APPEND ls_tdwai TO documenttypes.
        ls_tdwai-dokar = 'DMO'.APPEND ls_tdwai TO documenttypes.
      ENDIF.
    ENDFUNCTION.
    Any help would be great!
    Thanks in advice,
    Andreas

    Hi Andreas,
    concerning the used function module I can tell you that it is called in Easy DMS. Before Easy DMS calls this module an availability check is made if it is activated too. So please check if the mentioned function module is activated in your system.
    Further I can recommend you to delete the RFC Cache in Easy DMS and check again if the desired functionality is available now.
    If this doesn't help the problem may be caused by the implementation of the function module.
    Best regards,
    Christoph

  • EasyDMS and Archive Link

    Hi,
    any idea, if it is possible to Checkin documents to Archive Link via easyDMS?
    Thanks for any answer!
    best regards
    Dieter

    Hi Dieter,
    as I know there are no restrictions for a specific storage type. Each storage type which is available in the backend system should also work with EasyDMS too.
    However I would recommend you to use the Content Server for storing DMS originals.
    Best regards,
    Christoph

  • EasyDMS - Private & Public folder creation - Error Message no. 1R579

    Hi,
    I want you to validate my approach for creating Public and Private folders in DMS.
    Create a document type FLD,assign number range as "internal or external number assignment",set internal and external number range.
    Now when i login in easyDMS and try to create a Public and Private folder i get a error as follows
    An error occurred when calling module SCMS_DOC_CREATE_FILES
    Message no. 1R579
    Could anyone pls tell how to avoid this.

    Hi Vipin,
    based on your mentioned error message it seems that you try to checkin some files in this folder document info record. Because the mentioned SCMS function module is mainly used when files are attached to document info records and stored in a content server.
    Generally from EasyDMS design point of view the folder documents should not contain files. These document info records are
    the header and the original files should be stored in separate document info records which are added to this folder.
    Regarding the 'Public' and 'Private' folders I would like to inform you that normally the 'Public Folder' is created by EasyDMS and the document number of it should be 'EDIPUBLICROOTFOLDER'. The 'Private Folder' is created when an user logs on to EasyDMS for the first time. Then the system checks if there is already a private folder for this user and if not, the user is asked to create one. The number of the private folder is the userID.
    Best regards,
    Christoph

  • Characteristics missing in EasyDMS?

    Hi all,
    First time poster. I have a troubleshooting question regarding EasyDMS. I'm currently setting up some test document types for training purposes and I'm having trouble understanding why EasyDMS isn't showing the characteristics that I have setup!
    Is this possibly a bug? Please see the image I have linked here for comparison between SAP GUI and EasyDMS. I'm unsure as to why the characteristics are missing and shown as inactive within EasyDMS.
    Your help is much obliged.
    [http://img.skitch.com/20091006-kputgubx8g559u11jyr1jkskcu.jpg]

    Hi Iring,
    The classes are currently already being maintained. This isn't the issue. The view in the screenshot was just to show that there are characteristics attached to the DIR itself. Nothing more. My problem is that even with all the config in SPRO being maintained, I still can't seem to see characteristics within EasyDMS!?!
    I have classes and class types currently being maintained for the particular document type. So this isn't the issue.
    If SAP GUI shows characteristics why doesn't EasyDMS?
    It's worked before... but this is the first case I have come across whilst applying config in an environment. I'm wondering is it a particular client problem?
    P.S. I'm using non-unicode client. I understand the limitations, but am unsure if this is part of the problem as well!
    Any assistance would be welcome!
    Thanks again for your quick reply.

  • Importing DocTypes, DIR's from DMS to EasyDMS

    Hi Gurus,
    I am New to EasyDMS. We have just installed Easy DMS 6.0 SP17 From SAP Market Place and Created Public and Private Root Folders
    Now We need to import all the document types and Its DIR's from SAP R/3 DMS to EDMS
    Kindly let me know how we can do that ?
    Thanks in Advance
    Palaniappan

    I agree with Pradeep's comment.
    Import functionality is not possible in Easy DMS. Its just an another user-friendly interface.
    If you want to you can use search functionality. Now onwards you can use Easy DMS for your daily activities.
    Regards,
    Prasad.

  • Open EasyDMS from cProjects

    hi,
    I need to call transaction from cProjects to open Easy DMS.
    I need the configuration settings.
    Regards,
    Reema.

    Hi Reema,
    in fact it is possible to open EasyDM from cProjects. Therefore the R/3 document either has to be linked via 1) the tab "object links" or 2) the tab "SAP DMS".
    The following settings are necessary for the 2 scenarios:
    1) cProjects -> Connection to external systems -> Object links in SAP systems -> make settings for the linked SAP objects -> select 0DOCUMENT -> First doubleclick 0DOCUMENT and check if the RFC connection is correct then select -> Service for an object type -> There you have to add 0EASYDMS as an additional row.
    Now if you link a R/3 document and press open on the right a pop-up appears with the option "Transaction URL" that opens EasyDM.
    2) In -> Cross-application components -> document management -> control data -> define document types you have to add the object link DPR_OBJLNK (screen no 271) to the document type you want to link. Now in cProject in the tab SAP DMS you should be able to create a link to existing or new document (note that on this tab the DIR can´t contain originals - it´s just used as a container). Now in cProjects customizing you need to go to -> documents -> define object links for documents in DMS -> There you need to check if the RFC correction is correct and again at -> Service for an object type you need to add "0EASYDMS".
    Now you should be able to create a SAP DMS container at the tab SAP DMS and with the open button you can start EasyDM and fill this container from EasyDM.
    In addition if you link this folder with the project template the folder and all DMS documents below are copied on project creation.
    If you use cProjects 4.0 and the link 0EASYDMS does not appear please check note 994803.
    Best regards,
    Daniel

  • DMS and EasyDMS

    hi
    Is there any limitations in EasyDms on how many documents can be stored in a structure or how many structures you can have.

    Hi Maplan,
    how do you want to save the email? "save as..." in outook? Perhaps someone could create an outlook addin for an automatic upload. It's not to difficult to create directories programmatically and the users don't have to select a folder. Your structure might be /year/month/day/ and then there are just 100 documents.
    For retrieving a document I would prefer the search (which is fast) and not the "browsing" through directories.
    regards
    Daniel
    P.S.: Is there anyone out there, who has seen such a solution?

  • SAP EasyDMS

    Hello Everyone,
    I have one requirement for mass upload/Download documents in DMS. I read certain discussions which held earlier & decided to go for Sap Easy DMS.
    Is this right decision ? I have integrated this with ECC & it is working fine as of now. As i am short in time, Pl Advise, How i can provide specific authorization to specific users, will ECC authorizations be captured here.?? Pl also suggest what is the flaws & limitations in EasyDMS.
    If users create there specific folders, will it show to everyone?
    Regards
    Gaurav

    Hi,
    Thanks Deepak
    I want to create folder & add PDF files per projects there. Like we have many projects & user want to see the files per project. Can i do this in easy dms. Inside the folder project, he also wants files of production & marketing separately & report in future. Can we use folders functionality here.? Also can we export report in excel from easy DMS which we generally do from SAP DMS ( CV04N). Pl suggest.
    Regards
    Gaurav

  • TREX Full Search via CV04N Displays DIR Hits While EasyDMS Search Shows All

    Hello All,
    I've searched for information on this and have not yet located an answer so I hope this has not already been addressed even though I think it is somewhat basic.  We have recently installed EasyDMS and TREX to enhance our existing DMS capabilities.  In our testing, we have found that EasyDMS's Full Text capability through TREX is reporting and displaying hits at the document file level whereas DMS CV04N Full Text capability is only showing hits at the document info record level.  Is there something that we have missed for the DMS CV04N capability to not display in the same fashion as the EasyDMS search capability?  For those users using CV04N, they will be disappointed to only find that the hit was at the DIR level and forcing them to find the document file that really contains the hit if multiple files exist in a DIR.
    Thanks - RIchard.

    Hi Richard,
    Please check whether you have done these configurations or not.
    For text search you have activate TREX Server follow the steps
    Set TREX
    A:- Transaction: SRMO
    Install TREX , and create RFC destination to connect to
    TREX.
    B:- Transaction: SKPR06
    Check the flag to Document Area "DMS" to utilize this document area for
    document search.
    For Indexing
    A: Transaction: SE38
    Run the report program "RSTIRIDX_REINDEX" to create Index.
    Also, run the report program "RSTIRIDX" to create Index.
    Set mime type for the text search
    A: SPRO --
    Cross-Application Components > Document Management System > General
    Data > Settings for Storage Systems > Create MIME types for full
    text search,
    Enter MIME type like
    "application/msword",
    "application/pdf".
    Retrive document via Test Search
    A: Then, test retrieval document search using
    Transaction: SKPR07.
    Enter Document Class "DMS_PCD1", Language "EN", Document Class "DMS",
    and try "TEST search".
    Regards,
    Deepak Kori

  • Best practices for EasyDMS Public Folder usage/management

    Hi,
        We are implementing EDMS and are looking for best practices on the use of the Public Folder in EDMS.  We have different sites that have different business models, such as Engineer to Order or a "Projects" based business.  While other sites have a large Flow operation of standard catalog products with ordering options.   Initial thoughts are to put only documents in the public folders that are common to all users at a site, such as document templates or procedures.  Others suggest putting project folders there where anybody can browse through the different documents for a project.   And that raises the question about who is the owner or manager of that public folder.  We don't want the masses to be able to create random folders so that soon the structure of the Public Folder is a big unorganized mess.  Any thoughts on best practices you have implemented or seen in practice are appreciated.
    Thanks,
    Joseph Whiteley

    Hi!
    My suggestion is to skip the folders all together! It will end as a total mess after a couple of years. My recommendation is to use the classification of the document type and classify the document with the right information. You can then search for the documents and you don't need to look through tons of folders to find the right document.
    I know that you have to put the document in a folder to be able to create it in EasyDMS but at my customers we have a year folder and then month folders underneath where they just dump the documents. We then work with either object links or classification to find the right documents in the business processes. Another recommendation is to implement the TREX engine to be able to find your documents. I donu2019t know if this was the answer you wanted to get but I think this is the way forward if you would like to have a DMS system that could be used to 10+ years. Imagine replacing Google with a file browser!
    Best regards,
    Kristoffer P

Maybe you are looking for

  • Modifying

    Hi SDN Experts, I am unsure what is the purpose of syntax "index sy-tabix" in this context: modify data_package index sy-tabix. Also, what is the difference between using "index sy-tabix" and not using it? That is,  just  "modify data_package" ? Rega

  • Error message in the log file

    Hi, I'm running CF 7.0.2. The app is using Flash forms. I have this onError function in my Application.cfc. <cffunction name="onError"> <cfargument name="Except" required="yes"> <cfargument name="EventName" type="string" required="yes"> <cflog file="

  • How to choose more than 60 column in data model

    Hi everyone i am trying to create this report that has 80ish column i am choosing the column in the data model but its not allowing me to chose more than 60 columns any way to get around it or to solve this issue ? thanks

  • Security groups naming convention in FIM 2010 R2

    Hi, I am using five security groups for Installing FIM Synchronization Service Manager the automatically pick these groups when installed the FIM Synchronization Service Manager FIMSyncAdmins, FIMSyncJoiners, FIMSynchOperators, FIMSyncBrowse, FIMSync

  • Null Reference when zooming on hidden detail data.

    This is really weird.  I have users that have reported this error: "An unhandled exception of type 'System.NullReferenceException' occured in CrystalDecision.Windows.Forms.dll".  I got some data from them and started playing around. The report is an