Web-based BEx: How to display a customized message on the variable screen??

Hi All,
I'm now using the web-based BEx. Recently I want to display a customized message (e.g. the usage of the report) on the first page (i.e. the variable entry screen) of the query. Is it possible?
Thanks.
BR,
M. Ng

Hi marco,
      Check here. itmay help you.
Custom Messages WAD
Thanks,
Vijay.

Similar Messages

  • How to display a tray message when the program is just minimized to tray?

    hello there
    i made my program is minimized to tray when pressing the standard close button using the new features of Java SE 6 system tray
    but i want to display a tray message when the program is just minimized to tray(when pressing the standard close button)
    like in MSN Messenger to alarm the user that the progam is still running here,any ideas?
    i tried
    WindowAdapter actionListener2 = new  WindowAdapter()
                    public void windowClosing(WindowEvent e2) {
                    try{
    Thread.sleep(1);
      trayIcon.displayMessage("Take Care !",
                    "JShutdown Timer Is In Progress Here.",
                    TrayIcon.MessageType.WARNING);
           catch(InterruptedException un){}
                };isn't that right?
    any one could help?

    Try to debug your code first with simple System.out.println statements to see if your method from adapter class WindowAdapter is called at all, I don't understand you fully and I don't understand you code but you can simply add WindowListener to the thing you are closing (like JFrame) with
    this.addWindowListener(new WindowAdapter(){
                public void windowClosing(WindowEvent e){
                    //to do - when JFrame is closing!
            });The "this" is the reference to your Window/Frame, inside the overriden method you can invoke the operations on the system tray instance, like display message etc.
    Hope this helps!

  • Can you turn off the display of txt message on the locked screen?

    Can you turn off the display of a txt message on the locked screen?

    Settings > Notifications > Messages > Notification Center > OFF.

  • How to display all validator messages at the same time?

    Hi Guys,
    I have a form with validators attached to a couple of my input boxes. I tried to write validators which are reusable in other parts of my app ie. social security number check etc. I also then customized the messages and it all works fine.
    But when I submit the form it displays the messages one at a time, in other words every validator is performed and if there was an error the form is rendered. I believe this is how it should behave and that's fine.
    But what if I want all validators to be performed when I submit the form?Then all messages are displayed at the top of the page and the user can make all his changes and try again. This makes more sense to me.
    So my question is whether there is a way to force the page to perform all validators when the page is submitted and then display all error messages in a h:messages tag?
    Cheers and thanks alot
    p.s. i know about and use the hidden input field validator hack which does all validations, but if I do it that way I duplicate the code which does the social security check for all applicable forms.

    Strange, I was under the impression that all validators were run by default. In my JSF apps, all the validators run and output their errors without any special confguration to make this happen.
    I wonder why yours are just running one at a time? Could you show some of your JSP code, and the hidden field validator code?
    CowKing

  • How to display a confirmation message to the second stage approver.

    Hi,
    I am working on an application which involves 2 stages of serial approvals. After the first stage approval, the request is forwarded to the second stage. When the second stage approver approves the request, the workflow proceeds with the user creation. I would like to let the second stage approver know about the status of user creation after he clicks the approve button. It can be just a simple message saying that the user creation has been successful or unsuccessful.
    My question is how is it possible to show this confirmation message to the second stage approver after the user creation process?
    I tried to use manual action. But it is not working(probably because the owner of the workflow is different from the second stage approver). Is there any other way to implement this?
    thanks,
    manoj.

    It is really simple to implement, you have to just write another manual action to second supervisor after user creation and pass the result to manual action.
    Hoping you are tried to create simple user with out assigning so many resources otherwise it will take time to load.
    Please let me know if you face any issue to implement.

  • How to display a popup message in query (through process chain)

    Hi Gurus,
    I need your help.
    I have an input query that triggers an event (through a button) and runs a process chain.
    I would like to show a popup message to inform the user when the process chain is over.
    Using function modules I've been able to show popup messages in the workbench, but I want to display this message directly in Bex Analyzer 7.0.
    Thanks
    Gabbo

    Hi,
    I'm also looking for a solution to display a custom message in the Bex Analyser at logon.
    Using function module in the logon user-exit works but only when loggin to the workbench.
    I don't want to use SM02 (which works in both cases) because I need to display a variable message depending on the user.
    If someone has an idea, I'll really appreciate.
    Best regards and happy New Year to all of you.

  • How to display an error message after validation in Formatted Search?

    Hi SBO experts,
    if an error is detected on validation in a Formatted Search, how to display an error message to the user entering the data?
    Thanks & Regards,
    Raghu Iyer

    i created a formatted search query & attached it to the field 'Quantity' at Line Item level in Sales Order screen. just for testing purpose, i eneterd the following code lines in the query validating 'Quantity'
    if $[$38.11.0] > 50
    begin
    select @error = 1
    select @error_message = 'Vendor code cannot begin to X sign.'
    end
    the system throws the error : Internal error (8180) occurred [Message 131-183]
    actually, i need to display an error message to the user if Quantity is not in multiples of the OITM.SalFactor2
    if $[$38.11.0] % (SELECT T0.[SalFactor2] FROM OITM T0 WHERE T0.[ItemCode]  = $[$38.1.0]) > 0
    begin
    select @error = 1
    select @error_message = 'Error in Quantity.'
    end
    but, this expression to get the remainder itself seems to have some error
    $[$38.11.0] % (SELECT T0.[SalFactor2] FROM OITM T0 WHERE T0.[ItemCode]  = $[$38.1.0])
    i guess, % operator is used for modulo (to find the remainder of one number divided by another.) ? am i right ?
    Regards,
    Raghu Iyer

  • How to display an error message in maintenace view

    Hi,
    I have following requirement.
    I have a table. In the table, there is a field named REPORT which keeps an executable report name. When adding an entry i need to fill the field with an report name, which should exist in the system. The report name should not be include objects.
    Then I use search help HELP_TRDIR with import parameter SUBC = 1.  I also create a maintenance view for the table.
    Then my question is how to display a warning message if the report I input in REPORT field doesn't exist in the system. If I need to modify the generated objects of the maintenance view, how to do it.
    The reason i don't use foreign key is that it seems filter functionality is not availabe in the case with import parameter SUBC = 1.
    Thanks in advance,
    Best Regards, Johnney.

    Hi,
    You need to add your validation in the table maintenance events:
    Use the event : 01 - Before saving data to the databse table... for this purpose
    1) Go to Menu-> Utilities->Table mainatenace generator
    2) On the table maintenance screen->Menu->Enviroement-> Modifications->Events
    3) select an event 01 and give some subroutine/form name.
    4) Add your validation in the form(Note this form should be in the Func Group of the table maintanance genetaor)
    Regarrds
    Shiva

  • How to display an error message on screen?

    Hi experts,
    In screen painter, how to display an error message in the message area just below the screen?
    Thanks!

    hi wuyia,.
    Write like this;
    Message 'Process completed Successfuly' TYPE 'S'.
    Message 'Want to Overwrite Value' TYPE 'W'.
    Message 'Press enter to continue' TYPE 'I'.
    Message 'Invalid Input' TYPE 'E'.
    S - Success
    W - Warning
    I - Information
    E - Error
    You can adjust your GUI option to display the message in a Popup or in the status bar.
    Regards
    Karthik D

  • How can i add Custom fields into the

    Dear Experts
    We have Ecc6.0 system,
    How can i add Custom fields into the Infotype Screen(PA30),i heard that we do it by PM01 Tcode.
    But in PM01 i am unable to find the enhance infotype tab.
    How can i do it ....pls help.....
    Regards
    Sajid

    Hi,
    Do it thru the third tab : Single Screen.
    There write down the infotype number (e.g. 0022) and say generate objects.
    Regards,
    Dilek

  • Skipping of the variable screen in Web report

    Hi,
    I have created my queries in Bex. When I run the reports from my favorites in the SAP GUI, the reports are displayed directly without bringing up the variable screen in the web browser.
    Currently on BI7. Any ideas how to fix the issue.
    Thanks
    Demetrius

    Queries in Web are run using the default web template (which is generally 0analysis_pattern) - you can check the default WT for your system in tcode SPRO. In the properties of the web template, you have an option 'Display Variable Screen' - you can turn it on. As such, I think your query has no 'mandatory' variables, otherwise the var entry screen should have appeared.
    You might want to search for some threads on 0analysis_pattern to get some more info about it.

  • How do you change the variable screen on Portal to show Key?

    Hi All,
    I have a report on our Portal.  In the variable screen, the users are asked to optionally enter Cost Centre.  When they choose to select values (pressing the button on the right) the singles values which are shown are 'Text' only.  I know in analyser, the user can switch by selecting the spanner icon - 'Display Key/Text'
    How do you change to Key within the variable screen on the portal?
    Many Thanks
    Michelle

    Thank you for your reply Amrita,
    The display in the query had been set to Text & Key as follows
    Properties of Cost Centre -> Display Tab -> Value Display Section -> Display As 'Text and Key', Text View 'Standard' and Use Characteristic Setting 'Unticked'
    Is there another section that I should be amending to ensure the 'Key' also appears in the variable screen?
    Many Thanks,
    Michelle

  • Custom messages to the "Details" Option in the iView

    Hi
    Can any one let me know
    How  we can  add custom messages to the "Details" Option in the iView
    Any Help will be appreciated
    Regards,
    Prema

    Nothing at all.
    It still works the same way for me as it always did. It might help if you specified which email provider you use - for instance I believe that Gmail has its own way of deleting/archiving emails so you need to be more specific than ..."what happened to the trash option in the new iOS mail".

  • How to display a user message on WEBI Home page ?

    Hi all,
    How to display a user message on WEBI Home page ?
    like when ever the data gets scheduled at etl side i want to display a message a message on info view home page "new data is uploading" is this is possible to do ?

    Unfortunately this is not possible to do "out of the box".  There aren't any pre-configured options that will let you do this.  You're only real option is to try and modify the infoview source code yourself to do this.
    Regards,
    Shawn

  • PPOME - org. unit - how to display a custom field in Basic Tab

    Hi gurus,
    I would like to show in detail box - basic info tab, a field added to IT P1000, to gather additional info's about the selected organizational unit.
    Can anybody tell me where to start? I goggled a lot but I didn't find any useful information.
    Thanks in Advance
    Paolo

    I have not added the Custom filed in the main screen and added in the Additional data B screen. So closing the message.

Maybe you are looking for

  • Keyboard coffee spill - repair.

    Spilt a full mug of hot sweet coffee over my Apple wireless keyboard, Thought well it's banjaxed anyway so took it to the sink and rinsed it and shook it several times under warm tap. Let it drain then put it on a warm radiator overnight and its like

  • IMAPS Errors

    Hi Guys, Info: Messaging Server 7u3 (7.3-11.01) Comms DSsetup 6.4 (6.4-5.05) Convergence 1u3 (1.0-10.01) someone today pointed to me that he frequently has errors when sending a message, the error is: "Message sent but save copy failed" he is using T

  • IRR PDF  Printing

    Hi, I have a report in IRR. When I download report in pdf, column text wraps. we have FOP installed. Please Help Thanks K

  • Unable to read mime attachments in mail digests

    can anyone tell me how i can read these attachments they usually they consists of jpegs.

  • How to remove a calendar from iphone 3gs?

    I am not using mobile me. I have been syncing my iphone calendar with outlook via an m.google.com sync. I thought that i would be able to sync 2 different calendars so i created a second one. Since I cannot have 2 calendars (i can live with this) I'd