Tab Layout

Hi,
Is there a way where the Application Administrator can set a Tab Layout administratively within some admin screen for all users instead of each user going to My Setup and changing the layout in Personal Layout? We do not want to show the Opportunities, Leads Tabs to all our users as we are using OnDemand as a Service apps.
Thanks,
Sriram

Hi Lucy,
No, not exactly....
If you move a new tab to "Available Tabs" within the User Role, the user will be able to see it to add to their personal tab layout. If you move the new tab to "Selected Tabs", the tab will appear as the last tab in the user's personal tab layout, regardless of where you positioned it in the tab order.
If the user doesn't modify their tab layout again and you remove access to the new tab within the User Role, it will be removed from the user's personal tab layout. If the user has modified their tab layout since the new tab was added, removing it from the User Role will not remove it from the user's personal tab layout.
I would recommend you test this functionality for yourself to gain a better understanding within your own environment.
Regards,
Cameron

Similar Messages

  • PDF Portfolio Navigator with horizontal tab layout

    Hello, Experts
             I am trying to create a PDF Portfolios with horizontal tab layout structure;
             several .NET libraries allowed me to create PDF files with thumbnail layout, but, in order to populate a horizontal tab
             layout, it seems, I would need to create a custom PDF navigator and import it into PDF Portfolio prior to inserting PDF file components ?
            preinstalled navigators look great, but I just need a simple horizontal tab view, where each tab only contains file's name and nothing else;
             buy clicking on each tab - corresponding file would be activated in the viewer
           is there any library of predesigned navigators that I can use ?
            is there any way to extract navigator from one and import it into another PDF portfolio ?
           would I need to use Flash or can this be done via .NET ?
    Best Regards,
    -Alex

    tried to install Portfolio SDK
    can't see the Navigator project wizard in Flex Builder  (  4.6 )
    The plugins have been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins
    The NavigatorSupport folder has been extracted to:
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse and ( just in case ) to
    C:\Program Files\Adobe\Adobe Flash Builder 4.6\

  • How to increase the height of a tabbed layout

    How to increase the height of a tabbed layout? I do have a form inside a panelTabbed layout which is not fitting inside.Is there any css class available ?
    Thanks
    Suneesh

    Hi,
    +"My panel tabbed layout is inside a detailStamp facet of a table"+
    you can set the StretchChildren property on the ShowDetailItem components to make the panel tab to resize the contained children. I set the inline style on a paneltab and the result shows in the rendered output
    Frank

  • Change/ Add screen in Group Box specify tab layout for Asset master Record

    Hi All,
    I need to add or change group box in specify tab layout for Asset Master Record. Please advice where i can change or create new Group Box.
    Thanks & Regards,
    Pankaj

    Hi,
    Try at below path:
    Financial Accounting (New)>>Asset Accounting>>Master Data>>Screen Layout>>Define Screen Layout for Asset Master Data.
    here you can change the layout for the same.
    Kind Regards,
    Mehul

  • How to find number of subtabs in the in the sub tab layout

    Hi,
    I have a sub tab layout region.In that, i am hiding some some sub tabs based on some condition.I want to know how many visible sub tabs that a sub tab layout presently have in all of my sub tab controllers.Please Help me in this.
    Thanks
    Satya

    Satya,
    OASubTabLayoutBean subTabLayout = (OASubTabLayoutBean)webBean.findChildRecursive("SubTabLayoutRN");
    if(subTabLayout!=null)
          System.out.println("Child :"+subTabLayout.getIndexedChildCount());
    }Regards,
    Gyan

  • Problem with scroll tab layout in JtabbedPane

    Pls. if anyone know this, help me
    I have a problem, my scroll tab layout policy does not working when I set it to UI.
    import javax.swing.*;
    import javax.swing.plaf.basic.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.plaf.*;
    public class Components_Area extends JFrame{
         JTabbedPane tab = new JTabbedPane(JTabbedPane.TOP,JTabbedPane.SCROLL_TAB_LAYOUT);
         JLabel l[] = new JLabel[5];
        public Components_Area() {
              tab.setUI(new TestPlaf());
              tab.addTab("Untitled",l[0]);
              tab.addTab("Untitled",l[1]);
              tab.addTab("Untitled",l[2]);
              tab.addTab("Untitled",l[3]);
              tab.addTab("Untitled",l[4]);
              getContentPane().add(tab);
        public static void main(String args []) {
             Components_Area frame = new Components_Area();
             frame.setSize(200,200);
             frame.show();
         static class TestPlaf extends BasicTabbedPaneUI {
              protected LayoutManager createLayoutManager() {
                   return new TestPlafLayout();
              protected Insets getTabInsets(int tabPlacement,int tabIndex) {               
                   Insets defaultInsets = (Insets)super.getTabInsets(tabPlacement,tabIndex).clone();
                   defaultInsets.right += 50;
                   defaultInsets.top += 2;                
                   return defaultInsets;
              class TestPlafLayout extends TabbedPaneLayout {
                   //a list of our close buttons
                   java.util.ArrayList closeButtons = new java.util.ArrayList();
                   public void layoutContainer(Container parent) {
                        super.layoutContainer(parent);
                        //ensure that there are at least as many close buttons as tabs
                        while(tabPane.getTabCount() > closeButtons.size()) {
                             closeButtons.add(new CloseButton(closeButtons.size()));
                        tabPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
                        Rectangle rect = new Rectangle();
                        int i;
                        for(i = 0; i < tabPane.getTabCount();i++) {
                             rect = getTabBounds(i,rect);
                             JButton closeButton = (JButton)closeButtons.get(i);
                             //shift the close button 3 down from the top of the pane and 20 to the left
                             closeButton.setLocation(rect.x+rect.width-20,rect.y+4);
                             closeButton.setSize(15,15);
                             tabPane.add(closeButton);
                        for(;i < closeButtons.size();i++) {
                             //remove any extra close buttons
                             tabPane.remove((JButton)closeButtons.get(i));
                   // implement UIResource so that when we add this button to the 
                   // tabbedpane, it doesn't try to make a tab for it!
                   class CloseButton extends JButton implements javax.swing.plaf.UIResource {
                        public CloseButton(int index) {
                             super(new CloseButtonAction(index));
                             setBorder( BorderFactory.createEmptyBorder() );
                        setToolTipText("Close this tab");
                             //remove the typical padding for the button
                             setMargin(new Insets(0,0,0,0));
                        addMouseListener(new MouseAdapter() {
                                  public void mouseEntered(MouseEvent e) {                           
                                   setBorder( BorderFactory.createLineBorder(Color.black, 1 ));
                                 public void mouseExited(MouseEvent e) {                                
                                      setBorder( BorderFactory.createEmptyBorder() );
                   class CloseButtonAction extends AbstractAction {
                        int index;
                        public CloseButtonAction(int index)     {
                             super("x");
                             this.index = index;
                        public void actionPerformed(ActionEvent e) {
                             tabPane.remove(index);
    }     Message was edited by:
    henyo

    If someone knows this, help me!

  • Dynamic Tabs Layout

    Hello,
    I'm using the latest version of JHeadstart (11.1.1.3.35). I have selected Dynamic Tabs layout and everything works fine except that the home page still shows all the groups as a tab in home page. If I click on any of them it will go to the tree menu and dynamic tabs. I have also changed "Content Frirst-Level Menu Tab" to all possible values but it doesn't change anything. Any help would be appreciated.
    Sayyed

    Sayyed,
    The home page is just provided as a sample. It is a stand-alone page not a page fragment , so it cannot be used in a region. Since dynamic tabs only display regions, the dynamic tabs cannot be shown on the sample home page.
    If you want to have dynamic tabs on your home page, then create a Home group in your application definitiion editor, and check the group-level checkbox "Show as Initial Tab".
    Steven Davelaar,
    JHeadstart Team.

  • Problem in scroll tab layout policy

    Hi everyone!!
    I made a application using tabbedpanes. My problem is when i put
    an "x" button for close in the tab title area the scroll tab layout policy
    are not working, but if no button it's working.
    I need a closable Jtabbedpane with scroll tab policy.
    Pls anyone help me.
    It's my big appreciation

    no i dont have the code,
    i am just telling the idea....
    create a image labels inspite of tabs create panels corresponding to it
    add ur needs inside the panel and make it visible according to the tab clicked

  • PM Operation - Services Tab Layout

    All,
    In a PM Order, I am trying to maintain the Field layout on the Services tab of the Operation Detail screens when I have the control key set with {X-"internally processed operation/external processing possible"}.  With that setting in the control key, the "Gross Price" field is not visible.  My objective is to have the field visible, but administering the layout through the transaction is not working.
    Is anyone familiar with an IMG Activity that will allow me set the Services tab layout for that control key?  It is not in the Operation Detail Filed Selection IMG Activity, and the screen field is "ESLL-TBTWR".
    Thanks,
    Jim

    I understand that '' is the external services setting.  But why does the 'x' setting change the layout of the services tab to not include Gross Price?  The purpose of that 'X' setting is to allow for internal OR external processing.  It won't generate a purchase req if the setting is 'x' but I'd expect to be able to enter gross price per unit in the services tab, just like it is for the '' external setting. Or I expect to be able to modify the tab layout.
    (both cases the Service box is checked)
    Any ideas why i can't change the layout of the services tab?  Any ideas why the services tab changes depending on the externally processing option?
    Thanks,
    Jim

  • Setting personal tab layout to User Role default

    Hi All,
    Does anyone know of a way that a user can return their personal tab layout to the User Role default layou if they have made changes? I know how to do this with individual page layouts, but can't seem to find a way to do it for tabs.
    Cheers,
    Cameron

    Not quite what I was hoping to hear, but thanks for the response Arvindh.
    Regards,
    Cameron.

  • Dwm and tabbed layouts.

    Hey. I've been using Xmonad quite a bit lately, but i'm looking to use dwm because Haskell looks a bit complicated, and dwm seem to be VERY lightweight.
    But one thing i've been using for web browsing in Xmonad is its quite good tabbed layout, what i wanted to ask is if dwm is able to manage this kind of layout without any external program (a patch maybe ?), as i would like to have a *web* tag running only uzbl and using a tabbed layout like i'm used to do it in Xmonad ?
    Thanks.

    Im not sure what features the tabbed layout in xmonad provide, but there is a dwm patch that provides some tab like feature:
    http://dwm.suckless.org/patches/fancyco … rclickable
    It just shows a clickable list of Clients in the titlebar. With the Monocle mode its pretty much tabbed.

  • Difficulty with Tabbed Layout and Grid overlay

    I am using a tabbed layout in MUSE and cant find a grid layout to appear so that each tab remains in order with the previous tab when selected.
    WhenI select the grid ovelay all I get is a pink overcoating that doesnt have any functionality as far as I can tell.
    I want each tab to have its contents in the same place exactly as the previous tab. Different images...same place.

    Hi Jon,
    I approximated what you want quite easily using the steps below:
    Open a New word processor document.
    Go File > Page Setup and click one of the Landscape orientation (my Page Setup dialogue shows 2, yours may show only one). Click OK
    Go Format > Document... and set the margins to 0.5, 0.5, 0.25, 0.25. Click OK.
    In the Ruler, Click the multiple columns side of the Columns button once to make 2 columns.
    Press enter (the enter key on the number pad, or in the bottom row of an iBook, PowerBook or MacBook keyboard) to insert a column break and move the insertion point to the right hand column.
    Press and hold the Option key and click and hold on the left border of the Right column. drag the column boundary to the 5.75 inch mark on the Ruler. When you release the mouse button, the left margin marker will move to the position of the left edge of the column so you can check it and adjust as necessary.
    Click in the left column, and repeat the process, placing the right margin of this column at the 5.25 inch mark.
    One caveat: If your printer is like mine (an Epson inkjet), the printer itself will have a minimum bottom margin greater than 1/4 inch (mine is 0.53"). This applies to the physical 'bottom' of the page in Portrait orientation, and has to do with the printer's ability to print to the edge of the page at that point.
    And one Note: once you have the columns set up, you might want to save your document (empty, or including material common to each edition) as a Template.
    Regards,
    Barry

  • Siebel Sales Enterprise 8.0.0.8 - problem with Screen Tab Layout

    Hello all !
    I create [Manager] Resonsibility and check hide [Opportynities screen] in Screen Tab Layout for [Manager] Resonsibility for Siebel Sales Enterprise.
    I added user Bob with [Manager] resonsibility.
    But user Bob stiil see Opportunities Screen when log on.
    User Bob has no other resonsibilities.
    I cannot inactivate Opportynities screen because this screen used by other resonsibilities.
    What is cause of with issue?
    Best Regards
    Lev

    Hello,
    Did you delete the user preferences of this user prior to your test ?
    I also assumed that the default view is not part of Opportunity screen when you log in.
    Best Regards
    EvtLogLvl

  • How to move vertically the fields without using the Cross tab layout

    Hi all,
    I'm using Oracle Business Intelligence Discoverer Plus 10g (10.1.2.48.18).
    With Administrator I created a custom folder and I have the following list of fields:
    Ticket id
    Creation date
    Actual Situation
    Gravity
    Owner
    Category
    Group
    Inside my report I have as parameter the Ticket id, and then my intention is to create a page item for the ticket id, in order to change it directly from the report.
    Now my question is very simple. Instead to show the data as usual:
    !http://www.freeimagehosting.net/uploads/3da37e6a71.jpg!
    I'd like to know if there's a way to show these fields exactly in this way:
    !http://www.freeimagehosting.net/uploads/e578a40bb4.jpg!
    I tried to create a Cross tab layout, starting from the Table layout, but it doesn't work because I don't have data points to show, and above all I don't need a Cross tab logic.
    I need only to move vertically all the fields in order to show, for each ticket, all the ticket's details as shown above.
    Is it possible to have this layout ?
    Thanks in advance
    Alex

    Hi Rod, I'm sorry if I answered you only now.
    My expression "in order to change it directly from the report" was just related to the Ticket Id, but right now the customer's requirements changed and I don't need to change it inside the report ; I just insert the Ticket Id at the beginning as parameter and then I see all its details.
    So, I tried your second solution (row generators) following the article on the blog...and It worked perfectly.
    Summarizing I created:
    1. a folder called "Row Generator - 20 rows"
    2. a complex folder called "Fields names"
    and then I created a join between the Tickets folder and the Fields names folder with the Dummy field
    I also create a LOV (on the Administrator) based on a calculated field inside the Fields names folder (I followed the LOV example shown inside the Row Generators Blog Article).
    Now, created the first piece:
    !http://www.freeimagehosting.net/uploads/e578a40bb4.jpg!
    I'm trying to create others details blocks, always in "vertical style" (Customer’s Data, Further Information, etc) as below:
    !http://www.freeimagehosting.net/uploads/8e006eb3cf.jpg!
    Do you know if this layout is feasible ?

  • Tab layout for asset master

    hi kings
    I am unable to find the tabs in assets accounting.  Because at the time of asset master creation i am getting only 4 tabs. So i want to add some more tabs in the asset master. So how it is possiable to maintained the laout tab in the asset master.
    regards
    ram

    hi EC
    I am explain the problem :
    At the time of  asset master creation i can found it only 4 tabs i.e general,time-dependent,Allication,Depreciation areas.
    But i want some more tabs like Origin,Insurance,Networth tax. in Asset master records.
    As per my knowledge i am maintained the one layout and in that layout cantains the all the tabs in asset accounting. That layout has been assign to respective asset class.
    Eventhough i am not gettting the all the tabs in asset master. So i do for the my issue.
    regards
    ram

Maybe you are looking for

  • S-Video Vs. VGA

    After getting my MacBook Pro a few days ago, I'm eager to hook it up to a TV and watch some video from bittor'...i mean uncopyrighted content However, the TV I want to connect it to doesn't have any digital inputs, although it does have both S-Video

  • How to implement Security Domains with Delegated Management

    Hello, I have read the GlobalPlatform docs and 'scoured' the Internet for some useful advice on how to implement DM with Java Card. The GlobalPlatform docs say that "The interface between a SD and the Card Manager is not defined by Open Platform" and

  • Gcc 3.3.2 problem:  libgcc_s.so.1 not found

    I am trying to compile a perl module (Math::GMP) on a Solaris 8 platform. We have gcc 3.3.2 installed, and everything appears to go well until I try the following: % ldd blib/arch/auto/Math/GMP/GMP.so     libgmp.so.3 => /usr/local/lib/libgmp.so.3    

  • Execute C# in PowerShell: errors with " using System.XML "

    Hi , I'm trying to execute C# code in Power Shell 2.0 . My problem is for the references  at the beginning of the code: $code = @" using System; using System.Collections; using System.IO; using System.Linq; using System.Xml; using System.Xml.Linq;   

  • Won't let me sync apps

    Please help. My iPod Touch won't let me sync the apps in iTunes. It doesn't even have an app tab.