POP UP window or screen to enter badge id ( it should work like Key board)

Hi ,
We have requirement that client have touchscreen user interface desktops in plant where production process goes on.
I am developing a dynpro  program for PP operations. This program will be used in touch screen devices.  Before the operators starts his work , he has to enter his Badge ID (Numbers only). (Note : They don't use Key board for these devices)for that i need to create a pop up window as F4 help. I am looking whether SAP already has any kind of pop-up window which can solve my problem. Please let me know whether any key board screen/window available?..
Thanks in advance.
-Siva

Try :
*fields-tabname   = 'TRVOR'. " table name
*fields-fieldname = 'SUMSO'.  "field name which the user might enter..
*APPEND fields.
*CALL FUNCTION 'POPUP_GET_VALUES'
*  EXPORTING
*   no_value_check        = 'X'
*    popup_title           = 'Jay'
**   START_COLUMN          = '5'
**   START_ROW             = '5'
* IMPORTING
*   returncode            = l_returncode
*  TABLES
*    fields                = fields
* EXCEPTIONS
*   error_in_fields       = 1
*   OTHERS                = 2 .
*CALL FUNCTION 'COPO_POPUP_TO_DISPLAY_TEXTLIST'
*  EXPORTING
*    task       = 'DECIDE'
*    titel      = 'TEST POPUP '
*  IMPORTING
*    function   = sy-ucomm
*  TABLES
*    text_table = it_data.
[ Check this nice WIKI by Sandra|http://wiki.sdn.sap.com/wiki/x/bIChBg]
Edited by: J@Y on Oct 5, 2009 9:48 PM

Similar Messages

  • POP UP Window on screen - How

    How to invoke a Pop up window on screens.

    hi,
    try this.
    data : WF_RES type c.
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
                EXPORTING
                 DEFAULTOPTION        = 'N'
              TEXTLINE1            = 'Do you want to delete the record?'
    *           TEXTLINE2            = ' '
                  TITEL                = 'Delete Zone'
    *           START_COLUMN         = 25
    *           START_ROW            = 6
    *           CANCEL_DISPLAY       = 'X'
               IMPORTING
                 ANSWER               = WF_RES.
    if wf_res = 'J'.
    user selected 'YES'.
    else.
    user selected 'NO'.
    endif.
    Rgds
    anver

  • Pop up window says need to upgrade to newer version to work on document from the cloud. go to app store and it says already installed...help

    pop up window says need to upgrade to newer version to work on document from the cloud. go to app store and it says already installed...help. Am trying to work on document from office computer at home on laptop.
    This is what the pop up says:
    You need a newer version of Numbers to open this spreadsheet.
    You can download the latest version of Numbers from the Mac App Store.
    Thanks,

    WS,
    At first, it can be difficult to determine which version of Numbers you are using. The user interfaces are different, but if you are new to the apps you may think you are using the new version when if fact you have launched the older version. Make sure you are using Version 3.x. Then you won't get the message that you need a newer version.
    Use Spotlight to launch Numbers. After typing Numbers into the search field, pick the result that says "Numbers -- Applications".
    Jerry

  • Mackeeper popped up on my screen.  Is this something I should use for my 5 year ould MacBook?

    MacKeeper popped up on my screen.  Is this something I should used for my 5 year ols MacBook?

    See below.
    https://discussions.apple.com/docs/DOC-3036

  • After sharing itunes with MP3 rocket I get a pop up window telling me that my Apple Push is not working at present. Do I need apple push?Everything is working well for me with itunes and Rocket. Also what is Apple push.

    I have been sharing itunes with MP3 rocket but I still purchase many songs and books from itunes normally.I have not had any trouble. Just recently a pop up window appears after I have been sharing and it tells me that my Apple Push is not working corectly and windows is looking for the problem. What is Apple Push and do I need it. as everything seems to be working well for me.Can you please advise me.

    Has any had you try a reset yet? Sometimes the WiFi & Cellular anntennas get wacky.
    Hold Sleep/Wak & Home buttons until the screen goes dark and you see the Apple logo

  • I keep having a pop up on my screen to enter my ID password.

    Even when i don't try to buy,update Etc.. It just keeps popping up. I turned off my phone for 2 days and it still continued anyone have any ideas?

    It is a scam. Do not install MacKeeper or any other "Clean-up" software. To check for the popup issue: 
    Please review the options below to determine which method is best to remove the Adware installed on your computer.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071
    http://www.thesafemac.com/tech-support-scam-pop-ups/

  • How to display check box in the search help restriction pop-up window

    Hi Experts,
    I have created one searc help with dialog value restrictions. Search help contains 4 fields.
    Out of which one field has length one character.
    As oon as user press on F4 on particular field, it will display pop-up window with restrictions and displayed 4 fields.
    I would like to show that field ( one character length field) as check box in search help restrictions pop-up window.
    Pls help me ,... How can we acheive this..
    Thanks
    Raghu

    Ur Exact Requirement,
    Types : begin of itab,
         fields type c,
         Check type c,(For Check Box)
         end of itab.
    data it_tab type standard table of itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_input-low.(If it is in select-options)
      CLEAR  v_input.
      GET CURSOR FIELD s_input VALUE  v_input.
      CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE'
        EXPORTING
          i_input  = v_input
          i_langu  = sy-langu
        IMPORTING
          e_output = v_input.
      CLEAR s_input-low.
      IF v_input NE '' .
        IF v_input NE '?'..
          v_input1-sign = 'I'.
          v_input1-option = 'CP'.
          v_input1-low = v_input.
          APPEND v_input1.
        ENDIF.
      ENDIF.
    SELECT DISTINCT   Field
                      FROM Table
                      INTO TABLE it_tab
                      WHERE field IN v_input.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
                i_title                 = 'Select Colors'
               i_selection             = 'X'
                i_zebra                 = 'X'
                i_screen_start_column   = 5
                i_screen_start_line     = 5
                i_screen_end_column     = 30
                i_screen_end_line       = 12
                i_checkbox_fieldname    = 'CHECK'
                i_tabname               = 'IT_TAB'
                i_scroll_to_sel_line    = 'X'
                it_fieldcat             = it_fieldcat1
                i_callback_program      = sy-repid
                i_callback_user_command = 'USER_COMMAND1'
              IMPORTING
                es_selfield             = selfield
              TABLES
                t_outtab                = it_tab
              EXCEPTIONS
                program_error           = 1.
    Cheers,
    Naveen

  • Opening Centered Pop-up window with Dynamic URL

    I got some code for a centered pop-up window in Flash from a
    Kirupa tutorial. It works well, except that you are supposed to put
    an actual URL for the 'address' variable. I'm using a dynamic URL
    (+url[p]+) for my URL. When I put address = "'+url[p]'"; for the
    address, it doesn't work.
    Here's the code for the button:
    on (release) {
    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "'+url[p]+'";
    target_winName = "FlashDevelopment";
    width = 700;
    height = 400;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 1;
    menubar = 0;
    scrollbars = 1;
    resizable = 1;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height,
    toolbar, location, directories, status, menubar, scrollbars,
    resizable);
    And here's the function:
    // New Window Function
    _root.openWinCentre = function (url, winName, w, h, toolbar,
    location, directories, status, menubar, scrollbars, resizable) {
    getURL ("javascript:var myWin; if(!myWin ||
    myWin.closed){myWin = window.open('" + url + "','" + winName +
    "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar +
    ",location=" + location + ",directories=" + directories +
    ",status=" + status + ",menubar=" + menubar + ",scrollbars=" +
    scrollbars + ",resizable=" + resizable +
    ",top='+((screen.height/2)-(" + h/2 +
    "))+',left='+((screen.width/2)-(" + w/2 + "))+'" +
    "')}else{myWin.focus();};void(0);");
    Any idea why my dynamic url is not being recognized?

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • POP UP window resize in web dynpro ABAP

    Hi All,
    I have created a pop up window by using method create_window of interface  if_wd_window . The pop up window is Resizable by default . If user Resizes the pop up window , Screen is uncooperative . As a solution we decided not to allow Resizable option for pop up window but by default the pop up window is resizable . Please let me know how to disable this default  Resizable option .
    Our SAP system is of version 700 ( SAP_BASIS 700 ) . I checked other system where SAP_BASIS version is 701 , here the pop up window is not resizable by default . Is there any way ( OSS note ) to disable the default Resize option in SAP_BASIS 700 ?
    I tried to adjust the pop up window size by using SET_WINDOW_SIZE but it is not  working in SAP_BASIS 700 .
    Please let me know if there is any solution for this .
    Thanks in advance ,
    Kiran.

    Hi,
    I am not sure if you would be able to solve this with some note (i doubt if it exists of 7.00 ). Try to see once again if_wd_window has any method or attribute which would help you otherwise (I think you have done that already ).
    Why not upgrade to 7.01 ?

  • Unwanted pop up windows

    I had a friend give me a link to watch a hometown hockey game.  Ever since I clicked on the link I have been getting an insane number of pop up windows and screens.  I have the pop up blocker active for my browsers but that still isn't enough.  I've run my activity monitor and run my disk utility with no resolution.  Any advice is greatly appreciated.  Thanks!

    Identify and remove adware
    http://www.thesafemac.com/arg/
        or
    Safemac:   Adware removal tool
    http://www.thesafemac.com/art/

  • Having problems with a pop up window when downloading

    Hi all,
    i developed a site in asp.net,
    everytime i click to download a file on the site, it opens a *blank window* and leaves it open, it only happens with safari, it works fine with the other popular browsers, with the others, it opens the download box directly.
    for safari it still downloads directly but the blank pop up window still stays open.
    im not a pro, but would like to fix this, i would be really greatul if someone could help me for this,
    Thanking you in advance!

    Thank you for your response Carolyn,
    but unfortunately it has more to do with coding compatibility, i put the target to blank as highlighted. it opens the window for all browsers and closes it automatically when the download starts, but with safari it stays open.
    here is the code for the download asp.net function,is there anything which needs to be put up there to be compatible with safari?
    i do hope that it is now clearer,
    thanking you again!
    <table border="0" cellspacing="0" cellpadding="0" style="margin-left:0;">
    <tr>
    <td width="185" height="89" align="center"></td>
    </tr>
    <tr>
    <td height="30" align="center" ><table width="100%" border="0" cellpadding="0" cellspacing="5">
    <tr>
    <td width="38%" align="right" ></td>
    <td width="62%" align="left" class="riqi">Campus</td>
    </tr>
    </table></td>
    </tr>
    </table>
    </td><td></td><td></td><td></td><td></td>
    </tr>
    </table>
    Message was edited by: positivologist

  • Create a pop up windows wth the javacript

    hi there,
    i got problem how to make ur own pop up windows with OK and CANCEL button with javascript inside my jsp page since i got already find it through all the internet and still hard to find it.
    the popup windows should work like this:
    if OK
    move to another page
    else CANCEL
    remain to this page (do nothing)
    anyone could help me with this problem. thanks so much.

    May this can solve your problem...
    if u have already confuse try the cheat one :)
    window.open("your name page of JSP");
    then in the JSP add button and now u can make a way form this button

  • My sims 3 website keeps saying "oops, we are unable to process your request." I already unblocked my pop up windows, how else might i fix this?

    I've been to the apple store for this before, but they just told me to unblock my pop up windows, because they said that my computer was processing it as a pop up window. I did as they said, and it worked. Then all of the sudden, it says it again. I made sure they were still unblocked, and they are. So i don't know what to do about this issue. But without fixing it, i can't update my sims 3 game

    Success!! There truly is a light at the end of the tunnel. Apple support really did come through and I am successfully back into my account. Ready to purchase more music. I followed the instructions, with patience I thought I lost, submitted my problem, someone emailed me back within two days and all is now perfect. Thanks again Apple.
    To all the frustrated users out there, don't lose hope!!!

  • When i type the https URL in my FireFox browser version 3.6 to 5.0, i get login pop up window two times. But in IE browser i get only once. Please tell me why FireFox is showing pop up screen two times to enter my uid/pwd. Thanks!

    We have our company internal application which is protected by SiteMinder. When we type https://appname.domain.com in IE i get popup window asking me to enter uid/pwd and works fine. However same URL when i login in FireFox, i get pop up window two times. So i wonder why FF is asking two times instead of just only once.
    Thanks for your help.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Need to have pop up window in selection screen and capture the user action.

    Hello Friends,
                         I have a requirement, that need to show a pop up window after execution, and to get the action from user using a Push button.
    I create a selection screen and a sub screen as window.
    After user execute from the selection screen, I am popping up this window.
    Window contains some input values to be entered and push button to identify the user action.
    I try to capture the user action using sy-ucomm, but it does not hold any value when user press the button.
    How to overcome this issue.
    Here is the definition of the window.
    Pop Up Window for getting values
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW TITLE title .
    PARAMETER : p_vdate LIKE t9aa01-validfrom,
                p_dcggt LIKE t9aa01-hkont,
                p_dcgst1 LIKE t9aa01-hkont,
                p_dcgst2 LIKE t9aa01-hkont,
                p_na LIKE t9aa01-hkont.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 20.
    SELECTION-SCREEN PUSHBUTTON 2(10) text-001 USER-COMMAND SVE.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF SCREEN 500.
    Cheers,
    Senthil
    Edited by: Senthil on Jan 7, 2008 11:03 AM

    Hi,
    Try using the below code.
           data : w_var type string.
           CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
             EXPORTING
              DEFAULTOPTION        = 'Y'
               textline1            = 'test '
             TEXTLINE2            = ' '
               titel                = 'check'
             START_COLUMN         = 25
             START_ROW            = 6
             CANCEL_DISPLAY       = 'X'
            IMPORTING
              ANSWER               = w_var.
                     if w_var = 'J'.
                     else.
                     endif.
    Comments : J indicates Yes and N indicates No
    Regards,
    Jeswanth

Maybe you are looking for