OBIEE Front End Help Button

Good afternoon all.
Hope you all are well.
Here is my question.
Our company is busy making OBIEE 11G more visual and flexible for our users.
Is there any way in the Front End that we can Insert a Help button or a question mark icon and when you click on it, it provides you with details on that report or prompt you are using.
Any suggestions? Or do you have to make use of html as for i have no skills in html.
Regards
Rayno

Hi there
Oky just got the call that i will have to start with this.
Can i not just take the HTML and paste it into Text box on the Edit Dashboard and tick the "Contains HTML Markup" Box?
Put it in a column and section and then display it as part of the dashboard page?
Or do i have to design a new HTML page?
If so can you please provide the steps on how to design a new HTML file, and where to put it on the server etc?
Regards
Rayno

Similar Messages

  • How can I use an Access front end and Access button to control a LabView Shared variable boolean?

    My company has invested a lot of money on the office network to write many many access databases and front ends. I'm looking for a way to tie a button on an access front end to toggle a LabView boolean shared variable to notify me when they changed something on their side of the network. I'm not seeing anything that helps on a web or forum search. They don't like the idea of a separate labview control that they have to push a button on to let me know.
    Thanks
    Solved!
    Go to Solution.

    Hi Patrick,
    While this is not the intended purpose of Network-Published Shared Variables, you might be able to accomplish this by writing separate accessor VIs for reading from and writing to the variable, making sure to wire the inputs and outputs. Then, you could build a DLL, making sure that you include the accessor VIs as Exported VIs and include the DLL Library in the Always Included section of the DLL Build Specifications. During this process, you will define the function prototype, which will provide the function call, required parameters, and return values. Once the DLL is created, you can then call it and its functions from another programming language (C, C++, C#, VB, etc.). This may or may not work, but it is the only way that I can think of at this point. I have included some references that may help you in this process.
    Building a Shared Library in LabVIEW (White Paper)
    Calling LabVIEW VIs from Other Programming Languages (White Paper)
    Calling LabVIEW DLL From C# (Forum with Examples)
    I hope this helps.
    Regards,
    Mike Watts
    Product Marketing - Modular Instruments

  • Disable SAVE button in EBS front end

    Hi Experts,
    I am working on forms 6i, EBS 11i. I want to disable the 'SAVE' button in the front end menu.
    Kindly help me.
    Thanks

    Hi;
    I am working on forms 6i, EBS 11i. I want to disable the 'SAVE' button in the front end menu. Is it custom forms or seeded one? If custom one i suggest please see below googling:
    http://www.google.com.tr/#hl=tr&source=hp&q=disable+SAVE+button%2Boracle+form&oq=disable+SAVE+button%2Boracle+form&aq=f&aqi=&aql=&gs_sm=e&gs_upl=296l4343l0l4546l20l19l0l17l17l0l187l297l0.2l2&fp=96ce050406090a43&biw=1280&bih=797
    Regard
    Helios

  • OBIEE 11g Front End Calculations with Presentation Variables Error

    Hi Guru's,
    Long time user first time poster to the forums but hopefully you can help.
    I have a requirement to perform an aggregation on certain fields with a dynamic grouping requirement (so users can select which grouping they require ie, sum profit by [outlets or companies or region]).
    The approach I am using is a prompt setting a presentation variable with the possible groupings for the calculation as choices, and a column in the report with a formula to SUM("table"."column" by "@{variable}{default}") this also contains a dynamic column name containing the presentation variable too.
    Where the column could be profit and the variable prompt options could be outlet, company or region (from the above example).
    This is currently separate from the RPD due to the dynamic nature required with groupings changing at run time and is done in the front end.
    However on selecting some columns via the prompt I receive this error:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 22027] Union of non-compatible types. (HY000)
    This only occurs on some field groupings, and is not a certain type in particular. (Including both short date, short time and varchars).
    Any ideas where this problem could stem from?
    Regards.

    Based on given info: Try this
    SUM(cast("table"."column" as int) by "@{variable}{default}")
    Pls mark if helps

  • Help with EJB Arch: Synchronous front-end -- Asynchronous back-end

    Hi folks, We are developing an application with the following characteristics: - users can invoke requests on our appl and they will expect a quick response - to obtain the information requested by the user, our application talks with Tibco using RV. This communication follows a pub/sub messaging paradigm and is asynchronous. - thus, we have a synchronous req/resp front-end and an asynch back-end.
    We would like some advice as to the best way of architecting this application. Here is our approach. Please critic and suggest alternatives.
    1. Consider an user who has requested something from our app. 2. The user will be using a JSP based front-end. (S)he submits the request on a form and a servlet is driven. 3. The servlet uses a session EJB and invokes one of its methods, which handles some business-specific logic. 4. The method in the session EJB then instantiates a helper class. 5. A method on our helper class is now driven. This method sends a message to Tibco and it provides a callback method in the helper class. 6. The method in the helper class blocks the thread - basically, it waits. 7. Meanwhile, Tibco does the processing and invokes the callback method (in the helper class) with the result. 8. In the callback method, the data sent by Tibco is stored in member variables of the helper class. 9. The callback method wakes up the blocking thread. 10. The method in step 6 wakes up and returns the information to the session EJB. 11. The session EJB returns the information to the invoking servlet. 12. The servlet provides the information back to the user.
    The version of Tibco-RV that we are using is not JMS compliant.
    We keep hearing that threads should be handled very carefully in an EJB container environment, so we would like to know if the way we are handling the thread in the helper class is okay. Could we remove the helper class and do the same thread-handling in the session EJB itself?
    Can we use JMS in this solution even though our Tibco-RV does not support JMS?
    Tools: Weblogic App Server 6.1, JBuilder 5.0.
    Thanks for your advice and suggestions!

    Let me start off by mentioning that Sonic MQ (an excellent JMS server) now provides a bridge for TIB/Rendezous. I am also wrestling with a simliar issue, something that requires threading at the servlet or ejb level, and have given some thought to using JMS. My concern was that JMS is an asynchronous process so it's model does not fit well with the synchronous front end. Technically I can see a few ways to implement it but architecturally I am not convinced that they are sound. You could send a message from the session bean to the TIB via SonicMQ and have a JMS message bean registered as a listener for messages from the TIB, again via SonicMQ. The JMS bean could update a static class or singleton which your session checks but you still have the issue of making the session bean wait on that event.
    I'll do a bit more digging and see if there's a design pattern available for this situation.
    -Dat

  • Front End Screen to Update Item Help Text

    Hello, I've been asked to create an Apex front end screen which the Administrators can access in order to update the Help Text associated to the page items within our application (Apex 4).
    I created a basic Interactive Report:
    select page_id, item_name, display_as, ITEM_HELP_TEXT from APEX_APPLICATION_PAGE_ITEMS where application_id = :APP_ID;
    I also have an edit page, which contains the page id (display only), item_name (display only), item_help_text (text field).
    Everything is working fine, except that when the Update process fires to update the help text, I get an Insufficient Privileges error message.
    Update APEX_APPLICATION_PAGE_ITEMS
    set item_help_text = :p7_item_help_text
    where item_id = :p7_item_id
    and application_id = :APP_ID;
    Just wondering, is it possible to update this APEX_APPLICATION_PAGE_ITEMS table? If not, can you please advise what the workaround would be?
    Thank you,
    Laura

    Log on as APEX_04000 user and then grant permission to your wpplication schema user. For a example if your application schema is app_user then
    Grant SELECT,UPDATE ON APEX_APPLICATION_PAGE_ITEMS  to app_user;Thanks
    * If this answer is helpfull or correct then please mark it and grant the points.

  • Help needed in creating Front End GUI

    Hello all,
                 Iam trying to develope a Front end Gui. Reading data from a spread sheet,  which has the following data 6 cloumn's 1) Parameter 2) Group 3) Max value 4) Min value 5) Default value 6) Value. Group is pretty much again classified in to 4-types. 
    a) Temperature group  --- Slide
    b) Switch   --- Push button
    c) Sensor group (voltage or pressure)  ---- Knobs
    d) Digital Inputs  --- Numeric Input
       From the spread sheet,for each parameter based on what type of group I should to create either a slider, or a switch or a knob or a Digital Input. And Based on 3rd and 4th column information, scale should be adjusted. 5th column should be used to set a default value and 6th column to assign a value
    to that parameter.
     Some one  pls give me any suggestion how to approach, begin with this process. Iam worried how to classify the parameters in to group's.
    -Lucky. 

    You could set up 15 to 20 controls of each type on your front panel.  You will need to work with references to each control to get and set properties since there will be no way to wire them up to any specific functions on your block diagram since which controls mean what will vary during run time.  So you would move the block diagram terminals for the 15-20 controls of each type off to the side of your diagram.
    When you go through your setup spreadsheet, you can set the visibility and front panel coordinates of each control you want to use.  For any you don't want to use, you will make them invisible.  Use property nodes to set the properties of each control.
    When you want to read from or write to a control, you will need use the reference of the particular control with a property node to get or set its value.
    This is not an easy archtitecture.  You will need to maintain arrays of references for each type of control.  You will also need to maintain a cross reference array so that you if want to access Control C (for example), you know which reference to index out which might happen to be element 1 in the array of slide references.  Perhaps control G would be element 4 of your array of knob references.
    But with good organization of your control references and perhaps some good subVI's for setting and obtaining the references so you can index them out of the appropriate array, it can be done.  I would recommend looking at Ben's Action Engine Nugget for ideas of how to store the references in a functional global variable.
    Message Edited by Ravens Fan on 07-25-2009 11:40 AM

  • How to create one Help button on front panel of VI??

    Hello,
    I want to create one button for example one help button on front panel of VI so by pressing that any new user can open folder in which I have store some help guide.
    Means I have make one folder on my desktop in that I have save all the data which should be useful for new user so if some new user want to run the programm and if he has no idea that how to run program then he can simply press help button and after pressing that helping folder will be open then reading then instruction user can start the program.
    Hope you will get my point.
    Thank you very much.
    Solved!
    Go to Solution.

    The Help that aCe posted will not work if you intend for the help to be displayed immediately. Since it is queued it will not be processed until the run is complete if it is currently running. This also means that if the Pause button is pressed the help will be delayed for quite some time. Also, you should avoid the use of local variables to control state information. The state machine should maintain all of your state information. The producer should only detect the events and pass the messages to the consumer. What you are encountering is a classic issue with the producer/consumer with the consumer acting as a state machine. Interrupting the flow of states with new events of a higher priority can be problematic. Simply placing items in the front of the queue may not always work correctly. There are some examples of implementations that use multiple queues which can create prioritized messages.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Hi, am using Joomla 1.7.3 - FF upgraded yesterday to 9.0.1. Now can't login to front end. OK on other browsers. Worryingly, uninstalled and downloaded FF 8 and still can't log in - please help

    Can't login to the front end of my Joomla installation. Backend is still OK at the moment. Have tried different accounts and re-setting passwords etc. and it's not that. Just keeps returning me to the login page.

    wonder wrote:
    vic wrote:
    wonder wrote:what's your user id?
    when asked for uuid/uid?... I put 100. I thought any random number would do...
    look in /etc/pam.d/gdm-password
    in arch and in general >= 1000 are  normal users, < 1000 system users
    is that how it works? can i change it from 100 to 1000 or just make a new one?
    anyways i'll look to it.

  • Lync phone edition does not try to sign in after the front end server restarts

    A restart of the frontend server. None of our Lync Phone Edition CX600 and CX3000 phones will sign back in. If you hit the cancel button and click it will work. This was fixed in a previous CU update but seems to be back again. CX version 4.0.7577.4451.
    Any ideas to try. Cant always restart our switches.

    Hi,
    Please install the update KB3014910 in the link below:
    http://support.microsoft.com/en-hk/kb/3014910
    The Update resolves the issue: Lync Phone Edition cannot automatically sign in when the primary front-end server that you register is shut down.
    If the issue persists, please also try to reset the IP phone and test again.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • How to upload an Image in the front end application

    Hi friends,
    I have a requirement in the sense, soon after i login into the application with the username and password....
    I will be having an file browse item, in which i need only to upload the images, soon after selecting the picture and if i give upload means, the picture has to populate immediately above the browse item in the front end itself......
    How to achieve it friends, i dont have idea in uploading the images in the front end itself......
    for example: suppose if i want my photo to keep in the front end Soon after i login into the application means, i will select my picture from the file browse item and immediately after giving upload button, i has to come above the browse field in the front end itself.........
    Inorder for getting the image in the front, whether i need to create a separate region where the image has to come soon after given the upload button....
    help me friends, how to achieve it from the scratch........
    Thanks
    Vel Rs

    Hi peter,
    Thanks for the detailed explanation, i have got an link for doing it and this is that
    http://www.dba-oracle.com/t_easy_html_db_file_browse_item.htm
    While referring that link i couldnt able to understand one thing peter, that is
    While creating the Upload button, in the 7th point in the link it is mentioned like
    On the Branching page enter &APP_PAGE_ID. for the Branch to Page field and click Create Button.  Remember the ending period!i couldnt understand what he is trying to say over there......Can you explain that point by going through that link clearly...Whether he is asking me to create what....
    Thanks
    Vel Rs

  • Problem in data carrier "IDENTIFY FRONT END COMPUTER"

    hello all
    i am facing problem in data carrier creation for front end computer. actually i am creating data carrier type PC and i want set as default for all desktop. After  DEFINE DATA CARRIER TYPE SERVER, FRONT END and Select PC and IDENTIFY FRONT END COMPUTER its shows following error
    No entries found that match selection criteria
    Message no. SV004
    Diagnosis
    No entries were found when importing data from the data base.
    Procedure
    If you have specified selection conditions, start the transaction again with conditions that are less restricted.
    You can make new entries independently of this. To do this, select the function New entries in menu Edit.
    help me

    Hi Vivek,
    In the SAP standard this entry are maintained only by the system
    itself and they cannot be entered manually in transaction DC20. I can
    only provide you the following information on the possible settings for
    variable HOSTNAME and the DEFAULT frontend entry.
    1. Default entry
       Call transaction 'DC20'. Double-click node 'Define data carrier type
       "server, front end"'. Select the respective data carrier type (e.g.
       'PC') and double-click node 'Identify frontend computers'. Click
       button 'Default entry' in the top right corner of the table control.
       Note that it is only possible to create 1 default entry!
    2. System variable HOSTNAME
       If you run Windows XP, please go to Start -> Settings -> Control
       Panel. Double-click on 'System'. Click on tab 'Advanced' and then on
       button 'Environment variables'. Create system variable 'hostname' and
       assign a value'. Save the new variable.
    As there is already a DEFAULT entry for frontendtype 'PC' it cannot be
    maintained for another frontend type.
    Best regards,
    Christoph

  • Problem with Front-End Editor (New)

    Dear SAP gurus
    I tried from transaction se38, selecting options Utilities -> Settings and then selecting Front-End Editor (New) from Abap Editor tab.
    When I had old editor setting, I had buttons to do tasks like 'load local file' ,  'save as local file' etc.,
    But when I changed over to new editor setting, this whole row of buttons are missing.
    Can some one please let me know how to get it back but sill use the New Editor.
    Your help will be highly appreciated.
    Tks
    Ram

    Moved elsewhere. "Undo" and others are now just a right-click away, upload/download is somewhere in the "utilities" menu, besides you can just copy/paste from any text file right into the editor.
    Just have a look around.
    Thomas

  • R/3 Screen appearing in SRM Front End

    Dear All,
    We are working on SRM 5.00. I have noticed that at times, we face a problem with the SRM front end.
    On logging in through the web and clicking on any button, the screen takes me to the R/3 screen with the button 'Start SAP Easy Access'. On clicking this button, it goes to the SAP menu just like R/3. And all this happens on the web browser.
    Anyone have any idea why this happens?
    Thanks for your help.
    Good day.
    Johnson

    Hi
    Check your  SRMlogical system is correct and make ensure that your logical system is assigned to your client only via scc4.
    I had this issue in sandboxes.
    BR
    Muthu
    Edited by: Muthuraman Govindasamy on Oct 14, 2008 1:12 PM

  • 3 Must have features for front-end developers

    I'm a front-end developer, so these requests are more or less specific to my job.
    Selecting an entire layer
    Currently: If you do a "ctrl-click" on a layer, it selects the layer. However, if you have filters or effects applied to the layer, it does not select those.
    The Problem: Since I cannot select the filters/effects, I have to zoom in on say a button with a drop shadow. I've been using png's heavily in my sites these days, and I want the drop shadow to be on a transparent background. It's difficult to zoom in and find the end of the drop shadow. You can change the transparency grid colors to help out, but it's still difficult and more importantly tedious and time consuming.
    What I want: I would like the ability to select everything on a layer by doing a "shift-ctrl-click" or something. That way if I make a button with a drop shadow, I can select the button and the filters/effects that are applied to it. This would also give me the correct size of the layer as well, which is helpful information to me during html/css layout.
    Organizing Groups/Layers
    Currently: You can create groups from layers, or create a group then drag the layer into the group.
    The Problem: When a PSD starts to get alot of layer/groups, it gets difficult to organize. If I create a new layer, or duplicate a layer group, my next step is to drag that group or layer into the proper group. My PSDs get very long, especially on homepage comps. I have to scroll up and down in the layers window to hunt for my group. Once I find the group I have to drag my new layers into it. This is annoying and clumsy.
    What I want: I want to simply right-click on any layer, group, selected layers, or linked layers and in the right click menu, there should be a "send to" option. The send to should have a tree of the current groups. Then just choose the group you want and the layers/groups etc move there.
    This will save me alot of time especially since my designers are lazy and don't organize things properly.
    Copying layers/groups to other documents
    Currently: To copy a layer/group from one file to another you have to take your files out of tab mode, then select, click and drag the layers/groups from one document to another.
    The Problem: I really enjoy tab mode, and it seems pointless to have to drag the layers/groups from one file to another. There needs to be more ways to accomplish this.
    What I want: I want to stay in tab mode, select my layers/groups and drag them to the tab I want to copy them to. So if I select a button, I should be able to simply drag it to another open file tab and it should copy those layers/groups to that file. Or another option would be to right click on the selected layers/group and do a have a "copy to" option where you can select another open document to send the layers/groups to.

    You can "send" layers & groups to another document with duplicate to the target document. Simply right-click the source layers in the Layers panel, choose Duplicate Layer...
    and in Destination, select the target document. No un-docking and dragging.

Maybe you are looking for

  • I AM LOOKING FOR A REPLACEMENT CHARGER FOR MY LAPTOP OR A NEW PORT PLUG TO REPAIR MINE

    DO YOU HAVE A REPLACEMENT CHARGER AT A RESONABLE PRICE OR A REPLACEMENT TIP "C"

  • Header and Footer Items in Adobe Muse? Also Menu text being cut off half way.

    How can I make the header and footer items load faster in Adobe Muse? I am hosting with Business Catalyst. Everything else loads almost immediatly on my web page, but my Header and Footer graphic- wood grain picture- take almost 10 seconds to load, a

  • Apple Video Player Replacement

    I just got a PowerMac G3 with a/v in out to replace my Quadra 840av. The main purpose of this system is to convert S-Video to RBG(VGA). System came with 10.2.8 installed and no System 9 folder. :O So I replaced the noisy HDD and added some more ram.

  • PS CC 14.2: Linked Smart Objects workflow

    I like the idea of the Linked smart objects. Just a question about possible workflow. I work with large layered docs in the 2+GB range. It can get slow, particularly saving and opening. Idea 1) I use textures on seperate layers. Just by lining the PL

  • Regarding Flatfile extraction

    Hi ,can any one tell how to remove escape or extra characteristics  when uploading flat file data  to BW . for example . Attn: Alvin Joseph. When RFG MM are created please default the BATCH status of the following Material groups as follows.  Please