Function keys on the screen

hi folks,
I have a question, I created a new function key called 'display' for the screen using the menu painter used that in the program and executed the program successfully in DEV environment. when I moved the changes (moved all) to QAS the function key 'display' did not show up. I checked to see that the function key item got moved using the menu painter in QAS. The item is there in QAS amd checked for the changes in the program using version management. no changes How come the function key is missing on the screen in QAS?
Am I missing anything here?
Thanks,
SK

If you activate your program after you've made your screen changes, sometimes you lose those screen changes.  You may need to go back in to the screen and reactivate, then transport it.  If necessary, make a small change (like adding a blank line somewhere in the flow logic of the screen) in order to get the screen changes into a transport.  I hope this helps.
- April King

Similar Messages

  • Disabling All The Function Keys Except The Del_Rec

    Greetings,
    First, I Want To Ask How Can I Disable All The Function Keys In The Forms6i Except The Del_Rec Function Key .
    Second, I Want To Ask How Can I Make My Application To Fill The Screen When Executed By The User ( Maximizing My Form ) .
    Thnx .

    The KEY-OTHERS trigger might help you to solve the first problem.

  • Using FUnction keys on selection screen

    Hi All,
    I want to submit a report if the user presses any assigned function key when he is on the selection screen of a t-code.
    how can i capture the commands of function key on selection screen.

    hi
    try below code
    TABLES sscrfields.
    INITIALIZATION.
    PARAMETERS : p_1 TYPE c.
    SELECTION-SCREEN : FUNCTION KEY 1.
    SSCRFIELDS-FUNCTXT_01 = 'Report'.
    SELECTION-SCREEN : FUNCTION KEY 2.
    SSCRFIELDS-FUNCTXT_02 = 'Report2'.
    AT SELECTION-SCREEN.
      IF sscrfields-ucomm = 'FC01'.
        SUBMIT ZXXX1 VIA SELECTION-SCREEN AND RETURN.
      ENDIF.
      IF sscrfields-ucomm = 'FC01'.
        SUBMIT ZXXX2 VIA SELECTION-SCREEN AND RETURN.
      ENDIF.

  • Why can't tool shortcuts contain either function keys or the Cmd or Opt modifiers? I can do this in InDesign and want to use the same shortcuts in Illustrator.

    For example, I started using F4 for the Selection tool, because typing "v" for the most basic tool is risky when working with type. I was updating my shortcuts in Illustrator to mirror my InDesign shortcuts and got shut down on the function key as shortcut. "Tool shortcuts cannot contain either function keys or the Cmd or Opt modifiers."

    What is the add-on that's keeping you from installing Firefox 14?
    A problem was noticed last week with certain ways of managing Facebook cookies. You can check these threads and see whether that issue is relevant to you:
    * [https://support.mozilla.org/en-US/questions/934784 Certain websites do not work properly in normal browsing mode but work in private browsing perfectly.]
    * [https://support.mozilla.org/en-US/questions/934791 facebook post area when clicked gives https://www.facebook.com/ajax/metacomposer/attachment/status/status.php?targetid=695296250&xhpc=composerTourStart]

  • Function Keys on Selection-Screen

    Hi,
    I used function keys in one of my report program.
    Now, if some check box is checked in the customization that function should be displayed, otherwise shouldnot be displayed.
    I made use of "loop at screen" to make that application button invisible but i don't know the name of the button. I have given the name as same given while creating the button using "SSCRFIELDS".
    Is there anyy other way to disable the button??
    Regards,
    Yadesh

    Hi,
    Your requirement can be solved with two approaches:
    1) simpler one is to use different GUI statuses depending on checkbox state
    AT SELECTION-SCREEN OUTPUT.
    refresh it_exclude.
    if checkbox = 'X'.
      append 'BUTTON_FCODE'.
    endif.
    "you in turn swith on/off your desired button
    CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
        EXPORTING
          p_status  = 'GUI_STATUS'
          p_program = sy-repid
        TABLES
          p_exclude = it_exclude.
    2) as SELECTION-SCREEN FUNCTION KEY n statement cannot be processed within PAI/PBO block you cannot set it dynamically like
    AT SELECTION-SCREEN.
    IF check = 'X' .
    SELECTION-SCREEN FUNCTION KEY n.
    ELSE.
    "no selection button here
    ENDIF.
    Moreover you cannot change standard application toolbar of selection screen within Loop at screen statement (this will only affect selection screen parameters not toolbar).
    The only way here is dynamically generate report's code. When checkbox is check what you do is
    data: it_code type table of char72 with header line.
    READ REPORT sy-repid INTO it_code.
    Then looping through the code table you either remove entry having SELECTION-SCREEN FUNCTION KEY n. or add it to the table.
    Finally you switch reports code with
    INSERT REPORT sy-repid FROM it_code.
    And execute new one with
    SUBMIT (sy-repid).
    This will ensure that new SELECTION-SCREEN parameters (or function keys in your case can be switched and report will be executed with new screen look).
    Nevetherless be carefull! You need to ensure that submit will not create and endless loop. ABAP Memory will help you here (exchange flags within program indicating whether program is executed for the first time or another one).
    Hope this will give you some idea how to solve it.
    Regards
    Marcin

  • Max no of function keys in a screen . What do u mean by SSCR fields...

    give any simple understandable examples how to create function key...event driven programs...

    Hi,
    Try the following code n let me know if it works fine.
    Tables *
    tables:
    sflight, " Flight master
    sbook. " Single flight booking
    Field string to hold flight master data *
    data:
    begin of fs_sflight,
    carrid type sflight-carrid, " Carrier Id
    connid type sflight-connid, " Connection Id
    seatsmax type sflight-seatsmax, " Maximum seats
    seatsocc type sflight-seatsocc, " Occupied seats
    end of fs_sflight.
    Internal table to hold flight schedule data *
    data:
    t_sflight like
    standard table
    of fs_sflight.
    Field string to hold flight booking master data *
    data:
    begin of fs_sbook,
    carrid type sbook-carrid, " Carrier Id
    connid type sbook-connid, " Connection Id
    fldate type sbook-fldate, " Departure date
    bookid type sbook-bookid, " Booking number
    loccuram type sbook-loccuram, " Price of booking
    order_date type sbook-order_date, " Posting date
    end of fs_sbook.
    Internal table to hold single flight booking *
    data:
    t_sbook like standard table
    of fs_sbook.
    START-OF-SELECTION EVENT *
    start-of-selection.
    perform selection.
    END-OF-SELECTION EVENT *
    end-of-selection.
    loop at t_sflight into fs_sflight.
    write:/ fs_sflight-carrid,
    15 fs_sflight-connid,
    30 fs_sflight-seatsmax,
    45 fs_sflight-seatsocc.
    hide: fs_sflight-carrid.
    endloop. " LOOP AT T_SFLIGHT...
    at pf13.
    if sy-curow le 3.
    message 'invalid line selection'(001) type 'I'.
    else.
    perform select_data.
    perform display_data.
    endif.
    at pf14.
    if sy-curow le 3.
    message 'invalid line selection'(001) type 'I'.
    else.
    perform select_data.
    sort t_sbook by bookid.
    perform display_data.
    endif.
    at pf16.
    if sy-curow le 3.
    message 'invalid line selection'(001) type 'I'.
    else.
    perform select_data.
    sort t_sbook by loccuram.
    perform display_data.
    endif.
    FORM SELECTION *
    This subroutine retrieves necessary data from flight master table *
    There are no interface parameters to be passed to this subroutine. *
    form selection.
    select carrid " Carrier Id
    connid " Connection Id
    seatsmax " Maximum seats
    seatsocc " Seats occupied
    from sflight
    into table t_sflight.
    if sy-subrc ne 0.
    message 'No records found'(002) type 'S'.
    endif. " IF SY-SUBRC...
    endform. " SELECTION
    FORM SELECT_DATA *
    This subroutine retrieves necessary data from flight booking table *
    There are no interface parameters to be passed to this subroutine. *
    form select_data.
    select carrid " Carrier Id
    connid " Connection Id
    fldate " Flight date
    bookid " Booking number
    loccuram " Price of booking
    order_date " Booking Date
    from sbook
    into table t_sbook
    where carrid eq fs_sflight-carrid.
    if sy-subrc ne 0.
    message 'No records found'(002) type 'S'.
    endif. " IF SY-SUBRC...
    endform. " SELECT_DATA
    FORM DISPLAY_DATA *
    This subroutine displays data from flight booking table *
    There are no interface parameters to be passed to this subroutine. *
    form display_data.
    loop at t_sbook into fs_sbook.
    write: / fs_sbook-carrid,
    15 fs_sbook-connid,
    30 fs_sbook-fldate,
    45 fs_sbook-bookid,
    60 fs_sbook-loccuram currency sbook-loccurkey,
    75 fs_sbook-order_date.
    endloop. " LOOP AT T_SBOOK...
    endform. " DISPLAY_DATA
    Regards,
    Satish

  • Agentry WinCE Enter key close the screen

    Hallo,
    we create a detailscreen with a listField which you can see in the screenshot. If we navigate to the screen in the WinCE Client and do nothing and press the enter key on the keyboard from the WinCE-client the screen closed. If we navigate to the screen an select something like a field or a list row and press then the enter key on the keyboard from the WinCE-client nothing happen.
    How can i prevent that the screen will close when i press the enter key. We try to set the initial focus to a the field "Ort" but the screen has closed again.
    Thanks,
    André

    Hello,
    we have a workaround found. We set the initial focus to the filed of list type. So it select a entry from the list and the enter button select the entry. Thats ok for us.
    Best regards,
    André

  • HT200197 hi i just bought an Apple TV device and tried setting up the wireless but after i enter the 2WIRE  Key Password the screen starts by saying connecting than the screen says Activating below says stting date & times and just sits there for an hour

    Hi I just bought an Apple TV device i have detected the 2WIRE and entered the Product Key Password.  It takes that okay the screen goes to Connecting followed by Activating below in small print it says Setting date and time but nevr leaves that screen it just clocks there for evr???

    Welcome to the Apple Community.
    Assuming this is not the first time you have used your Apple TV
    You might try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Also try restarting the router. (Also try removing it’s power cord for at least 30 seconds)
    If the problem persists, try a restore, you may want to try the previous procedures several times before doing this.
    If restoring from the Apple TV doesn't help, try restoring from iTunes using a USB cable.
    If this is a new Apple TV, in addition to trying the above, it may also be that your network router is not allowing access to the timeserver, check that your router allows access over port 123.

  • HT1349 how can i open the ipad , the slide key on the screen not working.?

    how can i open the ipad , the slide key on the sreen not working ?

    Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Why does my keyboard repeat keys and the screen goes off center?

    Keyboard repeats letters, erases multiple letters and generally goes crazy. Also screen goes off center and too large for frame.

    First see:
    iPhone and iPod touch: Home screen icons are magnified or large
    Next try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Function Key Settings

    So I have a few programs where instead of the function keys controlling the screen brightness/volume/numlock etc etc, I actually need the function keys. I know I can go into system preferences and change it, but is there a way I can set a keyboard shortcut to switch on the regular function keys? If not, is there a way I can set certain programs to do so?

    If you hold down the fn key (lower left corner of keyboard) the function keys will work as function keys, not the controls for various settings. Also, in system preferences (at least in Leopard), under Keyboard & Mouse, there is an option to make the function keys operate as such normally, and you would need the fn key to get the other function.
    Message was edited by: drsailer

  • Function Key problem in GUI Screen

    Hi,
    I am trying to add a button in an existing GUI screen (earlier copied from standard GUI status). When I am trying to add a button in the application toolbar, its showing me the following error.
    Function code &REJ has not been assigned to a function key 
         Message no. EC181                             
    When I am trying to create a button for the same scenario in IDES its working properly...
    Please let me know what to do.
    Thanks in advance.
    Regards,
    ravi.

    Hi,
    have you tried to assign function key to your new button? You can see all assignments in Utilities -> F key consistency. You can assign you new button to any free function key on your screen.
    Cheers

  • Disabling the function keys in GUI status

    Hi Experts,
                    I want to disable/hide the function keys in the gui status based on some condition in a module pool.Please tell me how to achieve that.
    Regds
    Abbhishek

    Hi Abhishek,
    Please check the follwoing links to enable/disable function keys in module pool.
    [http://www.saptechies.com/pf-status/|http://www.saptechies.com/pf-status/]
    [http://www.sap-img.com/abap/common-used-of-dialog-screen-for-display-change-delete.htm|http://www.sap-img.com/abap/common-used-of-dialog-screen-for-display-change-delete.htm]
    [http://sapabap.iespana.es/sap/tips/dinamically_set_pfstatus.htm|http://sapabap.iespana.es/sap/tips/dinamically_set_pfstatus.htm]

  • What happens to the function keys when i unplug the extended keyboard?

    i use my laptop (12 function keys) with a wired apple aluminum extended keyboard (19 function keys). i assigned a few functions (screen shots mostly) to the upper function keys on the keyboard... f16-f19. but when i unplug the keyboard i'm not sure how to get those functions on the laptop keyboard.
    what happens to those functions when the keyboard is unplugged? is there a way to map those functions to the keyboard so that they are re-assigned when it's unplugged?

    wilyliang wrote:
    question still remains: do f16, etc., exist or can they be re-invented once the USB keyboard is removed (besides having to re-map the shortcuts each time)?
    I haven't found a way, though there might be.
    or even: is it possible to assign two different key combos/function keys to a single command/shortcut?
    Now that depends on the application that's assigning the shortcuts. Some Microsoft and Adobe apps allow multiple shortcuts per function, I've taken advantage of those a few times myself. But cheaper apps often cut you off at one shortcut.

  • My Ipod touch recently fell into water, but once dried, it worked with seemingly little to no problems. Today, after working for at least an hour, the screen froze and is now not working, but the sounds are still functioning.

    I accidentally dropped my Ipod into the lake, at the beach yesterday, but i caught it early and it wasn't too soaked... i wiped it off for the most part, and most of the buttons and the screen worked fine! i was shocked, and there were a few glitches with the camera and the slide button on the lock screen, but otherwise it was greatly intact! so i gave it a rest, put it in my purse, and picked it up fifteen minutes later, and it was working 100% normally again! when i got home a few hours later, i put it in rice for a few hours, taking it out every once and a while to check my notifications... it still seemed to be working perfectly, so i just set it down out of the rice, assuming the moisture was gone. this morning, again, everything was working normally, no glitches, UNTIL, i opened my instagram app, and the screen froze, and it seemed like it had two separate screens, and i held the Sleep button down until the screen went black... then i tried turning it back on, etc. and it still didn't work, and so i plugged it into the computer, holding down the sleep and home buttons, and itunes identified it as in recovery mode, and started updating. i tried again to press the sleep and home butttons, maybe pressing only the home button, because I heard the Siri noise, as well as the charging sound, but the screen was still black.... i checked my iTunes, and lo and behold, it had identified my iPod, and synced it to the computer, as if it were normally functioning. However, the screen is still not working, and Siri is not working either. The sounds may be the only thing that's functioning. Should i send it in?

    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar              
    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G, $99 for the other 4Gs, $99 for the 16 GB 5G and $149 for the other 5Gs. They do not fix yours.
      Apple - iPod Repair price
    Sometime it takes a little while for the water to damage the iPod.

Maybe you are looking for