Creating Folder Structure in Knowldge managemet

Dear All,
We have installed EP7.0 SP10,
In Content Admin-> KM Content i can see folders like   
~system        
discussiongroups  
documents    
Entry Points            
etc          
grouphome        
Reporting       
rolehome       
room_extensions         
room_publicarea_structures          
room_store_cm           
room_structures        
rooms           
runtime           
Taxonomies     
ume            
userhome         
workflow  
www 
I would like to create my own Folder structure Like
Head Office
|
|
|-- Region1--
|[Sub Folders]
|
|
|-- Region2--
|[Sub Folders]
|
|
|-- Region3--
|[Sub Folders]
|
|
|-- Region4--
|[Sub Folders]
Where can i create these folders, i don't have any external file repsitory, my Database MS SQL.
i would like to know where these folders will bestored in the data base.
Thanks in Advance,
Murali

As you mentioned your directory structure ...there is a folder called "documents" in that you can define your folder structure
Head Office
|-- Region1--
|Sub Folders
|
|-- Region2--
|Sub Folders
|
|-- Region3--
|Sub Folders
|
|-- Region4--
|Sub Folders
and make one KM navigation iview which points to your /document/Head Office
and assign it to users

Similar Messages

  • Creating folder Structure for Query based taxonomy

    Hello friends,
            I am confused as to where do I create a folder hierarchy for taxonomy. Do I need to create a new repository for creating a folder structure. The help.sap.com mentions about using the Category Browser iview for creating the same. I am unable to find this iview in EP6 SP12. Can someone, please guide me as to where do I create a taxonomy folder structure hierarchy?
    Your help is appreciated.
    Thanks,
      G.G

    Hey G.G.,
    Yes, i'd love to.
    So, as stated above, directly below the "Taxonomies" folder you'll see the names of the existing taxonomies. There is no "new" option on this level, because a new taxonomy can only be created under "System Administration" -> "System Configuration" -> "Knowledge Management" -> "Index Administration". After you create a "TREX Search and Classification" or "TREX Classification" index, you can go to the index menu "Taxonomies" and say "New". This will automatically create a new folder under in the "Taxonomies" view.
    Now, if you go one level further, so second subfolder under "Taxonomies" you should have the "New" option. If not, then you'll have to check the permission settings. Please go to "Content Administration" -> "KM Content" -> "Taxonomies" and then on the Menu "Details" -> "Settings" -> "Permissions". You might need to adjust permissions as suggested by SAP in SAPNote (599425):
    Role:"ContentManager"=FULL CONTROL;
    Group:"Everyone"=READ.
    Please check that the already existing subfolders have inherited the permission changes.
    Hope this solves your problem,
    Robert

  • Upload or create folder structure

    Hello,
    I wonder if it is possible to create a folder structure on my
    My Files section. It is not possible to upload a folder and it
    seems not possible to create a folder structure either.
    This is an important function for me for organisation
    reasons.

    I agree. I would also like that feature. When we begin to use
    this program more frequently, we will have a ton of files all over
    the place.
    Thanks

  • 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

  • Creating folder structure(or folder)

    Please help me in creating a folder in adobe live Cycle workbench using DotNet code.

    Workbench is java based.
    If you want to run .Net code, you'll need to make a call (probably SOAP) to a .Net component that will execute your code.
    Jasmin

  • Creating folder structure web service

    hi,
    can any one tell how to create folders using web services from a J2EE application, is their any folder-related functions come with the default wsdl files??

    hi,
    can any one tell how to create folders using web services from a J2EE application, is their any folder-related functions come with the default wsdl files??

  • Error while creating folder: Path is invalid because folder does not exist

    Hi,
    I am having an issue while creating Folders in ID, when I create folder Structure like EDI -> VENDOR -> DELL I am getting the error as below:
    Path /EDI/VENDOR/DELL/ is invalid because folder VENDOR does not exist
    So first 2 levels of folder structure is fine and when I create third level (DELL) I get the above error. Any idea how to resolve this or is this the limitation?
    We have
    Service Pack:06
    Release:NW711_06_REL
    Thanks,
    Laxman

    Hi Laxman,
    Kindly try to refresh the SLD cache by going to Environment -> Clear SLD Data Cache. Make sure that the Cache Status are all in green.
    Hope this would help.
    Regards,
    Jenny

  • 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

  • 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

  • Saving folder structure after having to rebuild iPhoto library?

    After my iPhoto library crashed I recreated it (by creating a "new" iPhoto library) and managed to save all pictures. However, the previously created folder structure is gone. Is there a way to get it back? It looks like it still technically exists in the original library but I can't access it, because iPhoto crashes everytime I try to open that one.
    Thanks!

    Did you try repair the old library?
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Library creating a new duplicate folder structure

    I am using 2.0 on a Mac. Recently I moved all my data files including photos and lightroom catalogs from an external to an internal drive on my MacPro and renamed the new drive with the same name as the external and changed the external name and it became a backup. Lightroom continued to work just fine, seeing all the images with no problem. If I do a "Show in Finder" it shows me them on the internal HD. However, when I import a new image or even import an image or folder that has previously been imported, LR brings it in within a new folder structure that uses the same hard drive name.
    My actual hard drive folder structure for my data drive is something like HardDriveName/Graphics/Airshows/image.jpg with all my images in a Graphics folder and within that a series of folders and subfolders.
    Previously if I imported a new folder, LR would show HardDriveName/NewFolder and I have several folders of imported images with that structure. It did not include the /Graphics folder because I never imported the entire Graphics folder. Now however, after importing a folder, LR created a new folder structure in the Library with a duplicate of the HardDriveName and it included /Graphics.
    I went to the first folder structure and picked a small folder and made a change to an image to darken it a great deal. Then I imported the folder all over again and it imported it to the new folder structure but the dark version was not visible. I DO have automatically write xmp data checked.
    If I right click on any image from either folder structure LR shows me the image within the same hard drive where my original are found.
    I don't want to have two folder structures and apparently if I re-import all my images LR doesn't see the xmp data. I tried to tell RM to read the xmp data from the image I had changed after it came into the new folder but it did not show up. If I manually tell LR to Save Metadata to File for a folder in my original structure and then go to the same folder in the new structure that LR is showing and tell it to read metadata it will show up in the new folder. I have a folder with 32,000+ images and thousands of other images.
    I would like LR to continue to bring images into my "old" folder structure but that may not be possible. Any help?
    Interestingly I have more than one data drive. This problem does not seem to be happening with my other data drive that I also swapped to an internal configuration.
    I put a pic of my folder structure at http://www.pbase.com/santa/image/101246417 to illustrate the issue. My harddrive name shows as Brandon.
    I spoke too soon. LR seems to be creating a new folder structure for two of my three hard drives and adding images properly to one of my three hard drives. All three were new drives with the names changed to match the old drives.

    yes I did update camera raw. I think LR 2.0 asked for that. I did a search on "duplicate" and found no answer to my problem. Anyone with a link to any useful information?

  • 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.

  • I moved all my photos to my external drive. I then deleted my iphoto library and re-imported them from the external. Once iphoto created it's folder structure on my external, I deleted mine. Now my computer just "beach balls" all day when I turn it on.

    i have a 2006 iMac with a 160 HD and 1GB of ram. I recently got a 2TB external hard drive and transfered all my pictures to that. Once I had a solid folder structure for my photos, I dragged them all to iPhoto. Once iPhoto had created its own folder structure of my photos, I deleted my own folder structure, so that I wouldn't have multiple copies. It all sounded like a great plan, but now my computer just "beach balls" every time I turn it on.

    What does this have to do with iPhoto? If you're computer isn't starting up properly I'd be posting on the OS forum for whatever version of the OS you have.
    Regards
    TD

  • 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

  • Create an image / map of folder structure in Finder

    Hi there,
    I am reorganizing some data that I want to make available for others later on. In order to facilitate the transition for them it would be extremly helpful if I could create a map of the folder structure. I am thinking of something like a mindmap which shows a folder and then each subfolder underneath it. It doesn't need to show the actual files within those folders.
    Is there any way to have something like that created automatically? Or maybe some software (freeware would be best of course).
    Thanks a lot,
    Sebastian

    Duplicate post: http://forums.adobe.com/thread/1338701?tstart=0

Maybe you are looking for

  • Stock report Bin location wise

    Dear expert, i want "stock report Bin location wise" in crystal report, anybody can provide sql query. thanks

  • Unable to access the AdfLibraryJar bindings

    Hi All,a I am using Jdeveloper 11.1.14.0, I have ADF Application and if i run this application it is running fine with out giving any errors. For this application i have created AdfLibraryJar and placed in the local file system. I have Webcenter appl

  • Error in we19.

    hi all! i am getting error 51. with following error msg. "Error in subroutine read_namtb for structure of infotype." see this message also. Check the entry for infotype  in table T777D (structure, IDoc segment, expanded structure) and the correspondi

  • Reading Memory Dump for 8.1

    Can someone help me read a memory dump resulting from Event ID 1001 The computer has rebooted from a bugcheck

  • Need to export Iphoto library from iPhone4, synced Macbook hard drive failure. Now only medium is windows based. Please help!!!

    Hello all, I had my iPhone 4 synced to a Macbook and was using iTunes and iPhoto for my media. Well the hard drive in my Macbook crashed and now all of my Photos and Music are only on my iPhone. How can i extract the iPhoto library/albums from the ph