Document browser / Folder Structure in DMS

Dear Experts,
I have activated document browser and was able create folder structure.
As per clients requirement, We designed a department wise folder structure.
Example :
Main Folder 1
Main Folder 2
etc..
Under each main folder a sub folder is created to maintain specific DIR.
But in the system, there is no restrictions for document types under a sub folder, and we are able to create any DIR with any document type under a any sub folder.
So, could anyone suggest me a way out to restrict document types under a folder?
Your suggestions would be appreciated.
Regards,
SK.

Hi,
Yes its a part of DMS.
You can activate the ACL authorizations using customizing transaction 'DCSWITCH'.
There are many threads available. Please search.
/TilakRaj

Similar Messages

  • Mass uploading of folder Structure?

    Dear Expert,
    As per client requirement, we needed feasibility of Upload of multiple documents with folder structure. Suppose we had folder structure with different files in folders available in CD, which we wanted to copy/create folder structure in Content server as available in CD. Is there any BAPI is available.
    While Searching for this requirement I found bapi_document_create2 u2026.but I want to know with this can I directly copy folder structure available in CD to Content Server.
    I wanted to know, as per requirement will it be possible to create folder structure from CD?
    Thanks in advance..

    Hi Sam,
    as explained in your SAP customer message the BAPI_DOCUMENT_CREATE2 could be used for this requirement. If you want to hand over document structure data please fill table DOCUMENTSTRUCTURE. For further information on the BAPI functionalities please see SAP note 766277.
    Best regards,
    Christoph

  • DMS: ECC6 New tabs of Document browser & Authourizations ??????

    Hi all,
    there are new tabs of Document browser & Authourizations in ECC6 can anyone tell the significant use of it, where can i find the relevant info on it.
    Can i remove those tabs from the DIR screen, is there any configration to remove those tabs.
    Plz help.
    Thanks & regards.

    The authorisation tab is new functionality from ECC6. It allows you to incorporate authorisations on document level which expand the authorisation functionality considerably. I.e. you can now set display/change access on a department/user/etc level.
    The Document Browser tab replicates the folder structures found in EasyDMS and allows you to display/change/edit this structure from within SAP itself.
    You can remove either tab using ABAP but not using standard configuration.

  • Document Browser: Possible to start from a certain folder?

    Hi,
    in some cases it would be rather helpful if the document browser tab would open a certain folder in the whole structure.
    E.g. User is displaying a DIR in CV03N where he/she can see that this DIR is a folder. When the user now jumps to the doc browser tab he/she should directly see the sub folders and not the top folders (private and public root).
    Any ideas how to influence the doc browser tab?
    Kind regards
    Alex

    Hi Alex,
    please see if note 968312 is usefull here. This should keep the Browser expanded if you go back.
    Best regards,
    Christoph

  • Tree Folder Structure in a browser?

    How to get a tree folder structure of hyperlinks on a browser as part of Servlet's response.
    An example webpage of such folder structre that I am trying is here http://archive.apache.org/dist/tomcat/tomcat-5/
    Can any one guide me how do i get this?

    Hi Hirmuinen,
    It is not possible to add a folder in the standard system.  I would suggest that you place special project integration documentation in the highest level of the Business Scenario folder, in the documentation tab.
    Regards,
    Rich Labib

  • DMS for folder Structure

    Hi all,
    I have to implement DMS, but one of the requirement from client side had stuck me up, client requires the DMS to follow folder Structure.
    Can we implement SAP based DMS with folder strategy?
    Regards,
    Punam

    hi,
    Go for easy DMS, there u have option of Folder Hirarchy.
    Regards
    sham

  • Use Applescript to create folder structure from Numbers document

    Hello All,
    I know this is possible and I am feeling close - I just couldn't find a post that addressed the issue I am having exactly. Essentially I have a client list with 211 business names in it. I am trying to create a script that will scan the first column of my Numbers document and create a folder structure from that list. I found a post on another website that gave me a rough template and this is where I am at:
    set destinationFolder to "MacHD:/Users//Documents/Work/Customers/:to:folder:"
    tell application "Numbers.app"
              set theCells to value of range "A1:A211" of active sheet
    end tell
    repeat with oneCell in theCells
              tell application "Finder" to make new folder at folder destinationFolder with properties {name:item 1 of oneCell}
    end repeat
    When I run this I get "Expected end of line but found class name." and in the result window it display "
    error "Can’t get value of range." number -1728 from «class NMCv» of «class NmCR»"
    I am completely new to this and don't really know how to debug. Any help would be appreciated! Thank you so much!
    Adam

    Here is an enhanced version which no longer use a loop to extract the selected values.
    --{code}
    set destinationFolder to "MacHD:/Users//Documents/Work/Customers/:to:folder:"
    tell application "Numbers.app"
              set theCells to value of range "A1:A211" of active sheet
    end tell
    repeat with oneCell in theCells
              tell application "Finder" to make new folder at folder destinationFolder with properties {name:item 1 of oneCell}
    end repeat
    set destinationFolder to "" & (path to desktop) & "  dossier"
    Select the range of source cells then run the script *)
    Grab parameters describing the selected cells *)
    set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    Extract the names from the selected cells *)
              tell column colNum1
                        set theNames to value of cells rowNum1 thru rowNum2
              end tell -- column
    end tell -- Numbers
    I always do my best to use System Events which is faster than the Finder *)
    tell application "System Events"
              repeat with aName in theNames
                        try
      make new folder at end of folder destinationFolder with properties {name:aName as text}
                        end try
              end repeat
    end tell
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    on get_SelParams()
              local d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2
              tell application "Numbers" to tell document 1
                        set d_Name to its name
                        set s_Name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_Name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_Name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if
                        end if
                        tell sheet s_Name to tell (first table where selection range is not missing value)
                                  tell selection range
                                            set {top_left, bottom_right} to {name of first cell, name of last cell}
                                  end tell
                                  set t_Name to its name
                                  tell cell top_left to set {row_Num1, col_Num1} to {address of its row, address of its column}
                                  if top_left is bottom_right then
                                            set {row_Num2, col_Num2} to {row_Num1, col_Num1}
                                  else
                                            tell cell bottom_right to set {row_Num2, col_Num2} to {address of its row, address of its column}
                                  end if
                        end tell -- sheet…
                        return {d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2}
              end tell -- Numbers
    end get_SelParams
    --=====
    on parle_anglais()
              return (do shell script "defaults read 'Apple Global Domain' AppleLocale") does not start with "fr_"
    end parle_anglais
    --=====
    --{code}
    Here is an alternate version of the piece of code extracting the values :
    --{code}
    Grab parameters describing the selected cells *)
    set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    Extract the names from the selected cells *)
              set cell1 to name of cell rowNum1 of column colNum1
              set cell2 to name of cell rowNum2 of column colNum1
              set theNames to value of cells of range (cell1 & ":" & cell2)
    end tell -- Numbers
    --{code}
    Yvan KOENIG (VALLAURIS, France) mercredi 25 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Document browser in dms

    Hi all,
    I got 7 tabs in create document info record (cv01n), about 5 i knows, but additional 2 are "Document browser" and "Authorizations", I have to remove this tabs, kindly help me out, where I can change the configuration.
    Regards,
    Punam Modi

    Dear Punam Modi
    Your problem solved by doing steps which described below
    SPRO->Cross Appln Compnt.->Document Mngmt>Control Data->Activate Document Browser and ACLs
    and Untick option which ever TAB u want to remove
    P.S.  Award point is usefull for future.
    and close this question
    Tushar Dave
    Edited by: Tushar Dave on Jun 27, 2008 5:24 PM

  • Activate Document Browser and ACLs

    Hi all,
    I want to activate the Document Browser and ACLs tab in the DIR.
    I have followed CAC--> Document Management --> Control Data --> Activate Document Browser and ACLs and then I've maintained "X" for each tab, but in the DIR nothing appear.
    Have you any suggestions?
    Thanks,
    Marco.

    Hi,
    In this activity, you can activate the document browser and ACLs independently of one another.
    When you select the indicators, the tab pages Document Browser and Authorizations are available in document editing.
    The document browser contains the folder structure of SAP Easy Document Management, which you can use to edit documents. For more information about the document browser, see SAP Library under SAP ERP Central Component -> Cross-Application Components -> Document Management -> Document Browser.
    You use ACLs to pass on access rights that you created for a particular folder to other folders in the same structure. For more information about ACLs, see SAP Library under SAP ERP Central Component  -> Cross-Application Components -> SAP Easy Document Management -> Work with SAP Easy Document Management -> Authorizations in SAP Easy Document Management
    Also check ,
    As of SAP ERP 2005, all ACLs are automatically available in SAP Easy Document Management and the back-end system. As of SAP R/3 4.7, it is possible to implement ACLs and you have to implement ACLs up to SAP ERP 2005 (see SAP Note 798504).
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/7c/4ca9429888b111e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/plm/newFunctionalitiesinERP2005
    Benakaraja ES
    Edited by: benaka rajes on Jun 11, 2009 10:48 AM

  • SharePoint List Filter to narrow a folder structure

    Hello,
    The company I work for has a document library containing folders for each of their hundreds of clients.  The current process now is to load all of the folders in alphabetical order in order so that the users can scroll through and find the correct client
    relatively quickly.  This takes longer than it should considering how many folders need to load.
    I was trying to utilize the SharePoint List Filter to pull the Title column so the users could filter based on the name and we wouldn't need to pull all of the data each time the library was opened, but it seems that the title and name columns don't hold
    their connection to the list.  Each time I attempt to set the connections and then use the filter, I get the "This filter is not connected" error.
    Is it possible to use this web part in this manner (or is there another web part that will work) or should I suggest moving to meta data instead of a folder structure if they want speed of use?
    Thank you in advance!

    Hi,
    Based on your description, my understanding is that you want to you want filter the document library by the title column so that the users could filter based on the name and don’t need to pull all of the data each time the library was opened.
    Refer to the following steps:
    Open your document library-> choose Export to Excel->in excel, click insert PivotTable,
    create a pivot table in Excel -> use  Report filters
    To filter the title column->save it and upload it to a document library
    Then create a new page in SharePoint  and add the Excel Web Access web part and configure it to display your workbook, (or you can add the Excel Web Access web part in your document library and configure it to display your workbook) Now
    you can filter the document library by the title column.
    Here is a link about how to Create a pivot table in Excel 2010:
    http://www.techonthenet.com/excel/pivottbls/create2010.php
    Here is a link about how to use Report filters:
    http://www.gcflearnfree.org/excel2010/20.5
    Besides, you can refer to the following blog:
    http://consulting.risualblogs.com/blog/2014/09/10/filtering-excel-webparts-in-sharepoint-using-query-string-parameters/
    Best Regards,
    Lisa Chen

  • Is there an app for creating a folder structure on the iPhone out there?

    I'm looking for an application to create folders (possibly password-protect them) on the iPhone, so I can add documents, PDFs, video clips etc to the phone and create subdivide them further in folders. There doesn't seem to be anything that does the right job in the app store. Is it not possible? Any feedback to help me understand would be appreciated.

    It is not possible. You cannot create the folder structure you're speaking of and you cannot save files to your iPhone, even if you had folders.
    There are no apps for folders or app organization. There are apps that allow you to access files from your desktop or the cloud from your iPhone. I use box.net. Dropbox and AirShare are others.

  • Automatic creation of KM folder structure from xml pattern

    Hi all,
    is it possible to create a KM folder structure automaticly, following the tree structure of an xml document?
    For example:
    an xml-document with following content:
    <item id=1 level=0>abc</item>
    <item id=2 level=1>aaa</item>
    <item id=3 level=1>bbb</item>
    <item id=4 level=2>ccc</item>
    <item id=5 level=0>def</item>
    I'd like to create a KM folder structure like this:
    - abc
    ---aaa
    ---bbb
    ccc
    - def
    Does anyone have any idea to implement this scenario in KM?
    Much obliged!
    Steffi

    Not currently - well at least not easily - there is always the programatic approach.
    I would suggest you can create an FSDB repository - this means you can then create your structure in the file system using standard desktop tools.
    After that you could do a mass copy back into the db based KM repository if you so wished.
    For your downstream systems you could always ICE the data across meaning you dont have to create everything again.
    Haydn

  • SAP Netweaver Portal - Folder structure and report publishing strategy

    Hi gurus,
    I'm working on a project in which we are publishing BW reports in SAP Netweaver Portal (prior to this, we were using SAP Bex Browser) organizing it by Department (workset, 2nd lvl of navigation), Business Processes (workset, 3rd lvl of navigation) and "iview types" (transactions, queries, dashboards and so on). On 1st level we have a workset simply called "Reports".
    For each PFCG role we have on BW (ABAP Server), we created a portal role and defined which of the higher navigation tiers is visible to users (delta-linking the top level navigation worksets to the portal role and setting visible accordingly) and then we assigned Portal roles to the appropriated Group (PFCG role) so all users that have access to certain PFCG role can have access to the corresponding Portal role.
    For example:
    In BW (ABAP) we have a PFCG Role: Sales PMR Analysis - Administrator, which grants access to Sales Infoproviders, queries and data for PMR analysis. The user that have access to it, should be able to see:
    |Reports|
    |Sales Administration|
    v PMR Analysis
      > Web Queries
      > Transactions
      > Dashboards
      > Workbooks
    In Portal we create a workset that has: "Reports" and under it, all Departments (Sales Administration, Financial, Services, Human Resources and so on) set as "not visible". We create a Portal role called PMR Analysis and add the Report/Departments workset, set Sales Administration as visible and add worksets/folders named PMR Analysis, Web queries, Transactions, etc, and all the corresponding iviews under it.
    If we assign this new Portal role to the Group of the corresponding PFCG role, the user will see exactly as the example from above.
    Pros: The users have a clean view of the reports he/she has access.
    Cons: The users doesn't have a clear view of what is available in BW so he can request access. There might be some useful report lost in on of the hundreds of BW roles that he doesn't know it exist.
    One of the options would be to grant visibility to ALL departments, business processes and iviews in Portal and let PFCG security roles control user access, but that might be confusing to have an overwhelming amount of links, making it hard to find what the user needs, specially during first access. Not to mention possible security breaches.
    So, I'd like to know how other consultants are defining this kind of folder structure and report publishing strategy in Portal. Ideally we would like to be able to have:
    - Visibility of all existant reports even those that the user does not have acess (so he can learn that it exist and request access)
    - Clean view of reports, segmented by department and business processes.
    - Possibility to search for reports, even for those that the user does not have access.
    I'd appreciate if you guys can share your experience on this.
    Thanks in advance.
    Leandro

    Cons: The users doesn't have a clear view of what is available in BW so he can request access. There might be some useful report lost in on of the hundreds of BW roles that he doesn't know it exist
    This is not a refutation: your BW developers/consultants should be able to write reports, which points you in case of insufficent backend rights. EP is not designed to be familiar with ABAP security concept and cant take any influence at it.
    One of the options would be to grant visibility to ALL departments, business processes and iviews in Portal and let PFCG security roles control user access, but that might be confusing to have an overwhelming amount of links, making it hard to find what the user needs, specially during first access. Not to mention possible security breaches.
    Yes, bad idea.
    - Visibility of all existant reports even those that the user does not have acess (so he can learn that it exist and request access)
    As you already wrote on your own, this would be not good
    - Clean view of reports, segmented by department and business processes.
    - Possibility to search for reports, even for those that the user does not have access.
    This is not covered by SAP, if you wanna provide that, develop it on your own.
    cheers

  • Document Browser Tab is not coming in CV01N,CV02N,CV03N.

    Dear Expert,
                      can anyone guide me for getting Document Browser Tab in CV01N,CV02N,CV03N. i have activated the Browser flage in DCSWITCH(Browser ACL Customizing Switch).
    Regards
    Bhuwan Tiwari

    Hi Bhuwan
    Go to SPRO>DMS>Control Data>Activate Browsers and ACLS.
    Tick the relevant selection.
    When you go to CV01N and press Button Select Document Via ( Ctrl + F7 ) you get new browser .You can togle between two browsers.
    With Regards
    Mangesh Pande
    Edited by: MANGESH PANDE on May 11, 2009 7:57 AM

  • Is it possible to create a folder structure while using archivelink?

    We work with Archivelink and use SAPERION software/server for storing documents. We created a business object Advertisement. In a custom made application, users can open the GOS on Advertisement and now they have the possibility to select an extension out of a big list of document types like AVI, BMP etc. They doubleclick on a type and then they drag and drop a file from their desktop into the screen and then the file will be saved on saperion server.
    As the lists of document classes linked to the business object is quit big (about 15), we would like to add a folder structure. Now it looks like
    Advertisement
    BMP
    TXT
    AVI
    etc.
    and we would like to have
    Advertisement
    Folder Texts
    TXT
    PDF
    Folder Pictures
    JPG
    TIF
    Is this possible and if yes, how can this be achieved?

    Hi Angelique,
    sorry to tell you, but this is the wrong forum to ask application questions...
    KR Lars

Maybe you are looking for