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.

Similar Messages

  • Group and display characteristics in a user friendly way

    Hi all,
    We have a scenario where we have created a DOC type which we assigned to a class with several characteristics.
    The problem is that the characteristics are not disaplayed in a very user friendly way in tab "additinal data".
    Is there any customizing we can do in order to group the characteristics?
    For example:
    -Is it possible to show 3 or 4 characteristics and then have an empty line and then show another 4
    -or Is it possible to customize to create sub tabs?
    Any other ideas that can make it easier for the end users to change/display their characteristics would be helpful!
    Best Regards
    Mikael

    Hi,
    Is there any customizing we can do in order to group the characteristics?
    For example:
    -Is it possible to show 3 or 4 characteristics and then have an empty line and then show another 4
    -or Is it possible to customize to create sub tabs?
    All the configuration data is stored in some tables. So adding some lines as a separator into a database won't be possible since tables have fields which have certain data types which won't match the requirement.
    Hence your requirement cannot be met.
    Hope this answers your query.
    Regards,
    Deepak Kori

  • Load external text in a user friendly way

    Ok this is what i want to do.
    I know how to load external text files in AS3 but I want the user to be able to do it from within my excited swf file. The obvious way to do this is to load the text file  using a string from a dynamic text field (e.g: "myfile/myTextFeild.txt") but i want it to be more user friendly.
    If you click file open in Microsoft word, for example, you get the user friendly open box where you can find the file you want to load by browsing through your hard-drive.
    Can you do something like this is AS3?
    Any feedback would be much appreciated.
    Thanks

    see if you can extrapolate the path from there. FileReferenceList.browse()

  • Handling contraint violations in a user friendly way

    How do you trap constraint violation errors is a user friendly manner ...
    I've seen a number of related posts on the forum but have not yet seen a solution that people are happy with.
    Ideally, Id like to:
    - avoid displaying the 'raw' oracle error to the user
    - display a user-friendly message in an alert box
    - sent the user back to the entry forms with his
    entered data present.
    This requirement seems fundamental to the development of a reasonable application, somebody must have solved it.

    I'm no expert, but here's info from my own experience.
    1. Trap those pk/uk constraint violations in an appropriate exception block. Get this working and test it under all conceivable exceptions.
    2. Write an exception handler, producing the javascript/html/redirects you need.
    Oracle exception handling is pretty mature, but you need to put some effort in to catching everything listed in the package throws declarations.
    If you're working with forms or other components the approach is different, but you weren't terribly specific in your question.

  • User-friendly way to issue chown commands on remote servers

    I'd like my technically unversed users to have, on demand, the benefit of chown commands giving them ownership of certain files being executed on remote servers. I'd like this to be doable without administrators' involvement and with no physical access to the servers by any of the users being entailed.
    By "benefit of chown commands" I mean the results a competent user would get entering the command if he or she were actually doing so. By "technically unversed" I mean specifically that said users aren't and won't ever be trained to ssh into subject servers and issue chown commands themselves directly.
    I should mention that the "Get Info" interface does not in this case avail users of a way to take ownership of particular files because ACEs apply to the files in question. That ACEs apply changes what is presented: instead of any editable fields under Ownership and Permissions, all users see in the "Get Info" interface is a list of whatever ACEs apply.
    Please note that users do, by virtue of ACEs, have "change ownership" permissions for the files in question. Also, authentication to the servers in question under subject users' own logins is possible as necessary.
    What I'd like to start with is getting some idea how complicated this could be for me to do myself as a beginning AppleScripter. I'll describe what I guess would be involved and hope for someone to shed light.
    I'm guessing that something the user at his or her own machine does involving a file he or she has selected would constitute an Apple Event which a process on the client would send to a process on the server. Then I expect the server process would issue the chown command locally respectively of
    1) which file was selected when the Apple Event took place, and
    2) subject user's identity.
    Finally, I expect some feedback might contingently be sent to client process incidentally to need to give user feedback.
    Is this a fair sketch of how this should work? What is a beginner with limited time likely to accomplish attempting this?
    (Find context for this posting here: http://discussions.apple.com/thread.jspa?threadID=831517&tstart=0)
    PowerMac   Mac OS X (10.4.8)  

    First, if I understand you correctly, I'd be using
    Curl and, say, Perl rather than Applescript to get
    this done. In other words, what you wrote in
    Applescript is about all I'd need in that
    language--yes?
    That's correct, give or take any errors in the script. (For obvious reasons I didn't test it.)
    Then, please note that I want to chown, not chmod. Is
    this an issue?
    Nope. (Beyond what you pointed out below.)
    I am looking at Perl documentation and read that "on
    most systems, you are not allowed to change the
    ownership of the file unless you're the superuser..."
    (http://perldoc.perl.org/functions/chown.html).
    However, isn't apache running as root?
    I never thought about that. Wow, this is complicated! Are you really sure you can't make do with chmod instead?
    Anyway, the answer is yes and no. The main Apache process usually runs as root, but executes CGI scripts (and other requests) as another user to avoid inherent insecurity. So unless you do something terribly, terribly insecure, you will not be able to chown from Perl. (And, although I am often lax about security, enabling root access for CGIs strikes even me as dangerous, which means it's a very bad idea.)
    Really what you want is for the CGI, which does not run as root, to hand off to another process which does. I'm not a Unix guru, and would never claim to be, but I think the two following methods might work:
    1. Set up a cron job running as root which looks in a directory once every minute/hour/whatever. The file name should be the user to change the owner to, and it should contain a delimited (in some form; return is possibly safe) list of files. Have the cron job walk through the list of files and use chown, then clobber the contents of the file. (Note that a CGI can use "chmod", which can make sure that the files it creates in the directory are readable by the cron job.) (Also note that you'll want to use flock to avoid race conditions between the cron job and the CGI!) This method would not be instantaneous, since the cron job only runs periodically.
    2. Set up a script which runs as root which takes a line of text in the format:
    user:path/to/file
    and executes chown using that information. Make this process run at startup as root. Have it open a named pipe, with permissions such that CGI script can write to it, and watch for input from that pipe.
    Some general notes:
    A. Whatever you do, make sure that the binary/script/whatever running as root can't be written to by anyone who doesn't have root permissions.
    B. Make sure to check that the user and file actually exist before doing anything with them. (And make sure to do it in the root process, since you have no guarantee that someone won't figure out what's going on and come up with some clever injection scheme to make your root process break security.) (And don't do it by passing a command to the shell; use Perl's chown or some equivalent, so that you'll be somewhat less vulnerable.)
    C. For that matter, don't forget to check and make sure that the path you're about to chown is within the share point, and that the user you're going to chown to makes sense in context, so that nobody can (for example) take over someone else's user directory, or get write permission to /sbin, or something evil like that. (In fact, it might be for the best if you limited the chown operations to files only, just to be sure.)
    Also, I get the part about how a constraint involving
    "do shell script" method argues against using pure
    Applescript in this case. But just for my information
    is Applescript otherwise sufficiently capable?
    If it weren't such matter of getting everything on
    one line, could Applescript send commands between
    hosts, convert local paths to paths on servers, issue
    change ownership commands, and handle authentication?
    Do methods adequate to those purposes exist in
    Applescript?
    Or would using multiple scripting languages be
    entailed anyway? I'm guessing the latter.
    Yes and no. Helpful answer, right?
    First and foremost: AppleScript was originally created as a language to control programs, which would have an extensible grammar through the installation of files called "Scripting Additions". It has since been puffed up via AppleScript Studio to an application-building language in its own right, but the language itself does not have support for a lot of things which, nevertheless, the language can do by controlling another program or by extension.
    AppleScript can send messages between hosts. If the remote host is a Mac, and has "Remote Apple Events" turned on in the "Sharing" control panel, then you can send commands to programs on the remote machine almost exactly as though they were local. (The only differences are in how you specify the application and how you let AppleScript know what the remote application "understands".) This support is built into the language.
    If the remote host is not a Mac, you must control a program which can "translate". When it comes to terminal programs, for security reasons Apple did not include any interactive systems which could be controlled. (Although they did include "expect", I see, which would theoretically allow you to work around this...)
    Since converting a path is really just text processing, yes, AppleScript can do that. I didn't try to build that in because I am under the impression that you know some other language/shell scripting tool better than AppleScript, so it makes better sense for you to put as much of the work into the parts you know, in order to make debugging easier. One method of doing it in AppleScript:
    set x to [a POSIX path found somehow for a file on a connected server]
    if (the offset of "/Volumes/" in x) is 1 then
    -- "the offset of" uses 1-based offsets, not 0 as in most languages
    set x to text 10 through -1 of x
    -- This removes "/Volumes/" from the beginning of x
    set x to text ((the offset of "/" in x) + 1) through -1 of x
    -- That removes up through the next slash, which is the volume name
    set x to "/Path/To/The/Share/Point/On/The/Server/" & x
    else
    error "The path isn't in /Volumes/, so either the server is mounted in a nonstandard way or the path isn't on a remote host at all." number 9000
    end if
    (The other method of which I am aware is to change AppleScript's text item delimiter to "/", convert the path to a list, test whether the first item is "Volumes", then put together items 3 and up into a string again. I have always had a semi-irrational prejudice against using this method because Apple's documentation circa about 1996, from which I learned AppleScript, made it sound like this might be dangerous, but it works.)
    The Finder (which can be scripted) can apparently change ownership and permissions -- a fact which I did not know until just now; I must have missed it last time I looked for it -- and of course "do shell script" can be used to call "chmod" and "chown". The problem with both of these methods, vis-a-vis your particular difficulty, is that your files are not local. You could turn on Remote Apple Events and have the Finder do it, but that's really a security hole. And a potentially maddening one to figure out if anyone starts exploiting it.
    I'd stick with a CGI and the cron/named pipe scheme. No matter what you do you're going to have a little extra security risk, just because chown requires root permissions, but minimizing that risk is probably a good thing.

  • The most performance friendly way to do this ?

    I have a program thats in PROD and I want to make modifications to it.
    The program loads an internal table with a high volume of data and does a bunch of processing on each record. 
    I need to modify the code so that when I do the first Loop and I am processing a rectype 1 record,  I now want to consolidate it with other records eg:  
    ctry rectype    pid  date  time etc ...
    CA    1          2
    CA    1          2
    For every rectype 1 with the same pid, perform checks and consolidate the records into 1. 
    We are processing high volume data.  So I would like to implement the most performance freindly modification.
    What is the best way to do the consolidation?
    So when I get the first rectype 1 within my first loop, I need to go get all the records with the same pid.  Consolidate them and then delete them so I dont pick them up again.
    thx for your input .. J

    If I understand this properly... Big if!
    1) create a duplicate table
    2) sort both tables by PID
    3) delete duplicate PIDs from the main table. This will become your consolidated table
    4) loop through the new "summary" table and loop through the original "details" table and do your consolidation logic. Use the initial binary read to identify the starting point in the table of the PID to be consolidated. This will avoid a full table scan for each summary record. Modify the summary table with the updated data.
    This will be performance "friendly"
    li_summary[] = original_table[].
    li_details[] = li_summary[].
    SORT: li_details BY pid,
          li_summary BY pid.
    DELETE ADJACENT DUPLICATES FROM li_summary COMPARING pid.
    LOOP AT li_summary ASSIGNING <summary>.
      READ TABLE li_details TRANSPORTING NO FIELDS
          WITH KEY pid = <summary>-pid
          BINARY SEARCH.
      IF sy-subrc = 0.
        LOOP AT li_details assinging <same_pid> FROM sy-tabix.
          IF <same_pid>-pid <> <summary>-pid.
            EXIT.
          ENDIF.
    consolidate or whatever you need to do
         <summary>-??? = ?? + ??? etc.
        ENDLOOP.
      ENDIF.
    ENDLOOP.
    original_table[] = li_summary[].

  • Exif date change within iphoto11 -which is the most user friendly editor ?

    Hi I am newbie - prior to addressing this question -I have read numerous posts to try and find a solution to this problem but am still unsure as how to resolve it - I transferred a number of photo''s from PC to Mac when I purchased the Mac earlier this year - the iphoto events do not reflect the folders in chronological date that I had in picasa -  - it seems that iphoto categorize events (even if unnamed) according to exifdata -
    The problem I am faced with is that by way of example - although a folder has been titled December 23 2006( and is reflected as an event) - the date reflected in iphoto is January 1 1980 - December 31 2005 (according to erroneous data transfer / incorrect date on the camera (possibly the default date)---- these dates can be seen in grey to the bottom left of the named event which is December 23 2006(when you run your mouse beneath the event title (or unnamed event)
    I tried to change the date , by adjusting the date within iphoto and doing batch change - the problem is that while I have appeared to change the date - the grey dates (1980-1985) remain - I have tried to research an exif editor that would do this - I found better finder attributes 5 - which I have not yet purchased - According to the website of better finder attributes 5 -it seems that if  photo's are already in iphoto with the incorrect exif date date - then you need to export the photo's you are attempting to correct -then run better finder attributes 5 -change the exif information and then import them back into iphoto with the correct date
    my questions
    1. If  I use  better finder attributes 5 - will the grey date (1980-1985) go away once I import the batch of photos with the correct amended date ?
    2. Is better finder attributes 5 the simpliest and easiest exif editor to use in conjuntion with iphoto ?
    3  Is there any exifdate editor that works within iphoto - once you have photo's in the event section of iphoto with the wrong date ?
    Any advice would be most appreciated
    Thanks

    1. If  I use  better finder attributes 5 - will the grey date (1980-1985) go away once I import the batch of photos with the correct amended date ?
    Possibly, but another thing to try:
    Select all the photos in an Event. Flag Them. Then go 'Create Event from Flagged Photos'
    2. Is better finder attributes 5 the simpliest and easiest exif editor to use in conjuntion with iphoto ?
    No, iPhoto is. And if it involves exporting from iPhoto, running the program and then re-importing that's hardly "in conjunction with iPhoto"
    3  Is there any exifdate editor that works within iphoto - once you have photo's in the event section of iphoto with the wrong date ?
    Apart from iPhoto no. The problem here is simply that the database is not rechecking the dates on the photos as you update them, and then updating the Event dates. Creating a new Event from the same photos should force that correction.
    Regards
    TD

  • User friendly way to let user pick a report?

    I have a table that stores report names, the user that generated the report and report date. What is the best method for displaying a list of available reports and letting the user select one for viewing? Would it be an LOV?
    Darren

    Hai,
    Try Tree View Or List item with List Style as Tlist. Because the user can see more than 1 report name at a time.
    Regards,
    Manu.

  • The most user friendly HD camcorder to use with MacBook Pro/Final Cut?

    I have been researching what type of equipment would be best for filming and editing a professional looking film. I have been reading reviews for HD camcorders as well as video editing software. From everything I've read Final Cut Pro appears to be the best choice for software, but I can't seem to figure out which camcorder will work best with a MAC and Final Cut Pro. I will be starting from scratch so I'll be purchasing a camcorder, computer and software. I also want to make sure that I can take a class to learn to use the software. My total budget will be around $4000.

    Hi,
    You can also try researching and posting on video production type forums.
    www.2-popforums.com/forums
    creativecow.net
    www.dvinfo.net/forum
    I also bought Final Cut Pro 5, a powerbook G4 17", and an (SD) video-camera about 5 years ago for a little project overseas. It worked very well. I used a 500 GB external HD connected by firewire for footage and scratch. I also used the offlineRT setting when importing footage into my project as it used about 1/9th the space as it normally would. When I was finished editing I was able to automatically switch all the low res footage with the original high-res stuff. (I'm not sure if this option is still available for HD footage). I'm now considering starting a small business and upgrading my final cut to the latest final cut studio, my old powerbook for a new loaded macbook pro 17", and a new HD POV-style video-camera.

  • Trying to choose the most "future friendly" video export codec for my produ

    hi,
    I am prepping to deliver the video of a concert film I did to a museum where it will be added to a time capsule. I dont think its the type that has a definite date for re-opening, but it could be 10 yrs.
    The original footage was shot 10 yrs ago on dv camcorders, so its not HD. Uncompressed, the show is about 15gig.
    Keeping it uncompressed keeps it in the highest resolution possible, and I am thinking the safest (most future friendly) way to deliver it is uncompressed, on a solid state hard drive, no motorized parts etc.
    So what is the highest res (size is not an issue) format choice for me to choose in exporting the show?
    I'm using FCP 7.0.3
    Thanks for all advice.
    Duane

    While you are contemplating this, think back 10 years. What were the common storage media(s), playback devices, connection types and so on. How many of these are still available?
    My guess is Firewire will be obsolete, USB may still be around. A solid state storage device (USB stick?) may have a better chance, BUT they are not designed as archival media - that is - they are not designed for anything beyond moving material between machines and short term storage.
    Beyond what is common, there is also the issue of mechanical reliability. Anything with moving parts is a potential problem - as you seem to understand.
    You might do well to consult with a digital archivist. The Getty Museum in LA has published a number of monographs on this subject. Also, I believe MIT has a digital archiving program. You may find something useful there.
    Good luck. Please report back.
    x

  • So annoyed with this new itunes, spent over 2 hrs to get one ringtone on iphone,why apple has to make it so complicated, on samsung just a push of button ringtone or music is on ur phone... i think its time to say good bye to ihpne... Not a user friendly.

    so annoyed with this new itunes, spent over 2 hrs to get one ringtone on iphone,why apple has to make it so complicated, on samsung just a push of button ringtone or music is on ur phone... i think its time to say good bye to iphone... Not a user friendly...
    Highly recommended for samsung galaxy S4....

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

  • Is there a way to browse Event Feeds?

    Is there a way to browse Event Feeds?
    <P>
    Our plans include several new ways of browsing and searching for event feeds
    of interest. These will be made available in subsequent releases.

    Not on the 6G Nano.
    B-rock

  • Multiple Libraries for iTunes

    I am wondering if there is any way to create multiple libraries for my music? I use my iTunes for both work and personal music and would like to be able to move my work music into a separate library. I've seen this concept in accounting programs, where you create new companys in order to store and track separate information. Any suggestions? I am currently using iTunes 5.0

    Cherrie:
    Try iTunes Library Manager. It's not free, but it does work.
    Lita

  • User Exit OR Badi for MK01 transaction (used for saving vendor amster data)

    Hi All,
    I have a requirement where I have to call my workflow, when we create the Vendor using my custom transaction (ZMK01, which is a copy of standard transaction MK01).
    For Workflow triggering I am using FM 'SAP_WAPI_CREATE_EVENT' in the user exit  'EXIT_SAPMF02K_001' but this is only for checking the data on saving Vendor Master.
    So I want to use FM 'SAP_WAPI_CREATE_EVENT' at right place. For that , I need User-Exit or BADI which is used for saving vendor master data.
    Could anyone please help me to find out the user exit or BADI for save event of vendor master data using transaction MK01.
    Looking forward to your advise and thanks in advance.
    Best Regards,
    Mamta

    Hi ,
    I forgot to activiate the project linked with User exit 'EXIT_SAPMF02K_001' .
    so problem is solved now
    Thanks,
    Mamta

  • Users are unable to synchronize document libraries with OneDrive for Business

    Hello,
    We are having an issue with our users attempting to synchronize document libraries with OneDrive for Business. When a user tried to synchronize the document library either via the "SYNC" button on the document library page using IE or by
    manually entering the document libraries path into the OneDrive for Business desktop app they receive the following error
    "We can't connect to the specified SharePoint site". The users have the Edit permission to both the site and the document library. I have performed the following actions in attempt to get the synchronization to work.
    1. Tested giving user the owner permission to the site and document library. same result.
    2. Performed a repair on the users Office 2013 installation.
    An interesting point to note is that I myself am able to synchronize the document libraries using both the "SYNC" button on the document library site and by entering the path manually in the desktop app. Difference between my account and the test
    accounts is that I'm a site collection administrator and farm administrator. Can anyone shed some light onto this issue?

    Hi Corey,
    According to your description, my understanding is that the users cannot sync document libraries with OneDrive for Business.
    I recommend to check the Permission Level to see if the Use Client Integration Features permission is selected.
    If not, check this permission in the corresponding permission level which is granted to the users.
    Please also check if the users have the right permission to sync the document library with OneDrive for Business.
    More reference:
    http://nheylen.wordpress.com/2014/05/15/sync-error-we-cant-connect-to-the-specified-sharepoint-site/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for

  • I did not recieve an email regarding security question at  rescue email address

    i forgot my security question answers and i asked to send me the information on my rescue email . but, i did not receive any emails despite sending it successfully from apple mac book pro ,OS X 10.9.4

  • ALV - selecting the data based on layout set in selection screen

    Hi, I have an ALV report (Custom). I want to give layout selection at selection screen, so the user can create/select/manage layout at the time of selection screen and only these columns will be displayed in the final output. Instead user execute the

  • Recent plug-in update from Apple 3/26/08

    I just updated earlier today with the latest software update that dealt with plug-ins for Logic 8 and other programs. Now I can't record on any audio on any Logic 8 file that contains audio tracks with plug-ins. I get an error message -36. I can stil

  • TOC not updating when project is saved

    The Table of Contents is not saving when project is saved. To see saved changes, I have to close and reopen.

  • Boot TIme question

    Can anyone report on what the approximate boot time should be for a Mac Pro 2.66 with a fresh OS install (no other apps to start up)? My new Mac Pro waits for approximately 50 seconds between the startup 'bong' and the Apple icon appearing (blank gra