How to enable logoff button in OBIEE?

Hi guys,
We are implementing APCC-ASCP-Demantra which uses OBIEE.
We are unable to see logoff button inside of the Dashboards page, is there any way to enable it?
I have added next line inside of my instanceconfig.xml file:
<LogoffUrl>http://<hostname>:<port>/analytics/saw.dll?Dashboard</LogoffUrl>
Any advice or help will be really appreciated.
Thanks in advance.
Kind regards,
Francisco Mtz. Oviedo

Hi,
Sorry for the late response.. Please add this line in your instanceconfig.xml file.
<LogoffUrl>http://server:port/analytics/saw.dll?Logoff></LogoffUrl>
It should point to saw.dll?Logoff not saw.dll?Dashboard.
ThanQ
Anand

Similar Messages

  • How to enable a button only when a tilelist item is selected

    Simple question but it seems quite awkward to me. How do I enable a button only when an item within a tilelist is currently selected?
    For example lets say if I have a button called button1 that is disabled by default and a tilelist called tilelist1 what would I have to add into the brackets of the following code (enabled property of the button) to ensure that the button is only enabled when an item in the tilelist is currently selected but disabled when no items are selected:-
    enabled="{}"

    enabled="{tilelist1.selectedItem}"
    that should do it, it's making an implicit comparision with null (tilelist1.selectedItem == null) which will result in a boolean.
    SelectedItem is null when nothing is selected , not null when something is.

  • How to enable/disable button

    Hi,
    i m new to pcui, i got how to hide the button in toolbar group. but could you please guide be how to enable r disable the button which is in toolbar group.
    thanks in advance

    Hi venkat,
    Follow the step, it's example of Lead CRMD_BUS2000108 & View is *ZMSR_RE5 *
    1)     Go to CRMC_PCUITOOLS.
    2)     Go to Analysis Tools -> Determine the Correct Model Access Class.
    3)     Give Application - CRMD_BUS2000108 & View – ZMSR_RE5 & execute.
    4)     Click on New -> MFT Sales (Transaction type)
    5)     Note Toolbar Group - > LEA_SR_50.
    6)     Go to CRMC_BLUEPRINT_C.
    7)     Go to Toolbar Group -> Toolbar Group Structure.
    8)     Give Toolbar Group - LEA_SR_50.
    9)     Search for ZMSR_RE5 Toolbar elements.
    10)     Click on Details.
    11)     Check whether FLAG is Not Set in Exp. Display. Choose Flag set Event has Occurred to Hide the Button.
    it will help u
    On.........................

  • How to Enable a Button

    Hello,
    I have a little problem to Enable a Button.
    I have a Text-Item and a Button in my Form-Modul. I want to write a Code which checks if the Text-Item is Null. If it is then the Button must be enabled.
    But which Form-Trigger must I use to do this.

    This question is definitely more clear then Sven's;-)
    I would use the when-validate-item-trigger on your text field,
    and in addition the post-query-trigger if you want to set the
    property already when retrieving records from the database.
    IF :MY_BLOCK.EINGABE IS NULL THEN
      SET_ITEM_INSTANCE_PROPERTY('MY_BLOCK.MY_BUTTON', :SYSTEM.TRIGGER_RECORD, ENABLED, PROPERTY_FALSE);
    ELSE
      SET_ITEM_INSTANCE_PROPERTY('MY_BLOCK.MY_BUTTON', :SYSTEM.TRIGGER_RECORD, ENABLED, PROPERTY_TRUE);
    END IF;

  • How to enable print button appear on 'application toolbar'

    hi guys,
    may i know to enable print button appear on 'application toolbar' by using CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'?
    thanks.

    Hi,
    Create a PF status in SE41 with all the status which you required.
    Like save, exit, cancel and print.
    Then you include this staus in  the importing parameter
    ( I_CALLBACK_PF_STATUS_SET ) of Function module REUSE_ALV_GRID_DISPLAY.
    If you doesnt give any status also, by default you can seen the print option in status.
    Try with this and let me know

  • How to remove logoff button from the Portal?

    Could anyone help me to remove the logoff button from the Portal? I am using netweaver portal 7.0 Thanks!

    Hi Michael,
    Thank you for your reply!
    Can I do it through the portal or I have to do customized programming in NWDS? Could you please show me step by step in details?
    In the future the portal will be use SSO with active directory so user does not have to login/logoff. I think the session in the server will be closed after a couple of minutes. What do you think?

  • How to enable a button on click of an adjoining list box

    Hi,
    I have a requirement that :
    the button "Add to the list" should be enabled only when the user clicks on the list box "product list". This is to ensure that the user is looking at the list before adding a new product.
    I tried that the button is disabled by default and then wrote the following line in the list box
    onChange="document.forms(0).ADD_TO_LIST.disabled=false;"
    But it is not working.
    Please guide me
    Appreciate your help.
    Thanks,
    Gary

    gary1234 wrote:
    Dear Cotton,
    I tried searching for a Java Script forum. Could not find it.Dear Gary,
    I question either your competence or the veracity of this claim. A Google search for JavaScript forum returns 19,000,000+ results.
    Please reply if you can help.
    Thanks for enlightening me that Java script is different than Java.This is the third time now you have been so enlightened.
    I am not sure how is it harming you if I post the Java script question here.Please don't be a wank. It is inappropiate for anyone, including you, to ask off topic questions on this, or any other forum. This forum is NOT for JavaScript questions and that is all there is to it.
    So now go to Google. Type JavaScript Forum into the search box and find yourself a JavaScript forum and ask your JavaScript question there.
    This isn't rocket science and your excuse as to why you haven't done so is at best flimsy but more likely just a lie.

  • How to enable extension button of select-options but make it read only

    Hi all,
    I have select-options with extension on my selection screen. It has to be read only. But when I give screen-input = 0, even the extension button is disabled. So the user cannot see multiple default values of that field. How should I enable the extension button and still make it read-only.
    Thanks in advance.
    Vasu

    Hi, try below sample code:
    data: gv_bukrs type bukrs.
    SELECT-OPTIONS s_one for gv_bukrs.
    at SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        if screen-name = 'S_ONE-LOW' or screen-name = 'S_ONE-HIGH' .
           screen-input = 0.
           MODIFY SCREEN.
        endif.
      ENDLOOP.

  • How to Enable Export button on toolbar of alv grid??

    Hi guys,
    I display my data in Alv grid format,
    The problem is that in the standard toolbar of the alv i can't find the standard button for Exporting in spreadsheet & when i try
    to get it from the menu it's disabled along with all the Export functionalities..how can i solve this problem?
    Thanks in advance,
    Regards,

    Yes sure there it is:
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
          i_callback_top_of_page   = 'TOP_OF_PAGE'
        I_INTERFACE_CHECK                 = ' '
        I_BYPASSING_BUFFER                = ' '
        I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = G_REPID
         I_CALLBACK_PF_STATUS_SET          = 'STANDARD_FULLSCREEN'
        I_CALLBACK_USER_COMMAND           = ' '
        I_CALLBACK_TOP_OF_PAGE            = ' '
        I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
        I_CALLBACK_HTML_END_OF_LIST       = ' '
        I_STRUCTURE_NAME                  =
        I_BACKGROUND_ID                   = ' '
        I_GRID_TITLE                      =
        I_GRID_SETTINGS                   =
        IS_LAYOUT                         =
         IT_FIELDCAT                       = it_fieldcat
        IT_EXCLUDING                      =
        IT_SPECIAL_GROUPS                 =
        IT_SORT                           =
        IT_FILTER                         =
        IS_SEL_HIDE                       =
        I_DEFAULT                         = 'X'
        I_SAVE                            = 'A'
        IS_VARIANT                        =
        IT_EVENTS                         =
        IT_EVENT_EXIT                     =
        IS_PRINT                          =
        IS_REPREP_ID                      =
        I_SCREEN_START_COLUMN             = 0
        I_SCREEN_START_LINE               = 0
        I_SCREEN_END_COLUMN               = 0
        I_SCREEN_END_LINE                 = 0
        IT_ALV_GRAPHICS                   =
        IT_HYPERLINK                      =
        IT_ADD_FIELDCAT                   =
        IT_EXCEPT_QINFO                   =
        I_HTML_HEIGHT_TOP                 =
        I_HTML_HEIGHT_END                 =
      IMPORTING
        E_EXIT_CAUSED_BY_CALLER           =
        ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = itab
      EXCEPTIONS
        PROGRAM_ERROR                     = 1
        OTHERS                            = 2
      IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    P.S: I tried copying standard status of program saplkkbl into my program then specified its name which is 'STANDARD_FULLSCREEN' inside my function call parameters ..but the toolbar now is completely disabled with no standard
    icons whatsoever!.what shall i do?
    Thanks

  • How to enable enter button on keyboard for action on jsp page with adf11g

    hello,
    i have a login page, when i press login button with mouse it is working.
    But i want to click 'enter' button on the keyboard when inputbox is focused.
    For example i entered user and i entered passsword and click 'enter' button on keyboard for login action. How can i do this easily with adf11g ?
    thanks for interests.

    i tried but on af:form we have not defaultAction. i saw, there has defaultCommand i tried this but not acceptable by warning that about, "no id or naming containers". We has an id on command but what is naming containers.
    Other question is,
    How to write javascript on the adf tools? We have not any, "onClick, onPressed vs..".
    Thanks for helps.

  • Modify User (OIM 11gR2 PS1): How to enable "submit" button for custom udf fields?

    I made some new attributes following oracle documentation for create user, modify user, and view user details forms. create user and view user details are working fine, but I'm not being able to copy/paste the following code in custom modify user attributes to enable the submit button for modify user form change: #{pageFlowScope.cartDetailStateBean.attributeValueChangedListener} . Any ideas? Thanks.

    Export the sandbox and edit userModifyForm.jsff to set value change listener property for the new attribute as below
    valueChangeListener="#{pageFlowScope.cartDetailStateBean.attributeValueChangedListener}"
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/customattr.htm#autoId4

  • How to enable 'SAVE' button and trigger and event on output screen.

    Hello, in the output screen, the save button is disabled .I need to activate the button and when the user clicks on it another process must be triggered. Anyone worked on something similar before.thanks.

    Your problem description is too vague, and the problem itself seems very basic. Please read about [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.
    Thread locked.
    Thomas

  • How to enable the "update file" button to update the data template

    We have an escalated customer bug that the chinese character does not display correctly on report. We want to update the data template xml file on customer site to test the fix. However, when the customer login using "XML publisher Administrator" responsitility, select function "Data Definitions", search and then update the definition, on the update page, the button "update file" next to "Data Template" is disabled. Anyone know how to enable the button?
    screenshot at:
    ftp://bugftp.oraclecorp.com/upload/bug6649637/CannotUpdate.doc
    Thanks,
    Wei

    Unless until it is a Manual Journal, SLA page doesn't give you the provision to change them.
    Even for Manual Journal, it won't allow you to change, if that is transferred to GL.
    Only option is to UNDO the accounting and correct the setup to create correct journals. You may contact Oracle Support.
    By
    Vamsi

  • How to use customised buttons in the menus

    Hi John,
    In the forms menus i have seen some customised buttons in some of the wrkforce forms. I would ike to knw how to enable these buttons.
    For example in form to add a TBH in menu there is a button ADD. How can we put those buttons.
    And also, there is button VALIDATE in the form where we have GO button. How to populate it. Even when the validate button is clicked, there is a popup menu saying that the entered amount is more than the budgeted amont. Is this done using the alerts?
    Please help regarding these issues

    Hi,
    I take it you are talking about when you right click and a menu appears.
    This is achieved by menus, Administration > Manage menus
    Or read about it here > http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/menus.html
    I think the example you talking about is menu "WFPMenuNewHires", if you want to know how it works you can edit it.
    It basically runs a business rule when you select an option like "Add To-be-hired" > Salary, you can customize the label on the buttons in the business options section of the menu set up.
    Once you have created a menu you can add it to a form when you design the form, it is part of the "Other Options" tab.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to enable total icon on my layout

    Hi All,
    I am using classes for ALV. Every thing is fine but i the total and subtotal fields on the layout are disable(not active). I want to know how to enable those button as well as how can i get the edit icons(Cut,Copy, insert, Undo, refresh and check entries) on my layout. When should we have to use splitter containers and if possible can we do the same stuff with custom containers .
    thanks

    Got it in  my layout i dont have numeric fields

Maybe you are looking for

  • Help with Safari crashing and keyboard lags with 2.1

    I have an issue and I need help. My Safari continually crashes if I use it for more than 10 mins as well as on certain sites. My keyboard lag has returned. How can I fix this? <Edited by Moderator>

  • Why doesn't stop button always stop my VI?

    We are using the default "Continuous Acquisition to Spreadsheet" VI that came with Labview. Our application is recording 32 temperature readings to a text file, and displaying them simultaneously to the monitor. The scan rate is one per minute, the b

  • Xml export cs4

    Hi, with the new release of indesign there are some change about export structure of xml? In past I found some problem about special caracters, like   or soft return etc...

  • Getting 'Unrecognized Apple ID or password' when setting up iCloud on iMac.

    I can't set up iCloud on iMac, in system preferences. Gives Unrecognized Apple ID or password when I try to sign in. However I can set it up fine on my macbook pro. Is this stilla busy server issue. It pops up with a warning that says: 'You Can't Sig

  • Apex / HTML Application server failure

    Dear Apex experts, I have a strange behaviour of my Apex installation here : If I don't use Apex for some hours (e.g. in the night) the becomes disfunctional. This means in my case, that I have all processes running (in my case 2 opmn proceses) but t