Newbie, Missing Admin tab and Schedules tab is greyed out

Hi,
I am totally new to BI Publisher. I just completed the installation of both Oracle DB 10g and OBIEE 10.1.3.4
I am following the example in OBE to get started with BI Publisher. However, when I open the BI publisher, I don't see the Admin tab and also the schedules tab is greyed out. Where can I reenable the Admin tab?
Installation details:
OBIEE 10.1.3.4 with BI Publisher
I am accessing the BI publisher from Business Intelligence/BI Publisher
Username: Administrator
Or is there another menu tab to perform BIP Admin in this version?
Thanks,
Gina

gmsamia wrote:
Hi,
I am totally new to BI Publisher. I just completed the installation of both Oracle DB 10g and OBIEE 10.1.3.4
I am following the example in OBE to get started with BI Publisher. However, when I open the BI publisher, I don't see the Admin tab and also the schedules tab is greyed out. Where can I reenable the Admin tab?
Installation details:
OBIEE 10.1.3.4 with BI Publisher
I am accessing the BI publisher from Business Intelligence/BI Publisher
Username: Administrator
Or is there another menu tab to perform BIP Admin in this version?
Thanks,
GinaWelcome to BIP!
Admin tab: u have to include Admin ID in the XMLP_ADMIN group in the RPD. (i believe u know how to do that)
Schedule: U have to configure scheduler and start the scheduler service. U need to follow as series of steps for that ...

Similar Messages

  • JIT  delivery schedule tab in Scheduling agreement is greyed out.

    Hi all !
    The "TAB JIT delivery schedule" is not accessible when creating a new Schedule line agreement. Where do i change the settings so that this TAB is available to me.
    Thanks and regards,
    vijay

    Hi,
    First please check whether schedule line due for delivery or not and other thing that prevent further processing of doc . If envrything is fine .
    Please check tcode SHD0 Put Transaction code as VA31
                                                  Transaction Varinat as BUS_2035 ( OR press F4 and select the one)
    Trnsaction varinat will appear in lower half of screen -> click on first one -> change -> go inside u will find all the field, radio button etc please check the ur one and check whether the checkbox saying Output only in front of that field is checked or not .
    If checkbox is checked please uncheck the same save it and try again .
    If it is not checked or field is not availble . Please check other reason as there is no problem with screen varinats
    Hope this help

  • Tab and back-tab out of a JTable

    Hi There,
    I have been working for some time on improving the default behaviour of the tab key within editable JTables. It largely works as required now, but I'm stuck on getting back-tab to leave the table if on row 0, col 0. I register tab and back-tab action in the table's ActionMap that looks like this:     
         class TabAction extends AbstractAction {
              public void actionPerformed(ActionEvent e) {
                   if (getRowCount() > 0) {
                        int row = getSelectedRow();
                        int column = getSelectedColumn();
                        if (row < 0 || column < 0) {
                             row = 0;
                             column = 0;
                        do {
                             if (++column >= getColumnCount()) {
                                  row++;
                                  column = 0;
                        } while (row < getRowCount() && ! isCellTabbable(row, column));
                        if (row < getRowCount()) {
                             changeSelection(row, column, false, false);
                        } else {
                             clearSelection();
                             transferFocus();
                   } else {
                        transferFocus();
         class BackTabAction extends AbstractAction {
              public void actionPerformed(ActionEvent e) {
                   if (getRowCount() > 0) {
                        int row = getSelectedRow();
                        int column = getSelectedColumn();
                        if (row < 0 || column < 0) {
                             row = getRowCount() - 1;
                             column = getColumnCount() - 1;
                        do {
                             if (--column < 0) {
                                  row--;
                                  column = getColumnCount() - 1;
                        } while (row >= 0 && ! isCellTabbable(row, column));
                        if (row >= 0) {
                             changeSelection(row, column, false, false);
                        } else {
                             clearSelection();
                             transferFocusBackward();
                             KeyboardFocusManager fm = KeyboardFocusManager.getCurrentKeyboardFocusManager();
                                // fm.upFocusCycle(BTTTable_Editable.this);                         
                             // fm.focusPreviousComponent(BTTTable_Editable.this);
                   } else {     
                        // transferFocusBackward();
                        // KeyboardFocusManager fm = KeyboardFocusManager.getCurrentKeyboardFocusManager();
                           // fm.upFocusCycle(BTTTable_Editable.this);                         
                        // fm.focusPreviousComponent(BTTTable_Editable.this);
         }transferFocus() to go to the next screen component works fine - as long as I callsetFocusTraversalPolicyProvider(true); when I create the JTable.
    But the backward traversal just doesn't work - instead it does nothing the first time you press back-tab on row 0 col 0, then if you press it again, focus goes onto the last row/col of the table.
    As an alternative, I thought maybe I could call the Ctrl-back-tab action, but I can't find that registered in the action map - can anyone tell me how ctrl-back-tab is called and whether I can call that code directly?
    Any ideas?
    Thanks,
    Tim

    Where's the rest of your code? What good does posting
    the Actions do if we can't execute your code and see
    how you've installed the Actions on the table? Who
    knows where the mistake is. It may be in the posted
    code or it may be in some other code.Well I assume the Action is registered okay because back-tab within the table works fine, and in fact using a debugger I can see that the focus request code (transferFocusBackward) is being called at the right time. I followed it into that code and it appears that it is picking up the tableCellEditor as the "previous" component which is "why" it isn't working right - not that that helps me to fix it.
    Anyway, just to confirm, here is a complete standalone testcase:import java.awt.Dimension;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import java.awt.KeyboardFocusManager;
    import java.awt.event.ActionEvent;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.InputEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.ActionMap;
    import javax.swing.InputMap;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JTextField;
    import javax.swing.KeyStroke;
    * <br>
    * <br>
    * Created on 14/11/2005 by Tim Ryan
    public class TabTable extends JTable implements FocusListener {
         protected KeyStroke TAB = KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0);
         protected KeyStroke BACK_TAB = KeyStroke.getKeyStroke(KeyEvent.VK_TAB,
                   InputEvent.SHIFT_DOWN_MASK);
         protected KeyStroke LEFT_ARROW = KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0);
         protected KeyStroke RIGHT_ARROW = KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0);
         public TabTable(Object[][] rowData, Object[] columnNames) {
              super(rowData, columnNames);
              initialise();
         public TabTable() {
              super();
              initialise();
         private void initialise() {
              addFocusListener(this);
              InputMap inMap = getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
              ActionMap actionMap = getActionMap();
              inMap.put(LEFT_ARROW, "None");
              inMap.put(RIGHT_ARROW, "None");
              actionMap.put(inMap.get(TAB), new TabAction());
              actionMap.put(inMap.get(BACK_TAB), new BackTabAction());
              setCellSelectionEnabled(true);
              putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
              setFocusTraversalPolicyProvider(true);
         public void focusGained(FocusEvent e) {
              if (getRowCount() > 0 && getSelectedRow() < 0) {
                   editCellAt(0, 0);
                   getEditorComponent().requestFocusInWindow();
         public void focusLost(FocusEvent e) {
         public void changeSelection(int row, int column, boolean toggle, boolean extend) {
              super.changeSelection(row, column, toggle, false);
              if (editCellAt(row, column)) {
                   getEditorComponent().requestFocusInWindow();
          * This class handles the back-tab operation on the table.
          * It repeatedly steps the selection backwards until the focus
          * ends up on a cell that is allowable (see <code>isCellTabbable()</code>).
          * If already at the end of the table then focus is transferred out
          * to the previous component on the screen.
         class BackTabAction extends AbstractAction {
              public void actionPerformed(ActionEvent e) {
                   if (getRowCount() > 0) {
                        int row = getSelectedRow();
                        int column = getSelectedColumn();
                        if (row < 0 || column < 0) {
                             row = getRowCount() - 1;
                             column = getColumnCount() - 1;
                        do {
                             if (--column < 0) {
                                  row--;
                                  column = getColumnCount() - 1;
                        } while (row >= 0 && ! isCellTabbable(row, column));
                        if (row >= 0) {
                             changeSelection(row, column, false, false);
                        } else {
                             clearSelection();
                             // transferFocusBackward();
                             KeyboardFocusManager.getCurrentKeyboardFocusManager().focusPreviousComponent();
                   } else {
                        // transferFocusBackward();
                        KeyboardFocusManager.getCurrentKeyboardFocusManager().focusPreviousComponent();
          * This class handles the tab operation on the table.
          * It repeatedly steps the selection forwards until the focus ends
          * up on a cell that is allowable (see <code>isCellTabbable()</code>).
          * If already at the end of the table then focus is transferred out
          * to the next component on the screen.
         class TabAction extends AbstractAction {
              public void actionPerformed(ActionEvent e) {
                   if (getRowCount() > 0) {
                        int row = getSelectedRow();
                        int column = getSelectedColumn();
                        if (row < 0 || column < 0) {
                             row = 0;
                             column = 0;
                        do {
                             if (++column >= getColumnCount()) {
                                  row++;
                                  column = 0;
                        } while (row < getRowCount() && ! isCellTabbable(row, column));
                        if (row < getRowCount()) {
                             changeSelection(row, column, false, false);
                        } else {
                             clearSelection();
                             transferFocus();
                   } else {
                        transferFocus();
          * Some cells can be tabbed to, but are not actually editable.
          * @param row
          * @param column
          * @return
         private boolean isCellTabbable(int row, int column) {
              return (column % 2 == 0);
         public boolean isCellEditable(int row, int column) {
              return (column == 1 || column == 3);
          * @param args
         public static void main(String[] args) {
              JFrame frame = new JFrame("Tables test");
              frame.setName("TablesTest");
              frame.setSize(600, 400);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panelMain = new JPanel(new GridBagLayout());
              frame.add(panelMain);
              Object[][] tableData = new Object[2][6];
              Object[] columnHeadings = new Object[] {"H0", "H1", "H2", "H3", "H4", "H5"};
              GridBagConstraints gbc = new GridBagConstraints();
              gbc.anchor = GridBagConstraints.NORTH;
              gbc.insets = new Insets(10, 10, 10, 10);
              JTextField field1 = new JTextField("left", 8);
              field1.setName("left");
              panelMain.add(field1, gbc);
              Dimension tableSize = new Dimension(300, 300);
              BTTTable table3 = new BTTTable_Editable(tableData, columnHeadings);
              table3.setName("Editable");
              JScrollPane scroll3 = new JScrollPane(table3);
              scroll3.setPreferredSize(tableSize);
              panelMain.add(scroll3, gbc);
              JTextField field2 = new JTextField("right", 8);
              field2.setName("right");
              gbc.gridwidth = GridBagConstraints.REMAINDER;
              panelMain.add(field2, gbc);
              frame.setVisible(true);
    }I thought it might be the focusGained() code, but commenting that out makes no difference.
    And here is the code I would use to go to the
    previous component:
    KeyboardFocusManager.getCurrentKeyboardFocusManager().
    focusPreviousComponent();I tried that too, as you can see from my original post. It gives the same answer.
    So the big question is why does the FocusManager think that the "previous" field to the table is an editor component within the table?
    Regards,
    Tim

  • Why do units of measurement in paragraph tab and character tab differ?

    Why do units of measurement in paragraph tab and character tab differ?
    In Indesign CC 2014.1 when I set the units for type to be in points and all other measurements apart from strokes to be in mm, why are the units for the paragraph tab also in mm?
    In both Photoshop CC and Illustrator CC, whatever units you assign for type also are used for the paragraph settings, which makes sense.
    I want everything to do with type to be in points and pretty much everything else in mm, yet the only way I can have the paragraph tab units as points is for all measurements to be in points!
    Does this sound right or is something wrong with my Indesign?
    Thanks
    Keith

    Glu Design wrote:
    Ok guys I see. I just wondered why InDesign differed to both Photoshop and Illustrator in this respect.
    Thanks
    Keith
    They are made by Adobe, and Adobe has different teams for different applications.
    Sometimes the same feature in multiple applications is designed slightly differently than the way other teams would handle it.
    This may be down to:
    Time constraints to get the feature in - compared to other top priority items
    Having to make a decision on whether to do it one way or another way - 50/50 type thing
    Due to the limitations of how the program was designed and how the feature ties in with other features etc.
    And many many more programming reasons. It may be the guy doing the photoshop changes wasn't as well versed in typography needs as the indesign guy.
    Who knows - but there are differences in lots of areas between all apps.

  • Workflow tab, Personalization tab and Miniapp tab..???

    Hi
    In PFCG there is a tab called workflow, why is it used for and also let me know the use of personalization tab and miniapps tab...?
    Regards
    Rakesh

    Hi Rakesh,
                  Personalization tab was mostly used to give standard access for end users. Like ouptup devices, Printer type ....   if you need more please look in to the following link.
    This tab is common to both Role and user management.
    [http://help.sap.com/saphelp_46c/helpdata/en/68/cf7db4d2e011d296120000e82de14a/frameset.htm]
                MiniApps is nothing but to use a frequently user sap standared URLs, Commonly used applications stored in the table SW3M_ADMIN. 
    Regards,
    vasantha kumar

  • Parent Tab and Standard Tab set

    What is the difference between above three - i.e. Parent Tab, Standard Tab set?
    I understand Parent Tab is the master level Tab, but not sure what is different between Standard Tab Set and Parent Tab? It seems like interchanging of terminology to me.
    Thanks
    Rich

    Thanks Jari, In the link given, there is a point which I have pasted below.
    6. Go to page “Display Attributes“, Select page template to “Two Level Tabs” and Standard Tab Set, in our example it is “TS1(page 1)”How do i go to this "Display Attributes" page?
    Thanks,
    R

  • New tab and close tab buttons are not enabled

    On firefox page, new tab and close tab buttons are not neabled and right click shows the same functions as not available.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • What do the 'LOCK TAB and PROTECT TAB' choices on the tab Context menu do?

    Right-click context menu on tabs shows Lock Tab and Protect Tab, but I cannot find any information on what each choice actually does. Can someone explain them to me?

    Those contextual menu items are added by the Tab Mix Plus extension.
    http://tmp.garyr.net/forum/

  • General Settings..BP Tab Activate approval procedure is greyed out

    Hi
    I see the General Settings..BP Tab Activate approval procedure is greyed out - how do i activate this
    regards
    Manian

    Hi,
    If the user you use to log into the system is one of the originator in any Approval template, then the tick box will be greyed out.
    To edit this tick box, check all approval templates you defined in the system to see if there is any users are not the originator for any templates. Log in as this user then you can active this box.
    hope this help,
    regards,
    maggie an
    Edited by: Maggie An on Jun 16, 2008 10:52 AM

  • I can't figure out why my reverb and echo things are greyed out

    I can't figure out why my reverb and echo things are greyed out on the bottom right of my screen with the edit tab open for the track. I was going to put a screenshot in here but I couldn't figure it out. I one can understand what I mean. Thank you.

    bennirubber wrote:
    reverb and echo things are greyed out on the bottom right of my screen
    http://www.bulletsandbones.com/GB/GBFAQ.html#effectsdisabled
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Get and Put options are greyed out in DW CS4

    I am a fairly green Dreamweaver user, and recently (finally) upgraded from MX4 to CS4.  I am trying to get a file from my local c:drive and both the get and put functions are greyed out.  Any idea how to enable these functions?  I do not have the file that I wish to transfer open.

    When you say you are trying to get a file from your local c:drive, dio you mean that you are trying to import a file into your site from elsewhere on your computer, rather than 'getting' it from your remote server.  If you are trying to import a file from your local c:drive don't use the 'get' or 'put' buttons because they are just for remote connections, instead just use windows explorer to locate the file then either copy or cut and paste the file into the folder for your site.
    Richard

  • The back, forward, reload and stop buttons are greyed out, the address bar stays blank when I go to a website and firefox loads to a blank page, not my home page. There are 3 users on this computer and it only happens on one user.

    Firefox loads to a blank page, not my home page. When I click on the home button it takes me to the home page. The back, forward, refresh and stop buttons are greyed out and not usable. The webpage I am on does not show up in the address bar. If I type something into the address bar, that address stays there no matter what page I go to next.

    Just upgraded to v4. It did NOT fix the problem.

  • The back and forward arrows are greyed out all the time - How can I fix this?

    I am currently using firefox ver 21. However the forward and back buttons are greyed out and will not work. I would be happy to re-install the program but how do I re-install without losing all my bookmarks and settings.
    Please advise.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with the places.sqlite database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file

  • Spelling and grammar option is greyed out in preferences. How to switch it on ?

    'Spelling and grammar' option is greyed out in 'preferences'. How to switch it on ?

    Hi john,
    Does anyone know why its there and what its use is, and in what circumstances I can use it ?Its use to search the folders in the Business areas.
    Which version of discoverer are you using?
    The graying out of the icons might be due to the cache memory of java.go through this link for details
    [http://learndiscoverer.blogspot.com/2006/06/lost-or-grayed-out-icons-in-discoverer.html]
    hope it helps you.
    Best Wishes,
    Kranthi.

  • Copy and pasting a page in an existing document? Copy and paste functions are greyed out? Also tried extracting the page to copy but am alerted that an incorrect structure was found in the PDF file?

    copy and pasting a page in an existing document? Copy and paste functions are greyed out? Also tried extracting the page to copy but am alerted that an incorrect structure was found in the PDF file?

    What do you mean by "copy and paste a page"? What tool have you selected? Or are you just assuming you can select stuff and copy/paste as in Word?

Maybe you are looking for