A scalable, user-friendly file structure?

Hello,
I've been researching this topic for a while and i think i am missing something obvious and making this harder than it should be. Our org currently has a very large SHARED folder structure which is deep and organized mainly by department. Users know the
structure and accept it. However we are now running into disk space limitations within the structure as a whole because certain users using specific directories are storing lots of data. I would like to point certain folders WITHIN the folder structure to
new shares on different storage (reparse points?) so the disk limit is lifted BUT users maintain the same data layout. Most people say, "Just use DFS-N" but i don't this will work AND be scalable for a change at a later time when a new directory
gets large and needs moved to new storage. Does anyone have any insight into user SHARED area design (these are word, excel, pdf, etc. type files).
THX> Eric

Hi Eric,
You could create a DFS namespace and connect it to the new storage of the large folders. If the new storage gets large, you only need to copy the folders to another storage and set the namespace connected to the storage.
A simply way is to create a shortcut of the larger folders in your folder structure, type the shared folder’s UNC path. Then the shortcut point to the new storage.
Regards,
Mandy
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • File Structure with iTunes on an External Drive

    This is an image of the file structure on my external drive that holds all of my iTunes music:
    Is this correct, or should I have set it up differently? I am asking since it is differnet the the iTunes file structure on my MacBook Pro and some files will get uploaded to my external drive and others will go onto my MBP,s iTunes Music folder. All of my iPhone/iPad apps, Album Artwork, Mobile Applications. I have Book folders on both drives and the both have books on them.
    I should say that I had a major problem a few years ago, which has nothing to do with the above problem, with one of the iTunes updates which disconnected most of my songs from their respective files. I tried a solution a friend sugested, which really messed up the files and now many of the files have different info inside the song files, i.e., Otis Redding as the Artist on a Radiohead track. Or another groups cover for a Beatles album. I have a large library and have gone through slowly and fixed many things, but it is still quite messy and a huge bummer.. As a proud new owner of a Late 2011 MacBook Pro, I would love to be able to have a solution for this as well.
    TIA

    Well I just went through the same thing. I had a Lacie Porsche mobile drive at 80GB and changed to a Lacie Rugged 250. I keep all my music on external never local. Not a fan of loading my laptop. Anyways.... I was getting those same errors. I had copied all the itunes library contents from the Porsche drive to the Rugged drive. It took quite some time to transfer so you knew it was working. Then changed in the preferences of iTunes to save in the Rugged drive. If you trashed or deleted any files from the new drive and just put them in the trash without emptying you get that 501 trashes path. I found I had multiple duplicates of songs with the name of the song followed by a 1.mp4a. I think the library.xml file is the key to a clean transfer of music. I think this file is stored locally in your user folder and then it's used to direct to the alternate drive but from what I've read it's the file with all the playlist information and stuff on it. If you find it and move it over to the mobile drive then hold option and boot up itunes then tell it to look for that file on the new mobile I think you'll have no worries. I'm actually gonna try this myself.
    You don't want to know how it got it working. I physically opened every music file on the rugged drive to make sure the were all where they were supposed to be. All 70'gb's of music. Never doing that again.

  • File structures report shows many suspect files: A problem?

    Hi friends.
    As a part of the MacUpdate springbundle I got the TechTool pro 5. I ran it to check if everything was running as intended, but when it got to the "File structures" job, it found more than 2000 "suspect files" with errors like: "File corrupted - may not load properly", "XML parser couldn't parse file" and "XML file has unbalanced brackets".
    What I'm basically asking of you is the following: is this an issue? Should I be worries, and if so, how would I go about fixing it? As I said, it has over 2000 suspect files, with the vast majority as "File corrupted". To be quite honest, such a huge number of issues makes me quite unsettled.
    Thanks for your help

    William Boyd, Jr. wrote:
    Does Disk Utility report any problems?
    I made the disk utility verify macintosh HD (if that was what you were asking me to), and it says everything looks to be okay.
    I'm not going to list all the files it says are corrupted, for 2004 obvious reasons
    The first file's path is: /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.2 .sdk/System/Library/PrivateFrameworks/WebCore.framework/emoji-E21C.png
    With the error: "File corrupted-may not load properly"
    Another one is:
    /Users/Me/Library/Application Support/Adobe/Dreamweaver CS4/en_US/Configuration/Menus/Cache/Accelerators/DWTableContext.xml
    With the error: "XML file has unbalanced brackets"
    To take an example from the third error-type:
    /Applications/Adobe Dreamweaver CS4/configuration/Menus/Adaptive Sets/fr-ca.xml
    Error: "XML parser couldn't parse file"
    Looking at this myself, it looks to me like something is wrong with the iPhone simulator and dreamweaver.. Would it make sense for me to reinstall the programs?
    Thanks

  • Reading from a file. How to ask the user for file name at run time????

    I have the code to read from a file but my problem is how to prompt the user for the file name at run time.
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.util.InputMismatchException;
    import java.util.Scanner;
    public class FileRead {
        public static void main(String args[]) {
            Scanner scan = null;
            File file = new File("Results.txt");
            String number;
            try {
                scan = new Scanner(file);
                while (scan.hasNext()){
                number = scan.next();
                System.out.println(number);}
            catch (FileNotFoundException ex1){
                System.out.println("No such file");
            catch (IllegalStateException ex2){
                System.out.println("Did you close the read by mistake");
            catch (InputMismatchException ex){
                System.out.println("File structure incorrect");
            finally{
                scan.close();}
    }Any hints would be greatly appreciated. Thank you in advance

    I have read through some of the tutorials that you have directed me too and they are very useful, thank you. however there are still a few things that i am not clear about. I am using net beans 5.0 I have placed a text file named Results.txt into the project at the root so the program can view it.
    When I use the code that you provided me with, does it matter where the file is, or will it look through everywhere on the hard drive to find a match?
    This code compiles but at run time it comes up with this error
    run-single:
    java.lang.NoClassDefFoundError: NamedFile
    Exception in thread "main"
    Java Result: 1
    BUILD SUCCESSFUL (total time: 3 seconds)
    import java.util.Scanner;
    import java.io.*;
    class NamedFileInput
      public static void main (String[] args) throws IOException
        int num, square;   
        // this Scanner is used to read what the user enters
        Scanner user = new Scanner( System.in );
        String  fileName;
        System.out.print("File Name: ");
        fileName = user.nextLine().trim();
        File file = new File( fileName );     // create a File object
        // this Scanner is used to read from the file
        Scanner scan = new Scanner( file );     
        while( scan.hasNextInt() )   // is there more data to process?
          num = scan.nextInt();
          square = num * num ;     
          System.out.println("The square of " + num + " is " + square);
    }his is the code that i used. It is the same as the code you posted for me (on chapter 23 I/O using Scanner and PrintStream) Sorry im just really stuck on this!!

  • Configuring Oracle Application Server to use a user friendly url

    Hi All,
    I am having trouble configuring the apache httpd.conf file within an applicaton server to be able to use user-friendly urls for the infrastructure identity management tools server. I also need this for security reasons as well as hardware reasons - loadbalancing.
    At the moment I have a standard setup, whereby the sso application server is using port 7777. I would like the user not to enter the port, but to enter just a standard url, like http://login.<company>.com.au, so that if the user needs to modify oid using the oiddas web application, they can enter something like http://login.<company>.com.au/oiddas/ rather than http://<machine host name>:7777/oiddas/. This would also be used by portal for sso logins.
    From the standard installation, Apache was configured as follows:
    Port 7777
    Listen 7777
    ServerName <machine host name>
    DocumentRoot <root document folder>
    Now reading the documentation from the Oracle Application Server Installation notes for the Http Server, they document how to do this (in the loadbalancer section - this will eventually be used in the hardware setup):
    Port 80
    Listen 7777
    Listen 80
    # Virtual Hosts
    # This section is mandatory for URLs that are generated by
    # the PL/SQL packages of the Oracle Portal and various other components
    # These entries dictate that the server should listen on port
    # 7777, but will assert that it is using port 80, so that
    # self-referential URLs generated specify www.oracle.com:80
    # This will create URLs that are valid for the browser since
    # the browser does not directly see the host server.oracle.com.
    NameVirtualHost <machine ip>:7777
    <VirtualHost <nameofmachine>:7777>
    ServerName login.<company>.com.au
    Port 80
    </VirtualHost>
    # Since the previous virtual host entry will cause all links
    # generated by the Oracle Portal to use port 80, the server.company.com
    # server needs to listen on 80 as well since the Parallel Page
    # Engine will make connection requests to Port 80 to request the
    # portlets.
    NameVirtualHost <machine ip>:80
    <VirtualHost <nameofmachine>:80>
    ServerName login.<company>.com.au
    Port 80
    <VirtualHost>
    Note that I used slightly different names for the url's rather than the oracle names www.oracle.com and server.oracle.com
    Now after applying this, I noticed not only could I not go to the oiddas from the original machine name, but also couldnt go there from the new machine name.
    Also I was not even able to go to the standard index page whereby you can go to the enterprise manager for the application server, from either names.
    The following urls provide me with "The Page Cannot Be Displayed" error message:
    http://login.<company>.com.au:7777/
    http://<nameofmachine>:7777/
    The following urls provide me with "Page Under Construction" error message:
    http://login.<company>.com.au/
    http://<nameofmachine>/
    Could someone please tell me why this is the case, considering I am using the installation procedures Oracle has published within the Oracle Http Server Admistrators Guide (http://download-west.oracle.com/docs/cd/B14099_19/web.1012/b14007/netconf.htm#sthref379).
    Cheers
    Rodney

    Hi Rondey,
    Ik think that I can see your probleem.
    Just change the following line at your httpd.conf, then restart the component.
    First of all if the port is installed with nr. 7777. then the listen process will be on port 7778
    the second thing is just try to do the following steps
    ((Port 80 to Port 7777)))
    Listen 7778
    %%%% In loadbalancer section %%%%%%
    just add the following lines
    Listen 80
    Listen 8103
    Listen 8102
    NameVirtualHost *
    NameVirtualHost *:8103 or 80
    If you want to use this ports (8103 or 8102) for other site (url), then
    <VirtualHost *:80>
    ServerName <machine ip> or (host name)
    Hear from U,
    Regards,
    Hamdy

  • Need help understanding Time Capsule file structure and how to get it back

    I have the original Time Capsule on which I backup both my Mac Pro and my wife’s Macbook. When Snow Leopard came out, I successfully used the ‘Restore from Time Machine’ feature on my Mac Pro so I know it has worked. However, my wife’s MacBook harddrive died the other day and I was trying to do the ‘Restore from Time Machine’ and all it would find was a backup from April (when I put her in a new larger drive). Time Machine would not find any backup files newer that April. She stated that she had seen the the Time Machine backup notices regularly and as recent as the day the haddrive died (Nov. 23) so I figured that I should have no problem. Here is what I have found in my trouble shooting and what leads to my questions below.
    This is the file structure I found: (note that our ID’s are ‘Denise’ and ‘John’)
    *Time Capsule* (the drive as listed in my Finder window sidebar under ‘shared’)
    >Folder called ‘Time Capsule’ (when logged in as either ‘Denise’ or ‘John’)
    >>Denise Sparsebundle
    >>>Backup of Denise’s iBook (mounted image)
    >>>>Folder called ‘Backups.backupdb’
    >>>>>Folder called ‘Denise’s iBook
    >>>>>>Single folder with old April backup (not the right files)
    >>John Sparsebundle
    >>>Backup of John’s Mac Pro (mounted image)
    >>>>Folder called ‘Backups.backupdb’
    >>>>>Folder called ‘John’s Mac Pro’
    >>>>>>Folders containing all my backup files
    >Folder Called ‘Denise’ (if logged as ‘Denise’)
    >>Denise’s Sparsebundle (a disk image)
    >>>Backup of Denise iBook (the mounted image. Name from old machine)
    >>>>Backups.Backupdb
    >>>>>Denise’s iBook (Contains the backup I need)
    >Folder Called ‘John’ (if logged in as ‘John’)
    >> (empty)
    For some reason, my wife’s backup files are stored within a folder located at the top level of the Time Capsule drive called ‘Denise’, however, mine are within a folder called ‘Time Capsule’ which is at the same level as the ‘Denise’ folder.
    For some reason, when trying to use Time Machine to recover, it bypasses the top level ‘Denise’ folder which contains the correct files and goes into the ‘Time Capsule’ folder and finds the outdated backup files.
    I would assume that both my backup files and my wife’s should be at the same level of the Time Capsule.
    I was eventually able to use Migration Assistant to recover the files after installing a fresh OS and mounting the correct Sparsebundle image.
    So, my question, how do I get this fixed so that if I have to recover a drive with Time Capsule, it will find the correct files.
    Sorry for the long post and thanks in advance for any help.

    John Ormsby wrote:
    What I was trying to determine is why different backups for one particular machine are located at different file structure levels on my Time Capsule and why the most resent one for that machine is at a different level that for my other machine. Also, what is the correct level that both machines backups should be at.
    well John, first can you clarify if you are on 10.4.8 as your profile suggests ? if so, i'm wondering how you can use TM at all because TM was introduced with Leo. if you're not on 10.4.8, please update your profile. if you could, please also indicate details of your machine such as available RAM, processor, etc.
    second, what OS is your wife's machine running ?
    third, i frankly don't know too much about TM's file structure or if there indeed is such a thing as the correct one. however, i do know that it is best to leave TM to do its thing (as long as it's working). FWIW, though off-topic, you may want to have a look at this read for further information.
    last but not least, i see TM backups to my TC only as a part of my backup strategy. the backbone of my strategy is to create bootable clone of my startup disk(s) using e.g. Carbon Copy Cloner on a regular basis. while TM is capable of doing a full system restore, i don't trust it as much as a working clone. i use TM to retrieve a file i accidentally trashed a week ago but you cannot boot from a TM backup if your startup disk goes belly up.
    If I have missed this information in either the FAQs or the Troubleshooting article, I would greatly appreciate being pointed to it .
    i expect you didn't miss anything and i'm sorry you didn't find any help there. perhaps if Pondini (author of the FAQ and troubleshooting user tips) reads this thread, you will get the necessary advice on the file structure and more besides.
    good luck to you !

  • AVCHD File Structure From MAC to PC

    Hello,
    I know this is sort of off topic but I need the expertise of this forum....
    I am the videographer (mac user) for a speaking group and have to film speeches 5-7 minutes in length each week. The problem is how to get the videos to each person without processing on my Mac and uploading to youtube so they can see them.
    I am Using a Canon HF10 and wonder if I could pop out the memory card from the camera put it in a card reader attached to a person's PC and transfer the files that way. I know that I would copy the entire file structure to their computer. I assume the PC person would have to have something that could work with the AVCHD files but I don't know what is on a PC computer these days. The other dilemma is that the speakers HAVE ABSOLUTELY NO COMPUTER skills.
    Anyone have any ideas how to get the video to a viewable state without going through FCE.
    thanks,
    Al

    I agree with Martin and might add that I was in a similar project late last year with several folks who certainly weren't as computer savvy as myself, and YouTube turned out to be the solution. That way I didn't have to deal with the perennial "I couldn't open it" comments you WILL receive. Everyone was able to view YouTube.
    You might try uploading to Vimeo - I think you can actually upload .MTS files directly to their site, if you want to just post your raw footage. You could just get the files in the Finder directly from the file structure on the HF10, copy them to your Mac and upload from there. (I haven't tried this, but Vimeo's site says they accept .MTS files, which is what the HF10 videos will be, in the "STREAM" subfolder)
    The downside is that their free account maxes out at 500MB of uploads per week. That may be enough for you but I don't know. If you pay, the limit is quite a bit higher.

  • IPhoto Library file structure

    I have consolidated a large number of photos into rolls with meaningful names (e.g. NOT Roll 108 etc.,) and when the roll is empty in iPhoto the title disappears. However, if I try to use othr applications to access the originals, all the old, empty rolls are still shown in the file structure. Can I safely delete these in Finder or will it affect iPhoto? I just want to tidy up the file tree for when I'm using something other than iPhoto for manipulating my photos.

    BreizhRonB
    an I safely delete these in Finder or will it affect iPhoto?
    It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss. Given that iPhoto is not removing them automatically may be because there are pics in the trash that belong to these Rolls (solution: empty the iPhoto trash). However, it might also be due to HD issues.
    However, if I try to use othr applications to access the originals,
    This is also not recommended. What other apps are you using? Photo editors? You can set any image editor as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in the editor, and when you save it it's sent back to iPhoto automatically.
    or
    There are three ways (at least) to get files from the iPhoto Window.
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Also, many applications use the the media browser. However, the key information is that Users and/or other Applications should not attempt to access the iPhoto Library Folder.
    Regards
    TD
    Message was edited by: Terence Devlin

  • Export Masters To Organized File Structure

    Hello Everyone,
    I'm new to Aperture 3, in the past my photo library and folder structure has been a mish mosh of imports ranging from iPhoto to Picassa. The original photo structure of all my photos is a real mess. Of course, when I download Aperture 3, I jumped right in and imported all my photos (as referenced) then went about organizing them in Aperture.
    I have looked around and not found the answer to this, but what I would like to do is take my Aperture Organized file structure and Export all the masters to a different location in the same organized File structure. Basically I want my "New" Master file structure to match my Aperture organized folder/project structure and store the referenced files on a share. Currently they are on my MBP with limited disk space.
    I have played around with the export versions, but export Masters is grayed our when I select my entire "Projects and Albums". Any help would be much appreciated. I'm just trying to get better organized with my original Master jpeg folder structure.
    Thank you,
    Steve

    scSaxon1 wrote:
    Hello Everyone,
    ... what I would like to do is take my Aperture Organized file structure and Export all the masters to a different location _in the same organized File structure_ . Basically I want my "New" Master file structure to match my Aperture organized folder/project structure .... {Emphasis added}
    (Added) First -- and this is important -- you must understand the difference between exporting an image (which creates a new file) and +relocating your Masters+ which moves your Masters to another drive location and tells Aperture where they are.
    What you want to do -- quoted above -- can't be automatically (and thus usefully) done ... and (imho and apparently the Aperture design team's HO as well) there is no need.
    Stepping into Aperture's world is bit like stepping off the solid pier onto a boat. You feel afloat. You worry about sinking. The boat won't sink.
    Aperture is based on image-management. Until Aperture and like programs matured, photographers relied on +file managers+ and, basically, advanced file browsers.
    Leave that behind. +There is no utility in having a one-to-one correspondence between your images and your digital negative files+. You literally can no not do this and use Aperture: Versions are images created on-the-fly, based on text files. They don't perdure as image format files (yes, I have been waiting a long time to use "perdure" in a sentence). Aperture lets the user manage their images (in tremendously plastic ways) and (except for backup) ignore file management completely.
    I've touched on this in a few other responses in the forum. I'll try to find links. IME, the only file-management need I have is being able to find a file without Aperture. I keep all my Masters in their own directory (no one's captures but mine). I stick to a good file-naming convention. My computer sorts these tens of thousands of images by date in less than a second. I have never not been able to find a file almost immediately (as long as I know what I'm looking for).
    If I don't know what I'm looking for -- I'll never find it using a file browser. That's what I use Aperture for.
    I realize my presumption in assuming that your needs parallel mine. If they don't, specify exactly what functionality you are looking to maintain. Aperture may not be able to do it. My hunch, however, is that you are trying to stay moored to the world of file browsing. Push off -- there's good sailing out here.
    Some additional thoughts and suggestions are [in this thread|http://discussions.apple.com/message.jspa?messageID=13294441#13294441]. And [here's a thread|http://discussions.apple.com/thread.jspa?messageID=13115722&#13115722] with even more.
    Message was edited by: Kirby Krieger

  • How to read the properties file available in Server File structure in webdy

    hi all,
    I have developed one webdynpro application. In this application i need to access mdm server to continue. For getting the connection i need to pass the IP addresses.
    Can i have code  how to read the properties file which is residing in the server file. with out included along with the application. keeping some where in the file structure in the server. I want to read that properties file by  maintain the iP addresses and users in  properties file based on the key i want to read like below.
    servername="abcServer"
    username="john"
    password="test123"
    Please send me the code how to read this properties file from the file structure and how to read this values by key  in webdynpro application
    Regards
    Vijay

    Hi Vijay,
    You can try this piece of code too:
    Properties props = new Properties();
    //try retrieve data from file
    //catch exception in case properties file does not exist
    try {
             props.load(new FileInputStream("c:\property\Test.properties")); //File location
             String serverName = props.getProperty("servername"); //Similarly, you can access the other properties
             if(serverName==null)
               //....do appropriate handling
         }     catch(IOException e)
                   e.printStackTrace();
    Regards,
    Alka.

  • Import Manager Usage : Approaches for developing Import file structure and text validations

    Hi Experts,
    We are having 50+ import maps. We have provided option to users to drop the files for data import. Currently Import Manager(7.1 Sp08) does not have capability of pre-import validation of file data such as
    a. file structure - number of columns specific to import map
    b. file text validations - special characters, empty lines, empty cells
    c. Uniqueness of the records in the file
    For this, we are planning to build temporary folder(port specific) in which user drops in the file. We use the custom development to do above mentioned validations and then move the files to actual import ports.
    Please let us know if you have worked on similar requirements and how you have fulfilled such requirements.
    Regards,
    Ganga

    Hi Ganga,
    Assuming you have a well defined xsd and are getting valid xmls from source in the Inbound Port of MDM. Also,you have a Primary key in form of External ID (say).
    So just by making and defining a XSD you get most of what you want in your questions a and b.
    Now if you wish to use PI to drop files in the inbound port then you can build all the validations in PI itself and you would not need Staging table.
    Otherwise,you can have another table (preferably Main table) in the same repository or other dummy repository where records are created on import based on External ID.
    Here you can launch an MDM workflow on import of these records and run assignments to replace unwanted characters and Validations to give error for rejecting some records based on the data quality level desired.Once unwanted characters are removed and data is validated it can be syndicated using a syndication step in the Workflow.So records which fail are not sent and which pass are sent to a outbound port.
    From the outbound port PI or some other job can pick the file from this outbound folder and drop to Inbound folder of the same repository which imports to the required Primary Main table.Here again you have the option to leverage validations in PI and further check if data is fine.
    Once this activity is done you can delete the records from the staging table.
    Thanks,
    Ravi

  • How to Create Hierarchy From Flat file Structure

    Hi Gurus,
    There is a scenario for me regarding the Hierarchy.
    Required Hierarchy structure - Region>Director>Manager-->Sales id
    I have flat file which gives the info like user id , sales id , manager id, director id.
    But the transaction data Flat file has structure with sales id, region id, sales amt, sales qty.
    Note : Region id is another Master Data.
    How i can create hierarchy from the first flat file which doesnot have region info in that but it is available in the transaction data Flat file.
    Is there anyway we can create hierarchy based on the first Flat file structure which contains more that 1,00,000 records.
    Try to Suggest me in this regard .
    This is urgent.
    Regards,
    Mano

    Hi Mano,
                    Defining the source system from which to load data
    Choose the source system tree File  ® Create.
           2.      Defining the InfoSource for which you want to load data
    Optional: choose InfoSource Tree ® Root (InfoSources) ® Create Application Components.
    Choose InfoSource Tree ® Your Application Component ® Other Functions  ® Create InfoSource 3.x ® Direct Update.
    Choose an InfoObject from the proposal list, and specify a name and a description.
           3.      Assigning the source system to the InfoSource
    Choose InfoSource Tree ® Your Application Component ® Your InfoSource ® Assign Source System. The transfer structure maintenance screen appears.
    The system automatically generates DataSources for the three different data types to which you can load data.
    &#9675;       Attributes
    &#9675;       Texts
    &#9675;       Hierarchies (if the InfoObject has access to hierarchies)
    The system automatically generates the transfer structure, the transfer rules, and the communication structure (for attributes and texts).
           4.      Maintaining the transfer structure / transfer rules
    Select the DataSource for uploading hierarchies.
    IDoc transfer method: The system automatically generates a proposal for the DataSource and the transfer structure. This consists of an entry for the InfoObject for which hierarchies are loaded. With this transfer method, the structure is converted to the structure of the PSA during loading, which affects performance.
    PSA transfer method: The transfer methods and the communication structure are also generated here.
           5.      Maintaining the hierarchy
    Choose Hierarchy Maintenance, and specify a technical name and a description of the hierarchy
    Hope this helps
    Regards
    Karthik
    Assign points if Helpful

  • Photo file structure

    I am awaiting the release of 10.10.3 and the new Photo application. I have been researching and believe that the new Photo will allow the user to manage photos in a normal file structure, folder and sub-folders. Can anyone confirm that for me? TIA

    I have been researching and believe that the new Photo will allow the user to manage photos in a normal file structure, folder and sub-folders.
    By "normal" do you mean accessible via the Finder? If so, iPhoto has that capability now, and yes, Photos has it too. But I would strongly caution against using it as, like iPhoto, it's more work for exactly no benefit and the app lacks basic tools for managing it. This
    https://discussions.apple.com/docs/DOC-6361
    was written about iPhoto, but the situation is substantially the same with Photos.

  • Most user friendly way to browse document libraries for saving documents

    We are trying to figure out the most user friendly way to save office documents to different site collection document libraries.  The locations appear fine when we click "save as" for recent folders.  We can even click browse and use
    the up arrow for getting closer to the root path of the site.  This works fine, but there is not an easy way navigate to a different site collection.  Sure, I can copy/paste the web address in the file path, but I think that is asking too much for
    basic end users.  Is there a different approach I am not aware of?
    Thanks,

    How about Link a library to the Windows Favorites Folder, the use favorite to save document.
    https://www.youtube.com/watch?v=VJeRX-h7Hjw
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Zip a tree like file structure in memory

    Hi all guys...
    How can I create a tree like file structure in memory (without using the disk at all) and than zip it send it out as an http servlet response?
    I think its easier if I break it down to 2 separated problems: file structure in memory and zipping those bytes.
    thanks

    You can use a ByteArrayOutputStream but it will scale very very badly. What will happen if you get 100 concurrent users all wanting to allocate memory for the Zip file?

Maybe you are looking for

  • Use comments with several opened pdf documents?

    I love Acrobat! I currently have Acrobat 9.0, version 9.5.5. I have noticed sadly that the properties bar for comments becomes disabled when 2 or more pdf documents are opened. I have to save the editing, close all pdf documents, and re-open desired

  • At line-selection event in alv

    Hi all...... I am creating an interractive alv. Now waht I want is, I want to display the details of  only that particular field(ROW) as secondary out-put list, which i had dbl-clicked in the primary out-put list. Like if I had dbl clicked on a pirti

  • SSH Tunelling to bypass blocked ports

    Hi. I'm living in a boarding school where they block the online "gaming" part of PSN. I can connect to a network and sign into PSN just fine. However, when I click "test internet connection" when it is determining my NAT type, it gives me error NW-31

  • Can apps bought for Macbook Pro also be put on the iPad?

    Can apps bought for Macbook Pro also be put on the iPad? I bought the app "pages"  for my mac book pro and would like to put it on my ipad as well.

  • Help with scenario (records status update)

    Hi all, i need to load data from a R/3 Z table to BW. Records on this table can change its status or be deleted. When a record change status or is deleted it needs to be reflected on BW. The R/3 table has 12 millions of record so is not good to delet