Restrict create new style option?

Hello,
Is there a way I can restrict users creating new style names in the "customize" -> "style" tab?
In my case, users can create new name for my styles, but can't change them. I don't them to create new names. These new names make the style dropdown goes longer. Any ideas?
Thanks,
-Dong Chen

Go to the Builder Page > Administer tab.
Use the "Portal User Profile" or "Portal Group Profile" portlets to edit the specific user, or group of users, and then go to the Privileges tab of the portlet.
Here you will see the privileges and Style is one of them ... change to "View" . I think "authenticated users" group gets create privilege on styles by default.
Hope this helps,
Candace

Similar Messages

  • How to remove 'Create new employee' option for a scenario in org modelling?

    Hi Luke,
    We want to remove 'create new employee' option that appears under 'actions' in details panel for a position in scenario (for org chart).
    I checked in linkconfiguration folder for position, but it doesn't show this option to be disabled. I also checked detailspresentationconfiguration folder but no luck. I am assuming, it must be pretty different to achieve this for a scenario object.
    Please help!
    Thanks,
    Prashant

    Hi Prashant,
    I'm not entirely sure this can be changed. It doesn't appear to be controlled through configuration or XSL. My guess is it is hard-coded.
    Sorry I can't be of more help.
    Best regards,
    Luke

  • Creating new Styles for a Blog connection

    Hi -
    I've just started using Contribute CS4 to make a Wordpress blog (hosted by Wordpress for now).
    I'd like to be able to create some new CSS or inline styles and reuse them appropriately throughout the blog's various entries, pages, etc, but I don't have an option to create a new Style anywhere that I can find.
    Looking through help files and forums, I've seen multiple references to setting up user permissions properly (I'm Admin on my own machine), but these all seem to link through Edit -> Administer Websites (which is blank for me, I'm not creating a website). Under Blog connections I've enabled all the tick boxes for Styles, and made sure "Don't allow..." isn't selected.
    Does anyone know how I get to add new styles please?
    Thanks in advance,
    -inedria.

    You might consider looking/asking in the LabVIEW for LEGO Mindstorms Forum (look down on the list of Forums) -- I, for one, had no idea what EV3 was!
    BS

  • Create New folder options is not coming in OBIEE 11G.

    Hello Everyone,
    I am testing Authorization part of the dashboard rite-now and issue is like I am not able to Create any New Folder within My Folder for Catalog.
    I gave my self Read, Traverse Access to dashboard and Reports that are stored in Shared Folder, now I want to use Shared folder's Reports and want to create My Dashboard. but even I am not able to Create My Dashboard too because I can't save any reports in My Folder.
    I checked with Manage Privileges      options too, where I gave access to any Authenticated Users to create Personal Storage (My Folders and My Dashboard) , Create Folders , Save Customizations ..
    if there any other change that i need to do???
    Thanking you..

    Hi Veer,
    Yes, I just tested this thing out in 11.1.1.5. Please find more details below.
    1. I create a sample 'BIConsumer' user.
    2. Logged into the BI Server.
    3. Navigated to Catalog and clicked on New
    4. I could get only two options 'Report Job' and 'Action Intelligence'.
    To provide proper privileges,
    1. Logged into BI Server as BIAdministrator.
    2. Navigated to Administration -> Manage Privileges -> Catalog/
    3. Given explicit permissions to 'BIConsumer' to create folders and 'My folders and Dashboard'.
    To verify,
    1. Logged back to BI Server as 'BIConsumer' user.
    2. Now, in the catalog could see 'New Folder' option under 'My folders'
    For further analysis, can you please check which roles this particular user is having? You can click on username at the top right corner -> My Account->Roles and Catalog Groups.
    Thank you,
    Dhar

  • Paragraph styles dialogue is empty. I'm unable to load or create new styles and have them show up.

    I've used paragraph styles in Indesign CS4 since 2009 and yesterday (6-10-14) I noticed the paragraph styles dialogue was empty. I figured somehow I must have accidentally deleted or cleared them. I then proceeded to attempt loading them from another document. After "Loading Paragraph Styles..." via the drop-down in the upper right corner of the dialogue box nothing showed up.
    I then proceeded to create a new style it to never appeared in the list—it remains empty.
    Any ideas?

    Delete InDesign’s preferences.
    Troubleshooting 101: Replace, or "trash" your InDesign preferences

  • Configuring oracle management server 9i using create new repository option

    hi ,
    i am trying to install oracle management server using the the option "create new repository "on a system on which oracle database is already installed .after installing oracle management server "configuration assistant appears .the second option is to select a database repository .
    first of all can i select the database that was prevouisly installed on my system
    or do i need to create a new database before installing oracle management server. but as i did not install any database for oracle management server before i am trying to select the database that was previuosly installed on the system but i gave me a tns error that it could not resolve the service name .after that i noticed that the oms listerner was up and registered . i am trying to stop this listener and start the database listerner so that it may not give me this error.can some one help me out configuring oracle management server on a system creating a new repository

    I suggest you to create a different database for the OMS repository. This database can be used for other tools that may require a repository, such as recovery manager.
    On the connectivity issue, I suggest you to verify your listener is up and running and it doesn't need to have the instance registered, as of course, it is a new instance. Make sure it is started. For additional troubleshooting on the connectivity issue, you may post the specific tns-12XXX error message displayed.
    ~ Madrid.

  • In oracle forms how to restrict creating new record

    I have a multi record block, I dont want to create new record. If I use the down key after the last record control is moving to next record. I dont want this to happen. I want to scroll between first and last record.
    Can anyone tell me ?

    Look up the Forms Help for 'system.last_record'.
    I'd code the KEY-DOWN trigger on the block as...
    IF :System.Last_Record = 'TRUE' THEN
    Bell;
    Message('You are on the last row');
    ELSE
    down;
    END IF;
    This avoids any processing or validation work being done on leaving the current record or creating the new record.

  • Disabling JFileChooser's rename and create new folder options

    Thanx in advance.
    Can anybody guide me as to how to disable the following in JFileChooser :
    1. tool bar buttons where the user can create a new folder.
    2. Renaming a file
    regards,
    Vikas

    Ok, ok, here's the code. Again, don't use if you don't absolutely have to.
    Use at your own risk. This is just an example. No guarantees given. Etc, etc.
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.plaf.basic.*;
    public class ReadOnlyFileChooser extends JFileChooser {
        BasicFileChooserUI ui;
        public ReadOnlyFileChooser(String path) {
         super(path);
         if (System.getProperty("java.version").startsWith("1.4") &&
             getUI() instanceof BasicFileChooserUI) {
             ui = (BasicFileChooserUI)getUI();
             // Disable "New Folder" button
             ui.getNewFolderAction().setEnabled(false);
             addPropertyChangeListener(new PropertyChangeListener() {
              public void propertyChange(PropertyChangeEvent ev) {
                  if (ev.getPropertyName() == JFileChooser.DIRECTORY_CHANGED_PROPERTY) {
                   SwingUtilities.invokeLater(new Runnable() {
                       public void run() {
                        ui.getNewFolderAction().setEnabled(false);
             String className = ui.getClass().getName();
             if (className.equals("javax.swing.plaf.metal.MetalFileChooserUI") ||
              className.equals("com.sun.java.swing.plaf.windows.WindowsFileChooserUI")) {
              // Disable editing (file renaming) in JList
              JList list = (JList)findByClass(this, JList.class);
              MouseListener[] listeners = list.getMouseListeners();
              for (int i = 0; i < listeners.length; i++) {
                  className = listeners.getClass().getName();
              if (className.endsWith("FileChooserUI$SingleClickListener")) {
                   list.removeMouseListener(listeners[i]);
                   break;
              // Disable editing (file renaming) in JTable
              JToggleButton detailsViewButton = findDetailsViewButton(this);
              detailsViewButton.addActionListener(new ActionListener() {
              boolean done = false;
              public void actionPerformed(ActionEvent ev) {
                   if (!done && ((JToggleButton)ev.getSource()).isSelected()) {
                   SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                        JTable table =
                             (JTable)findByClass(ReadOnlyFileChooser.this,
                                       JTable.class);
                        if (table != null) {
                             TableColumn column =
                             table.getColumnModel().getColumn(0);
                             column.setCellEditor(null);
                   done = true;
    private static Component findByClass(Component comp, Class cls) {
         if (cls.isInstance(comp)) {
         return comp;
         } else if (comp instanceof Container) {
         Component[] comps = ((Container)comp).getComponents();
         for (int i = 0; i < comps.length; i++) {
              Component c = findByClass(comps[i], cls);
              if (c != null) {
              return c;
         return null;
    private static JToggleButton findDetailsViewButton(Component comp) {
         Icon detailsViewIcon = UIManager.getIcon("FileChooser.detailsViewIcon");
         if (comp instanceof JToggleButton &&
         ((JToggleButton)comp).getIcon() == detailsViewIcon) {
         return (JToggleButton)comp;
         } else if (comp instanceof Container) {
         Component[] comps = ((Container)comp).getComponents();
         for (int i = 0; i < comps.length; i++) {
              JToggleButton button = findDetailsViewButton(comps[i]);
              if (button != null) {
              return button;
         return null;
    public static void main(String[] args) {
         new ReadOnlyFileChooser(null).showOpenDialog(null);
         System.exit(0);

  • Create New Folder Option

    Sorry for a simple question. Can't seem to find the answer in "search."
    When I create a new folder, it always defaults to the root directory and I must drag and drop it to the directory I want it in, essentially creating a sub directory. I imagine I'm missing something here and should be able to create a new folder in any directory/sub directory I need, correct?
    Thanks in advance!

    Open a finder window, select: view > customize toolbar, a sub window with a
    set of buttons appears. Point to each button to see an explanation of what it does. You can do any of the following:
    Add a button: Drag it to the toolbar.
    #add the new folder button to the toolbar, now you may create a new folder at will in whatever
    folder you are viewing at the time.#
    Add space between buttons: Drag Separator, Space, or Flexible Space to the toolbar.
    Return to default toolbar: Drag the default set to the toolbar.
    After making modifications click "Done"
    Kj

  • Most options in itunes "create new version" greyed

    itunes only gives me the option to create an apple lossless  version when i select a song in my playlists or general music section to create a new version.
    This doesn't make sense as most of my music was uploaded using applelossless.  The average song size  is 35 mb for a 5 min. song. This doesnt seem to me to be a compressed song/file.
    The other options "create ipod or iiphone version" and create ipad/tv version are greyed out.  Why?
    I do need the create iphone version .  How to do this and what happened to create MP3 version as an option here?
    thanks

    LIkewise, I have a mac mini belonging to a client and I told him to compress ( "create a new version" of his video library) he said all items greyed out. I collected it Friday , sure enough all  his m4v with drm and his mp4 ( without DRM) will not allow him access to create a new version. I dragged one his films into my account. Authorised the account and it plays etc, the create new version option is there for my whole library bar this film. I am tempted to strip out the DRM but I dont know if it will resolve. I would love to hear from Apple !!!!! or someone older/ younger but wiser what may be the issue.
    Regards
    PC

  • Unable to create new entry in table that has no primary key

    Hi
       I have a table which is required to have no primary key (except mandt). After i generate table maintanance, when I go to create new entries, the table control to enter the new values does not appear. When I click on edit->new entries, it goes back to the fields tab of the table. Same when i check through SM30.
    If i maintain atleast one primary key, I am able to get the table control in new entries screen. However the requirement permits no primary keys except mandt. How can this be resolved?
    Thanks
    NM

    Hi,
    THE PROBLEM WITH UR TABLE IS
    YOU HAD DECLARED MANDT AS THE PRIMARY KEY AND THERE IS NO OTHER KEY IN UR TABLE
    iT'S NOT ALLOWING YOU TO ADD NEW ENTRIES BECAUSE MANDT IS THE ONLY PRIMARY KEY IN YOUR TABLE AND IT WILL HAVE A DEFAULT VALUE BASED ON THE CLIENT. SO  IT'S NOT SHOWING YOU THE CREATE NEW ENTRIES OPTION.
    SO TRY TO PUT ONE MORE FIELD AS THE PRIMARY KEY SO THAT YOUR PROBLEM WILL SOLVE VERY EASILY  ALSO MAKE SURE THAT TABLE IS ACTIVATED.
    REVERT IF U NEED SOME MORE HELP
    Thanks &Regards.
    Pavan.

  • Why can't I "Create New Version" of my songs to mp3?

    Why can't I use the "Create New Version" option to change my AAC songs to mp3?  When I click the button, nothing happens.

    What have you tried?
    -> http://support.apple.com/kb/ht1550

  • Lost Designer "new connection" option after fix pack install

    Post Author: INE
    CA Forum: Authentication
    Hi ! everyone,
    I'm new in BOXIR2 and need all the help anyone can give me.
    The problem is ; after updating to the lasted Service Pack and correspondent Fix ( SP3 ; FP3.3 ), the Designer "create new connection option" doesn't work.
    Is there a solution besides removing the updates?
    Thanks in advance .

    Post Author: TAZ
    CA Forum: Authentication
    Sounds like the install of the patch either failed partially or you ran into a bug. Open a case with support (deployment team) and see if they can reproduce. I tested on FP 3.4 and it works fine.
    Regards,
    Tim

  • Removing create new request in SE09

    Hi,
    Is there any way to remove create new request option in SE09 Tcode.
    Thanks in advance.
    Regards,
    Raja
    Edited by: raja nomula on Apr 21, 2008 12:42 PM

    Hi,
    Transport request are used to move objects across SAP systems with ease. Incase if you delete a request in development server it will just delete the request number and not the object locked in that request.
    When you need to send them again we can create a new transport request and add objects to it. As you said the TP number will change but it will not have any impact.
    More info here:
    http://help.sap.com/saphelp_46c/helpdata/es/3b/dfba3692dc635ce10000009b38f839/frameset.htm
    http://www.planetsap.com/cts.htm
    Regards
    Kiran Sure

  • How to create a new style sheet in RH11?

    Could someone plz let me know how to create a new style sheet in RH 11? THe online help here:
    http://help.adobe.com/en_US/robohelp/robohtml/WS38E03F49-65B5-4564-8DF3-EEA1DE8C6B59.html
    ...says to find the icon of the pad and pencil:
    in the View > Toolbars > Formatting menu. But it's not there. IN addition, the options in the formatting toolbar only become clickable if the cursor is in the text of some topic. I think the directions must be pointing me to the wrong place.
    Thanks!

    Hi there
    The help is saying to click View > Toolbars > Formatting (in case the toolbar has been turned off)
    Perhaps the image below will better assist in locating the icon.
    Cheers... Rick

Maybe you are looking for

  • Samsung Smart TV Remote and Standby Mode

    Hi All - A few months ago I got a Samsung Smart TV that came with a pretty nice remote. It really can control almost all aspects of the FiOS service, but there are a few commands I cannot figure out how to get it to send to the FiOS STB.  First off,

  • Does anyone know how I can edit a site created by another user on my imac?

    Hi, We are a family new to our imac. One of us created a site with iweb. Now I want to get to the site and edit it? I don't see the site when I start iweb...Can someone provide an answer and any recommendations on how to set up multiple sites so that

  • How to make modal page to be auto size regarding content in the page?

    Hi, guys: I created a modal page (Dan Mcghan's modal page plugin from skillbuilder web site), which pops up when user clicks the master table to see drill down data. However, some rows in the modal page have too many characters, and modal page cannot

  • RUEI for Mobile?

    Hello, I am looking for an analytics tool for our native iOS and Android mobile applications. I am wondering if RUEI has support or is planning on adding support for native mobile applications. Thanks, Ana Chang Oracle Social Network

  • Cannot print from photoshop CC 2014

    Cannot print from Photoshop CC 2014