Hide automatic created folder from role upload

Hi,
when I make a role upload to the portal, a top folder with the same name as the role is automatically created. Is it possible to disable this feature or hide the folder afterwards?
I have created my own folder structure in the portal, which defines the first two levels of navigation, and then made a delta link from this structure to the uploaded role. The content of the uploaded role is automatically put in a folder on third level instead of directly under the second level folder. This way the user has to click first on the role and then on the folder to get to the content. This is not very user friendly.
Hope someone can help.
Regards Morten

Have you tried changing the 'Entry Point'  property within the uploaded roles ?
When you do a role upload, you have the chance to automatically create the roles as worksets (rather than portal roles).  Have you tried doing this?  I think you get fewer levels (from memory)
Also,  is your composite (backend) role design already in place and finished?  It is worth trying to consider the portal when doing the backend composite role design in order to prevent issues like this.
Award points if this helps

Similar Messages

  • Create folder from role maintenance

    Hi,
    How can I create a folder with the name of my choice from role maintenance? I see the Role Menu from the Menu tab, but I don't see the paper icon to create a folder.
    Thanks

    I think I don't have authorizations. I only see the + sign that says 'Authorization default'  and then the vanilla folder 'Role menu'.
    I just want to create a folder to put queries to the browser for the users to get to instead going through the RRMX.
    Is there another way to do this?
    Thanks.

  • My Mozilla Firefox Browser v15.0 open then some file loading and my desktop display automatically created folder name is old Firefox data then ask me chose two

    ''duplicate of https://support.mozilla.org/en-US/questions/936244 - locking this one''
    '''My Mozilla Firefox Browser v15.0 open then some file loading and my desktop display automatically created folder name is old Firefox data then ask me chose two option 1st is Safe Mode or 2nd is Restore so i chose Restore and then open Mozilla Firefox Browser page Blank Black display page,
    How can i do solve this error plz plz plz plz help me out what you say troubleshooting,error or issue.'''

    Did you perform a Firefox Reset either by clicking the button on the Help > Troubleshooting Information page or via the Safe mode start window?
    You may have gotten the Safe Mode start window as the result of not being able to start Firefox more than once after crashes.
    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter
    If you can't open Firefox then see:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Location_of_crash_reports
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Viewing_crash_reports
    "Reset" creates a new default profile with a time stamp appended to identify it and tries to recover settings like bookmarks and history and passwords and cookies and auto-fill data from the old profile, but you lose data like extensions and other customizations.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Firefox 15+ versions will move the old profile folder to an "Old Firefox Data-##" folder on the Desktop that gets a number appended if you use reset more than once, so you can no longer use the profile manager to revert to the old profile.

  • When deleting a user created folder from On My Mac in Mac Mail the sent messages that are part of conversations that reside there are not deleted, only the received mail gets deleted.

    When deleting a user created folder from On My Mac in Mac Mail the sent messages that are part of conversations that reside there are not deleted, only the received mail gets deleted. Any way for both the received and sent mail that resides there to be deleted?
    I create a lot of project folders where i keep all my conversations regarding the project. Once the project is finished i would like to just delete the folder and get rid of all the emails associated with it but when i delete the folder i've noticed that only received messages are deleted. Now I am stuck trying to sort through my sent folder for messages that were returned there after the conversations was supposedly deleted.

    Mail/Preferences/Viewing - un-check include related messages, delete the folder, then go back and reset yo include.

  • Automatically create POs from all approved requisitions

    I want to be able to automatically create purchase orders from all approved iProc requisitions (but wont have contract or blanket POs to use)
    I can get the suggested buyer added into the iProc shopping cart but want to know best route. Most people seem to have to hack the work flows so that the POs get created.
    I thought about using standard interface table to create the POs but believe that link to the requisitions wont be made (problem with reporting and encumberances)
    Would be interested in recommendations as to the best way to do this
    Thanks

    Do you buy the same items from those 9000 suppliers over and over?
    Do you want to automatically create PO or you want it to be submitted for approval as well?
    You may want to consider setting up the automatic sourcing. This way, the ASL and sourcing rules are automatically created when you create the first blanket.
    http://www.oracleug.com/user-guide/purchasing-overview/overview-automatic-sourcing
    Sandeep Gandhi

  • Automator: Create folder from suffix of filename and put file names with same suffix into folder

    I've been using a script to use automator to create a folder from the filename and put that file into it the folder just created.
    I have a bunch of files that have similar names to them, but I don't want every file to be put into its own folder, instead I want all files with the same suffix (001) to go into the same folder.  I would also like the folder name to just be named the same as the suffix (001) instead of the full file name.
    For example all of these files names that end with the same integer (001) should be dumped into the same folder named "001":
    Boston_ProRes422_1920x1080_24p_Audio_001
    Boston_ProRes422_3840x2160_24p_Audio_001
    Boston_ProRes422_3840x2160_24p_RAW_Audio_001
    Boston_ProRes422_1920x1080_24p_Audio_002
    Boston_ProRes422_1920x1080_24p_Audio_005
    Boston_ProRes422_1920x1080_24p_Audio_010
    Any help at all would be incredible!!
    Thanks!
    Here's the script I'm using right now:
    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
      set {theContainer, theName, theExtension} to (getTheNames from anItem)
      try
      set destination to (makeNewFolder for theName at theContainer)
      tell application "Finder"
      move anItem to destination
      set the end of the output to the result as alias -- success
      end tell
      on error errorMessage -- duplicate name, permissions, etc
      log errorMessage
      # handle errors if desired - just skip for now
      end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
      set theContainer to the path of the container
      set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
      set theName to text 1 thru -((count theExtension) + 2) of theName -- just the name part
      set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
      return (theParent & theChild) as alias
      on error errorMessage -- no folder
      log errorMessage
      tell application "Finder" to make new folder at theParent with properties {name:theChild}
      return the result as alias
      end try
    end makeNewFolder

    Thanks Neil for the response! That script didn't work, but I did get it to work with my old script by changing "set TheName to" numbers different.  Here's my final script which creates folders named "001", "002", and so forth and dumps in the files that end in that same suffix in the matching folder.
    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
      set {theContainer, theName, theExtension} to (getTheNames from anItem)
      try
      set destination to (makeNewFolder for theName at theContainer)
      tell application "Finder"
      move anItem to destination
      set the end of the output to the result as alias -- success
      end tell
      on error errorMessage -- duplicate name, permissions, etc
      log errorMessage
      # handle errors if desired - just skip for now
      end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
      set theContainer to the path of the container
      set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
      set theName to text -5 thru -((count theExtension) + 4) of theName -- just the name part
      set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
      return (theParent & theChild) as alias
      on error errorMessage -- no folder
      log errorMessage
      tell application "Finder" to make new folder at theParent with properties {name:theChild}
      return the result as alias
      end try
    end makeNewFolder

  • How can I import photos of a created folder from my iPad to iPhoto?

    I have created a folder on my iPad in order to make a preselection of my photos. But now it doesn't seem to be possible to import just the pictures of the created folder. Is it possible or not?

    With the iPad's camera connection kit you may be able to copy photos from a flash drive, but a lot of flash drives require more power than the iPad supplies to the kit - the kit also has an SD card reader.
    You need to create a DCIM directory off the root of the flash drive or SD card, with the photos underneath it, and the photo filenames need to be exactly 8 characters long (no spaces) plus the file extension i.e. in a similar format as if a camera had created/written them.
    Or you could sync photos from your computer's iTunes : http://support.apple.com/kb/HT4236
    Or there are third-party photo management apps that allow you to transfer photos to/from your computer via your wifi network e.g. Photo Manager Pro.

  • Automatically create WBS from Contract Position

    I need to automatically create a WBS Element when a Contract Position is created and write the WBS number back in the Contract Position. Has anyone done this and if so how. Is this best done by an Position Output to an iDoc so there is a monitoring system for failures in place? Thanks for any ideas.
    Edited by: peter betts on Aug 4, 2011 1:29 PM

    Do you buy the same items from those 9000 suppliers over and over?
    Do you want to automatically create PO or you want it to be submitted for approval as well?
    You may want to consider setting up the automatic sourcing. This way, the ASL and sourcing rules are automatically created when you create the first blanket.
    http://www.oracleug.com/user-guide/purchasing-overview/overview-automatic-sourcing
    Sandeep Gandhi

  • Automator: Create folder from filename

    I am trying to use Automator to query a file in a foldr, then create a folder based off of the filename, then move the file into the newly created folder. I am not as savvy as I thought that I was when it comes to Automator. Even thinking that Automator might not be the correct tool for the job. Each file has a different name or this would be a lot easier. Any help would be greatly appreciated.

    You can use a Run AppleScript action to do the work, and feed items to it by using a service workflow, an Ask for Finder Items action, etc - for example:
    1) Service receives selected files or folders in Finder
    2) Get Folder Contents
    3) Run AppleScript
    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
        set {theContainer, theName, theExtension} to (getTheNames from anItem)
        try
          set destination to (makeNewFolder for theName at theContainer)
          tell application "Finder"
            move anItem to destination
            set the end of the output to the result as alias -- success
          end tell
        on error errorMessage -- duplicate name, permissions, etc
          log errorMessage
          # handle errors if desired - just skip for now
        end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
        set theContainer to the path of the container
        set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
        set theName to text 1 thru -((count theExtension) + 2) of theName -- just the name part
        set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
        return (theParent & theChild) as alias
      on error errorMessage -- no folder
        log errorMessage
        tell application "Finder" to make new folder at theParent with properties {name:theChild}
        return the result as alias
      end try
    end makeNewFolder
    4) other actions as desired

  • Does Oracle ever automatically create internal adhoc roles for sending notifications? If yes, then when?

    Hi All,
    I am aware that the Oracle workflow directory service creates a role whenever a new user / responsibility is created and that workflow notifications can be sent to these users through their respective roles.
    Also, for external parties such as suppliers or customers who do not have an account in the E-Business Suite, adhoc roles can be created in order to enable them to receive notifications.
    While going though the workflow status of POAPPRV worlflow, i noticed that in one of the 'E-mail PDF PO to Supplier' notification, the recipent was some ADHOC<<some_random_number>>PO.
    Can anyone please shed some light on this?
    Thanks,
    Kabir

    Hi,
    Thanks for your posting.
    This development mode can exclude some errors, such as the file upload complete at the same time... from my experience, this is a good choice to achieve the goal.
    Best Regards,
    Jambor  
    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.
    Click
    HERE to participate the survey.

  • Service (consulting) contract in sd,automatic create SO from interface

    Hi
    I need to create a service contract like consulting (UOM is Hour) in sd and the do pricing whihc include surcharge,commision,discount.
    2. How to create sales order automatically when we receive the file for third party interface.
    Please let me know
    thanks in advance
    sunny

    Hi,
    It seems you are not maintaining HR.(Times sheets-Hours and Travel expenses ).You need to take help from ABAP consultant.
    In case of SD - configure for Contract- Order(Billing request)- Invoice cycle.Maintain Consulting hours as  material in material master data and Pricing procedure with discount,surcharge and commission as different condition types.Assign it to appropriate Sales document.
    You need to  use BDC or EDI functionality with help of ABAP for incoming data from third party to create sales order.
    Thanks,
    Vrajesh

  • Automatically create playlists from all albums

    Is there a way to do this so that I can use list view and play one album at a time? I've looked on the list and searched on the web.
    I know you can make album play lists easily, but only one at a time, by hand. I mean to simply get all them in one move.
    I know that the grid view gives you the equivalent, but the grid view consumes so much memory that it turns the computer into an expensive CD player. The cost of looking at all those little pictures runs to about 200 megs of memory for me, and that creates a difficulty for me. (Strange as it seems, I work on this machine, too.)
    In list view, iTunes does a great job, keeping memory use within 50 megs -- no problems there.
    When I moved my music from one file server to another, I lost my playlists. I had the xml file that other programs can use, but not apparently not iTunes to re-create playlists. Now I face the trouble of rebuilding them hand. It would be trivial to rewrite that xml file to change all the file paths, but I did not see a way importing the entire collection of playlists.
    It would seem to me that internally the iTunes database maintains an album by album list of songs (to show you in the grid view). One more step would loop through these and create playlists that show up in list view, eh?
    My favorite music player is Linux-only -- Rhythmbox -- which just gives automatically artist and album playlists, and keeps within 60 megs of memory. I tried the new Mozilla offering, Songbird, which is only in beta and has its own rough spots, but it, too, automatically gives you artist and album playlists. I don't know about the Windows players.
    tia,
    Barry

    Why don't you use the Browser, you can filter your list view right down to a single album using it. Go to View>Show Browser to make it visible. Alternatively press the Command (⌘) and B keys together.

  • Hide Page or IView from Role dynamically

    Hi guru,
    I've a role with added some page.
    For wich users, I would like to hide the Entry point of page/iview at run-time.
    Is it possible?
    Thanks,
    Antonello

    Hi,
    Are you using Homepage Framework to maintain the role.
    If so, you can dynamically maintain the services to be shown/not.
    Please follow the below link......
    Create Dynamic XSS Homepages with Static Services Using a Simple Proxy Class
    I tried it and worked out as expected.
    Hope this helps.
    Cheers-
    Pramod

  • [SOLVED] Hide drives & bind folder from nautilus

    I have trying to hide some of my drives from nautilus side-bar for long time after i moved to arch.
    i had been following the post 124445 but /etc/udev/rules.d is not working for me!
    I'm using
    # Window Manager: Compiz
    # Desktop Environment: Xfce
    # File Browser: Nautilus
    EDITED:
    Binded Folder problem detail in post #9
    Last edited by rhoit (2013-02-04 19:42:41)

    '/etc/udev/rules.d/10-hide-drives.rules' solved my problem! BUT still few more
    # Problem 1
    Some weird problem Occured NOW Music drive still seems to be shown when i open file browser ( nautilus ) and it remains there.
    but if i open
    $ nautilus /
    before opening my home folder then its not shown!
    # Problem 2
    It seems that the binded folder seems to have the problem! and it add the device icons!
    i have used fstab to mount it with option auto,x-systemd.automount
    Weird Problem /dev/sda8 ==> /home/rho/Music
    Binded folder   /media/Dump/downloads ==> /home/rho/Downloads
    here is my fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # System
    UUID="f12d8af7-5482-4a05-b40f-816d3f574236" / ext4 rw,relatime,data=ordered 0 1
    UUID="8119c92f-2fc5-4016-8925-bb5bed013be6" /boot ext4 rw,relatime,data=ordered 0 2
    UUID="bbb2e2a0-63b8-4896-b7f4-f77884e791c0" /var ext4 rw,relatime,data=ordered 0 2
    UUID="c08ea485-32b2-4e14-a589-c335592c7a9b" /home ext4 rw,relatime,data=ordered 0 3
    UUID="125620a5-a6c4-41cb-9bb5-1fe28c0f84ab" none swap defaults 0 0
    # Custom
    UUID="e96e950a-b733-495e-9d22-32843e6dea22" /mnt/Core ext4 noauto,x-systemd.automount 0 3
    UUID="bccecaef-d098-4b67-9cd3-fce05ed3d363" /mnt/elib ext4 noauto,x-systemd.automount 0 3
    UUID="e1b574dc-062e-4be6-ba12-9aae8ef6c9c2" /home/rho/Music ext4 noauto,x-systemd.automount 0 3
    UUID="9f204245-5c6a-45cb-8138-5025218ad3c8" /media/Dump ext4 x-systemd.automount 0 3
    ### Bindings
    /media/Dump/downloads /home/rho/Downloads none bind 0 0
    none /sys/kernel/debug debugfs defaults 0 0
    Last edited by rhoit (2013-01-18 09:59:24)

  • Why can't I create folder from save dialog?

    The paradigm we've been taught is that the save dialog lets you name a file and select a folder, but if you want access to the full browser you click the triangle to expand it. With the latest version of Numbers, that functionality is gone.
    I have a pricing spreadsheet I use, I did a save-as to create a copy for another client. I tried to rename it and was told another file existed in the folder by that name (true.) I tried to select a different folder, but the folder didn't exist yet. Normally, I'd just go to my projects folder and create it. But no. Apparently I have to pick "Other..." and only then do I get the real dialog. It seems perfectly reasonable that we'd want to be able to create a folder while saving. Why make it so difficult?

    I wonder if this helps…
    http://mjtsai.com/blog/2014/10/26/yosemite-uploads-unsaved-documents-and-recent- addresses-to-icloud/
    It's the 'defaults' setting to disable iCloud drive saving by default - you can still use it, but the save dialog should revert to the old style. Scroll down for the info.

Maybe you are looking for

  • LR4 won't install.  Error message

    I just bought LR4 and it won't install.  Error message reads: Operation could not be completed. (com.apple.installer.pagecontroller error-1.) Couldn't open "Adobe Photoshop Lightroom 4.pkg". My operating system is: Mac OS X Version 10.5.8 Please advi

  • Adobe - no warning or error on mispelled CSS properties

    Hi, After spending quite a bit of time on a CSS error, I finally found the error.  I mispelled the word chromeColor as chomeColor in my CSS style sheet..   The compiler gives no error or warning on mispelled CSS properties -- e.g. add a style called

  • Need info for lost back cover to my 9800

    i lost my back cover on my 9800 and need to find a replacement. how and where do i find one.

  • Hide saplogonpad  7.20 edit button

    Hi, In the old saplogonpad (6.20/7.10) the buttons on the right hand side where hidden. This was very useful in our company because we have an alternative / controlled method for users to manage their saplogon.ini. In the new 7.20 the edit button is

  • Import Bridge collections into Lightroom

    I have a number of collections in Bridge CS6 and I want to move these into Lightroom 5/CC. Is there any way to import them or do I have to manually recreate them? many thanks Nick