Variable Screen Execute Button

Hi,
  Is there any possibility to associate Keyboard key 'ENTER' or any key to the Exectute button of the Variable Screen?
  Is that possible to do with Javascript or something?
  Any Ideas?
Thank you
AP

Hi AP,
I guess you are talking about the variable screen for web reports...I have been on the lookout to associate a keyboard key to the "Enter" button too. But it seems that this is just a table cell designed with CSS to look alike a button...
One suggested work around is as follows:
Use a "normal" dropdown-box for variable-input -> https://www.sdn.sap.com/irj/.../How%20to%20Use%20a%20Dropdown%20Box%20to%20Set%20Variable%20Values.pdf
Build a JavaScript-Function in the onSelect-Handler of the dropdown-box and call the WebTemplate you want by SAPBWOpenURL (....)
So by clicking a var-value the user jumps directly to the WebTemplate. If you have more than 1 var, insert the function in the last dropdown-box.
However this solution is not viable for a standard web template and hence I have not tried it out.

Similar Messages

  • Capturing the values of screen elements on click of execute button

    Hello folks,
    Is there a way to capture the values entered in the screen on click of the execute button?
    What I want to do is, I have a selection screen where-in a user can fill the input fields (parameters and select-options). Now when the user clicks on the execute button, the values of all the screen elements (no matter if they are filled or empty) should be stored in variable, so that I can use these values again when I am calling this program from another program.
    I want to do something similar to saving a variant, but this save should happen on click of Execute button and user need not require to explicitly save these values as variant.
    Hope I am clear enough to put my query in front of you all.
    It would be a great thing if you could help me.
    Need your help.
    Thanks in advance.

    Hi,
    You need something like this
    REPORT A.
    TABLES: sflight.
    PARAMETERS: pa_scarr   TYPE sflight-carrid.
    SELECT-OPTIONS so_conn FOR  sflight-connid.
    DATA: BEGIN OF it_selscr_values OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END OF it_selscr_values.
    START-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_selscr_values.  "here you have all parameters' values from selection screen
    "later in some other program you can use this table to call report A filling its selection screen with these default values like
    SUBMIT a WITH SELECTION-TABLE it_selscr_values.
    Regards
    Marcin

  • Problem using transfer button in VARIABLE SCREEN

    We are using BEX web designer and using bw query  designing the template...and the template after genreation shows the variable screen but the trnsfer button is not functioning properly it does not show the value in the text box.
    I have also hard coded the "&VARIABLE_SCREEN=X" in the url, but still the same problem is occuring.
    can anyone tel what is the problem like

    This is code which iam writing can u now pls tel me why the problem is reocuuring ......by the way the problem is as sson we click the pop window get opened its hsow the repective firlds also but as sson as we select the check box and click transfer the pop closes but the text box still is empty .
    code segment
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value="Z_TEMPLATE_02"/>
             <param name="VARIABLE_SCREEN" value="X"/>
             <param name="MENU_DRILL_UP" value="X"/>
             <param name="USE_PAGE_WRAPPER" value="PING"/>
             TEMPLATE PROPERTIES :
    </object>

  • Variable screen doesnot appear when query is executed

    Hi All,
    We recently upgraded the BW 3.1 to 2004s(BI 7.0).
    When i am executing the query, the selection screen is not popping up.
    Instead the query is executing with default selection.
    I am facing problem when there are any mandatory fields.
    I appreciate your help,
    Thanks,
    Joseph.

    Hi,
    the variable is checked 'ready for input'
    it is used in a formula
    actually it is appearing for some users with BI_ALL auth,
    but were trying for some test users the variable screen is not appearing.
    even 'change variable value' to remove any personalization is not working from test user.
    and for BI_ALL users at change variable screen if we remove personilization, the following error is comming
    An exception with the type CX_SY_PROGRAM_NOT_FOUND occurred, but was neit     
    Program GP3T375QSSYZZ29YGQVGFUV7OO2 does not exist
    Thanks,
    Joseph

  • Can the EXECUTE button on a selection screen suppressed?

    Can we suppress the EXECUTE button on the selection screen?

    Hi
    The flowlogic Keyword at EXIT-COMMAND is a special addition to the MODULE statement in the Flow Logic .AT EXIT-COMMAND  you can call a module before the system executes the automatic fields checks.
    u2018SUPPRESS DIALOGu2019 command allows to perform screen processing u201Cin the backgroundu201D. Suppresing screens is useful when we are branching to list-mode from a transaction dialog step.

  • How to disable execute button in selection-screen

    Hi,
    I have already placed a execute button in selection screen but now I want to diable
         1. All std  buttons including F8
         2.   but excluding F1
    regards
    paul

    Hi
    Check this FM : RS_SET_SELSCREEN_STATUS
    sample code :
    DATA: BEGIN OF i_exc OCCURS 0,
           code LIKE sy-ucomm,
       END OF i_exc.
      DATA: ws_repid like sy-repid.
      CLEAR i_exc.
      i_exc-code = 'ONLI'.
      APPEND i_exc.
      MOVE: sy-repid TO ws_repid .
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
        EXPORTING
          p_status  = ' '
          p_program = ws_repid
        TABLES
          p_exclude = i_exc.
    Laxman
    Message was edited by: Laxmana Kumar

  • Disable execute button on selection screen

    Hi Experts,
    I need to disable execute button on the selection screento restrict program to run in foreground and add another buttn which schedules a job in background. Kindly help.
    Thanks in advance.

    TABLES: sscrfields.
    include rsdbc1xx.
    INITIALIZATION .
    sscrfields-functxt_01 = 'Button1'.
    SELECTION-SCREEN: FUNCTION KEY 1.
    AT SELECTION-SCREEN OUTPUT.
      append 'ONLI' to current_scr-excl.
    AT SELECTION-SCREEN.
      CASE sy-ucomm.
      WHEN 'FC01'.
    "* Here you write your logic for background job
      ENDCASE.
    I have the same problem. This works like a charm!
    Thanks Dzed Maroz.
    Edited by: Samanta Limbrada on Mar 30, 2011 6:29 AM

  • Hiding the execute button of the standard screen

    Hi,
    I want to hide & disable the standard execute button which appears on the selection-screen on execution of a report.
    Kindly let me know of how to go about it.
    Thanks in advance.
    Regards,
    Malathi V.

    Here is how you can do it.  This way you don't have to create your own gui status.
    report zrich_0002 .
    * Used to limit user commands on selection-screen
    include rsdbc1xx.
    * Selection Screen
    parameters: p_check type c.
    * Events
    at selection-screen output.
      append 'ONLI' to current_scr-excl.   "Execute
      append 'PRIN' to current_scr-excl.   "Execute and Print
      append 'SJOB' to current_scr-excl.   "Execute in Background
    Regards,
    Rich Heilman

  • No variable Screen when accessing web reports via "New analysis" button

    Hello !
    I need some help or explanation :
    I'm on a web report (Java) and i want to access another report.
    I click on the "new analysis" button on the top, then i open the "roles" folder and select a report.
    The new report start but without the prompt screen with the variable selection.
    I also saw that the URL shown on Internet explorer is the old one (not the new querie URL)
    This is the same problem with all my queries when accessing them via the "new analysis" menu.
    Why is this screen squeezed ?
    I need to have these variable entries !
    I've tried some modification on 0ANALYSIS_PATTERN .... (porperties / variable) = no effect
    Thanks for your help.
    Tech info :
    Web template : 0ANALYSIS_PATTERN.
    SAP NetWeaver BI 7.0 SP15
    SAPGUI 710 Final Release SP7

    Hello Karim,
    I've exactly the same problem ! I've changed WT properties to ON for Variable Screen, Reset Variables etc... but it has no effect...
    Did you find a solution ? If yes, can you share it.
    Thanks a lot
    AJ
    Web template : 0ANALYSIS_PATTERN.
    SAP NetWeaver BI 7.0 SP18

  • Variable Screen in Web Application Designer (disappers after execute click)

    Hi,
    I have a Bex query in WAD, one of the variables is set to mandatory in Bex Query. i have also checked the "Force Variable Screen Display" option in web template. Initially when i call this Web template URL the varible screen is displayed and if i do not enter any value for the mandatory variable i get an error message till here everything works fine. 
    But when i provide the variable values and click on execute the variable screen disappears and never comes back again, how can fix this variable screen, so that it should be always visible even if i navigate between pages. I have WAD 3.5.
    Thanks
    Akila.R

    What does that mean. could you please give me more details on the same or any links that is helpful.
    Thanks
    Akila.R

  • Variable screen button/link

    Hi
    I want to add a simple "hyperlink" in my WAD, calling up the variable screen again (instead of right clicking and going via enhanced menu to "variables entry".
    Sounds simple, but what it the html code for that ?
    Regards
    Torben

    Hi Deepak:
    Thanks for your suggestion.
    I have also implemented that to fill in the value for one variable. However, if the variable has been filled, the variable screen are not shown.
    Then, it is just a one shot run.
    I have also tested that trough the context menu option, but the works the same. If the variable is empty, the variable screen comes up. If the variable has been filled, the current screen are just refreshed.
    <b>Could you/someone tell me what is going on?</b>
    Best regard
    Waldemar

  • Variable screen issue in BEX !!

    Hi Gurus,
    Problem Description - When any query is opened through u2018Web BEx Analyzeru2019->u2019New Analysisu2019 button in portal , variable screen is shown and report is getting executed. Again, if we open same query from u2018Web BEx Analyzeru2019->u2019New Analysisu2019 (Donu2019t close the session use same session), Variable screen will NOT be shown at Second time. Directly, Query will be executed with previous Variable values & result will be shown.
    I have modified following parameters but it did not take any effect to the variable screen problem.
    VARIABLE_SCREEN, MELT_VARIABLES, VARIABLES_CLEAR, USE_PERSONALIZATION
    100% points are assigned
    kindly do the needy
    Sherwin
    Edited by: sherwin paul on Jun 24, 2008 1:13 PM

    Paul,
    I have experienced similar issues with the behaviour of variable selection screens e.g. variable screen appears in the Bex Excel version but not the web version. One of our consultants has suggested that the behaviour depends on whether the variables are optional or mandatory, something I've yet to confirm.
    Regards,
    PP

  • Variable Screen Does Not Display in Bex Web Analyzer after first time

    We recently upgraded from BW 3.1 to BW 7.0 (without upgrading specifically to 3.5).  We are having a problem with our Web Bex Analyzer not showing the variable screen although the variable screen is displayed successfully when running the same query from the Bex Analyzer.  Based on feedback from other posts regarding similar topics, we modified the 0analysis_pattern template to ensure that Display Variable Screen was checked on.  We are finding that when we open the Web Bex Analyzer and do a New Analysis, the first query we try to run will always have the variable screen displayed successfully.  Any susbsequent queries we try to run by clicking on New Analysis in that same open window will not show the variable screen and will start executing open ended.  This is occurring regardless of whether the query has mandatory or optional variables and we have confirmed that there is no personalization set for the variables being used.  We have tried it with several different queries and the results are consistent.  The first query you run shows the variable screen successfully and any queries run after that do not.  Any help in resolving this would be greatly appreciated as we have exhausted our resources researching and troubleshooting this problem.

    We did open an OSS note and heard back from SAP.  We made the recommended setting, see their response below, but as they stated, it will only show variable screens for queries that have at least one mandatory variable entry after the first query is opened. 
    Response from SAP: 
    Please check if the following setting is made within your template --
    In the 'Standard Actions' of the Web Template, do you have the setting
    'Action Before First Display' set to OPEN_VARIABLE_DIALOG
    The behaviour of the variable screen is different if you use mandatory
    variables and optional variables. If you have only optional variables,
    the Display Variable does not force the variable screen.
    Also, using the parameter VARIABLE_SCREEN=X only influences the
    web application at STARTUP. This would not come into affect when you
    use the 'New Analysis' button. This button resets the dataprovider so
    this would not affect the variable screen and would not redisplay the
    variable screen as you require.

  • How to change the size of Bex Variable screen?.

    Hi Experts,
    Can we able to change the size/font of the Bex query variable screen?. I have a requirement where lot of variables used but query variable screen is not showing up all the variables including the 'execute,cancel, check' menu buttons.
    Is there any way, I can customize the screen?.
    Your fast response help is appreciated.
    Thanks in advance
    Viswa

    Dear friends,
    Problem solved. Actually, there is an inner scroll bar to fix this problem.

  • Issue with Variable screen

    Hi,
    When I execute the webtemplate with cetain selection values, the out put looks good. When I go back and change the values in selection, the output is still showing the previous results.
    The variable screen is not refreshing in webtemplate.
    Please let me know if any solution for this....
    Thanks in advance,
    Murthy.

    Hi Rama,
    Cache memory stores previous result so you need to logout and then again run the WAD.
    Do the following 2 things and see:
    1. Empty your internet explorer cache, i.e. delete all temporary files from IE.
    2. Go into BI, execue RSRT1, select the cache monitor button. In there there is another button for main memory, click that. Search for the query in question and delete the cache from there.
    Close you Internet explorer and open the query again, it should work.
    Cheers,
    Uday.

Maybe you are looking for

  • UCMA 4 and back to backing a file transfer request

    OK, I know that file transfer isn't technically supported on UCMA 4.0, but I wanted to take another look at it and see whether there was a way to b2b a file transfer request. After all, there's no reason that it shouldn't work if the messaging is cor

  • Cannot login to .me or .mac accounts on ichat

    Hi, I am using OS X mountain lion 10.7.5. When I recently updated my software, it asked me to install ichat (which I did). My problem is that I cannot login to either .me or .mac accounts to see my contacts. I use the same username and password as th

  • Adobe AIR Installation Failure on Fedora 10 64-bit: "cannot enable executable stack"

    Hi: I followed instructions for installing Adobe AIR 1.5 on 64-bit Fedora 10 at <http://kb2.adobe.com/cps/408/kb408084.html#Installing_AIR_1.5_on_64-bit_Fedora_10>. However, upon completing yum installs, and trying to install AIR after making it exec

  • Adding Extreme to my existing network

    I have an existing 802.11g network on a Linksys router. I have to leave this router as is because my wife's workplace bought it and set it up for VPN. I am not experienced enough to redo everything on a new router so I am just going to leave it alone

  • Auditing_in_ebiz_r12

    Hi, I need to enable auditing in my APPS database.Myebiz version is r12.1.3 with the 11.2.0.3 database integrated with the application. Recently the data from the base table was dropped in my instance. So i decided to enable auditing in my database w