Event for page down

Hi,
I would like to know if there is any event that is triggered when we press page-down in alv list display

Include a form name in I_CALLBACK_PF_STATUS_SET, in that set a PF-STATUS, using command SET PF-STATUS 'TEST'. Define a function code P. So whenever user presses P, the form USER_COMMAND will be triggered. Also fill in the form name for I_CALLBACK_USER_COMMAND and name of the program in I_CALLBACK_PROGRAM.
Regards,
Subramanian V.

Similar Messages

  • Capturing Ok Code for Page Down Button

    Hi,
    In Infotype O568 I have to update a table for Leave records. For that I am using BDC recording. While doing BDC recording the page down button ok Code is not being recorded. Can any one tell me how to capture the Ok Code for page down button. I have Tried with ' P+ ' and ' P++ ' but it does not work.
    Thanks!!!

    Hi Abhay,
    For which transaction you are using your BDC , i am not getting.
    I must say that for all transaction , page down(P+) option don't work,
    for that transaction you need to follow the below steps.
    go to menu bar->edit-> enter lines.
    after recording you will get BDC_OKCODE = NP.
    Try with this.
    Regards,
    Tutun

  • What is ok-code for page down in bdc (reward)

    hiiii
    What is ok-code for page down in bdc...

    HI..
    here is the list..
    P-  : Back
    P-- : Scroll to previous page
    P+ : Scroll to next page
    P++ Scroll to last page
    PL- : Scroll to first line in page
    PL-n :  Scroll back n lines
    PL+ : Scroll to last line in page
    PL+n Scroll forward n lines
    PP- : Scroll back one page
    PP-n Scroll back n pages
    PP+ scroll forward one page
    PP+n : scroll forward n page
    PPn : Scroll to start of page n
    Ps- : Scroll to first column
    PS++ Scroll to last column
    Reward if useful
    Regards
    Prax

  • The wireless keyboard doesn't have a page down key. How do you program a keyboard shortcut for Page Down?

    My new wireless keyboard doesn't have a page down key. Very customer-hostile, at least in Office Apps. The list of available keyboard shortcuts doesn't inclue Page Down. Anyone know how to program a keyboard shortcut for Page Down?

    Figured it out: fn + down arrow

  • Page down problem

    Hi,
    I am trying to display 2 table contents in 2 tabs.I am using MVC approach.
    But , when i do a page down click , its not showing any data.
    Do i need to handle any events for page down.
    Thanks
    --Pradeep
    Edited by: pradeep nellore on Oct 15, 2009 11:56 AM

    Hi,
    with this amount of information, we cannot help you much. Do you see any information displayed in your tables when the web page shows up ??  do you lose the information when you press button for scrolling one page down ??
    Page down/up is a standard functionality for Tableview, so you don´t have to catch and handle the event. You better check how you´re selecting the information and passing it to the Tableview. You might be triggering the event and not calling the methods for selecting and displaying the information.

  • Regarding page down in the table control veritcally

    Hi all,
              I have an issue regarding page down in the Table control in module pool , i.e when i m click the vertical scroll bar and going for page down then , the control is flowing to the next sceen which is not needed , and it shuld just scroll down and up vetically.
    Can anyone help me how to handle the page down event ?
    Thanks & regards,
    satya

    Table Controls: Examples with Scrolling
    The following example processes a table control with LOOP without parallel loop using an internal table. In addition to the scroll bar, the user can also carry out program-controlled scrolling with function codes.
    REPORT demo_dynpro_tabcont_loop.
    CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
    DATA: ok_code TYPE sy-ucomm,
          save_ok TYPE sy-ucomm.
    DATA: itab TYPE TABLE OF demo_conn,
          fill TYPE i.
          TABLES demo_conn.
    DATA: lines TYPE i,
          limit TYPE i.
    SELECT * FROM spfli INTO CORRESPONDING FIELDS OF TABLE itab.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      DESCRIBE TABLE itab LINES fill.
      flights-lines = fill.
    ENDMODULE.
    MODULE fill_table_control OUTPUT.
      READ TABLE itab INTO demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE read_table_control INPUT.
      lines = sy-loopc.
      MODIFY itab FROM demo_conn INDEX flights-current_line.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'NEXT_LINE'.
          flights-top_line = flights-top_line + 1.
          limit = fill - lines + 1.
          IF flights-top_line > limit.
            flights-top_line = limit.
          ENDIF.
        WHEN 'PREV_LINE'.
          flights-top_line = flights-top_line - 1.
          IF flights-top_line < 0.
            flights-top_line = 0.
          ENDIF.
        WHEN 'NEXT_PAGE'.
          flights-top_line = flights-top_line + lines.
          limit = fill - lines + 1.
          IF flights-top_line > limit.
            flights-top_line = limit.
          ENDIF.
        WHEN 'PREV_PAGE'.
          flights-top_line = flights-top_line - lines.
          IF flights-top_line < 0.
            flights-top_line = 0.
          ENDIF.
        WHEN 'LAST_PAGE'.
          flights-top_line =  fill - lines + 1.
        WHEN 'FIRST_PAGE'.
          flights-top_line = 0.
      ENDCASE.
    ENDMODULE.
    The layout of screen 100 is:
    A resizable table control called FLIGHTS is defined. The fields of the table control are transferred from the structure DEMO_CONN in the ABAP Dictionary. The first two columns are lead columns. The corresponding fields are output fields. A title bar, column headers, and a selection column are created. The component MARK of type character with length 1 from structure DEMO_CONN is assigned to the selection column. You can select one column and several lines.
    It has the following flow logic:
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      LOOP WITH CONTROL flights.
        MODULE fill_table_control.
    ENDLOOP.
    PROCESS AFTER INPUT.
      MODULE cancel AT EXIT-COMMAND.
      LOOP WITH CONTROL flights.
        MODULE read_table_control.
    ENDLOOP.
      MODULE user_command_0100.
    The system executes a loop at PBO and PAI using the table control FLIGHTS. During the PBO loop, a module is called to fill the table control from table ITAB of the ABAP program. During the PAI loop, a module is called to modify table ITAB.
    Before the PBO loop, in the module STATUS_0100 the current number of lines of the internal table ITAB is placed in component LINES of control structure FLIGHTS. This helps the system to correctly install the scroll bar of the table control.
    During the PBO loop, in the module FILL_TABLE_CONTROL the work area DEMO_CONN is filled with values from the internal table, where the row index corresponds to the current row of the table control.
    During the PAI loop, in the module READ_TABLE_CONTROL the current number of the loop SY-LOOPC in the table control is placed an auxiliary variable. The number is dependent on the size of the screen. The rows of the internal table, whose row index corresponds to the current row of the table control, are overwritten with the contents of the work area DEMO_CONN. User input is transferred from the input fields of the control to the internal table. In particular, the internal table also contains a flag in the column MARK to indicate whether the row of the table control is selected or not.
    After the PAI loop, user input is processed in the module USER_COMMAND. The GUI status SCREEN_100 provides the appropriate function codes. You can scroll line by line or page by page, or Goto the first or last page. You can implement scrolling by setting the component TOP_LINE of control structure FLIGHTS. For page-by-page scrolling the auxiliary variable that is filled in the PAI loop by SY-LOOPC is used as the step size.

  • Page Up and Page down functionality in table control

    Hi,
        I want to add two pushbuttons in the module pool screen which has a table control that fetches data from the transparent table. One pushbutton is for the page up and other is for page down. If my table control <say tab_ctrl1> has 75 records in total with shows 25 at time so with a single page down it should show next 25 rows of the data.
    thanks
    ekta

    Hi,
    Use the function module SCROLLING_IN_TABLE.
    For ok_code pass P- for previous page and P+ for next page.
    Example:
       DATA L_TC_NEW_TOP_LINE     TYPE I.
         CALL FUNCTION 'SCROLLING_IN_TABLE'
              EXPORTING
                   ENTRY_ACT             = Table_Control-TOP_LINE
                   ENTRY_FROM            = 1
                   ENTRY_TO              = Table_Control-LINES
                   LAST_PAGE_FULL        = 'X'
                   LOOPS                 = 25
                   OK_CODE               = 'P+'
                   OVERLAPPING           = 'X'
              IMPORTING
                   ENTRY_NEW             = L_TC_NEW_TOP_LINE
              EXCEPTIONS
    *              NO_ENTRY_OR_PAGE_ACT  = 01
    *              NO_ENTRY_TO           = 02
    *              NO_OK_CODE_OR_PAGE_GO = 03
                   OTHERS                = 0.
       Table_Control-TOP_LINE = L_TC_NEW_TOP_LINE.
    Regards,
    Sesh

  • BDC(va02) page down condition

    hi all!
    i done bdc for va02.
    In this when i press page down (=p+)only 9 line item will display  and again press page down next  9 line item will be shown .(in my pgm 11 line items showing)
    Is it possible to give a spacific conditio for page down ? how ?
    thanks

    Hi,
    The system field SY-LOOPC Contains the total number of rows visible in the TC and SY-STEPL contains the row number of current row.
    Then use P+ to page down p- for page up as the values of sy-ucomm
    Hope this will serve your purpose.
    Cheers
    Ramchander Rao.K
    Edited by: Ramchander Krishnamraju on Aug 13, 2009 6:41 AM

  • Event on Drop Down in UI

    Hi All,
    I need event for Drop Down field in UI, once selected any value then need this event to get trigger?\
    my coding is like this in GET_P :
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
    -> field type: event link
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
    -> event
          rv_value = 'SR_CNT'.                                        "#EC NOTEXT
      ENDCASE.
    Also in Event handler method I define this event & exists with name EH_ONSR_CNT.
    But not getting triggered.
    What I am missing?
    Thanking you.
    Best regards,
    VIJHyd

    Hi Justin Hill,
    actually drop down is already available in my case as I am doing this for already existing field,
    I did coding like below to get it work:
    my coding is like this in GET_P :
    CASE iv_property.
    WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
    -> event
    rv_value = 'SR_CNT'. "#EC NOTEXT
    ENDCASE.
    once u did like this, completely logoff from Web Ui then login again to get it reflected....

  • Upgraded to snow leopard, now safari scrolls a page down when space bar is hit and sometimes crashes.  Any ideas for a fix?

    I just upgraded to the new snow leopard, now my Safari is acting loopy.  At times, the page will scroll down when I hit the space bar.  As I type this discussion the screen isn't paging down, but if I go to the tab where I have facebook loaded and hit the space bar, it acts as a page down key.  I've had safari crash about 5 times tonight for no apparent reason.  The delete key sometimes will act as a page back key.  I really have no idea whats going on. 
    I've had keyboards go wacko on me before due to something being spilled on them or a wireless problem, but this keyboard is a wired keyboard and nothing was spilled on it.  It's rather new and I'm quite certain it's not a keyboard issue. 
    No settings have been changed on the computer.  The only thing different today from yesterday, is the fact that I upgraded to snow leopard.
    Help would be pretty sweet.   
    Thanks,
    Jason

    I just upgraded to the new snow leopard, now my Safari is acting loopy.  At times, the page will scroll down when I hit the space bar.  As I type this discussion the screen isn't paging down, but if I go to the tab where I have facebook loaded and hit the space bar, it acts as a page down key.  I've had safari crash about 5 times tonight for no apparent reason.  The delete key sometimes will act as a page back key.  I really have no idea whats going on. 
    I've had keyboards go wacko on me before due to something being spilled on them or a wireless problem, but this keyboard is a wired keyboard and nothing was spilled on it.  It's rather new and I'm quite certain it's not a keyboard issue. 
    No settings have been changed on the computer.  The only thing different today from yesterday, is the fact that I upgraded to snow leopard.
    Help would be pretty sweet.   
    Thanks,
    Jason

  • I have just downloaded the latest update for Pages on my iPad and now it can no longer open up documents in iCloud and then just shuts down. What The.

    i have just downloaded the latest update for Pages on my iPad and now it can no longer open up documents in iCloud and then just shuts down. What The.

    Before the reset quit Pages like this:
    Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app.

  • What are the options for integrating the event catalog and event landing pages in our website?

    We'd like to integrate the event catalog and event landing pages into our website but would prefer not to use the standard iframe embed code. Are there other solutions available, like an API or something else?
    Reason for this is that when we tried it with the iframe embed code the event catalog seems to load quite slow in a webpage on our website. Plus it seems we can't change the width and height of the event catalog with the CQ5 editor, or have the event catalog embed dynamically change in size depending on the amount of events in the catalog.

    Keeping everything in one scene is the better way to go.  Scenes are useful for animators who do not use navigation, they just make movies that play frame after frame without stopping.  But for anything that involves navigating the timeline you will have less headaches if you just avoid them and keep everything in the one main timeline.
    There are primarily two approaches to implementing pages in a timeline.  Either spread them out along the timeline and navigate from frame to frame to access them, or create them as movieclips (all in the same frame) and manage their visibility.  The latter approach makes it easier to maintain the status of a one page if navigating to another is necessary.  And you might find it useful to mix these two approaches at times.
    When you have everything on one timeline, you can have a layer dedicated to actionscript that you extend the full length of the timeline, which makes shareable code, such as variables and functions, available to anything along the timeline.  This avoids any need to have duplicate function definitions since you can have the same single function available to multiple pages in the site.  I usually use two actions layers... one for the shared stuff which has all code in frame 1 only, and another for frame specific code such as timeline commands and other action coding that needs to happen at particular frames.

  • In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE!

    In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE! Thank god Pages 09 is still there.

    …and the other 98 missing features.
    Just use Pages '09, which should be in your Applications/iWork folder.
    Rate/review Pages 5 in the App Store.
    Peter

  • What is the keyboard shortcut for scrolling page down? In Pages, Safari, etc... Just a single page/ screen view, not all the way to the bottom.  Thank you.

    Trying to navigate the screen without my mousepad.  I have carpal tunnel and early stage arthritis and cannot repeatedly make the appropriate motions to scroll with two fingers.  Is there a keyboard shortcut for scrolling up and down line by line or page by page? 
    Thank you.

    Yeah. sorry. those are not correct. ctrl N + P are for home and end line shortcuts. Ctrl V does go down one line.  But CTRL arrow up or down do not work in Safari.  But thank you very much for the attention and the time...
    Note from my first post above -- I did not say to use CTRL arrow in Safari:
    For Safari:
    Scroll down a line: down arrow
    Scroll down a screen: option down arrow
    Note from my second post above and from the first link I gave that  Control N, P, and V worked for me in Pages as described in the link and in my post:
    The link to shortcuts that I gave abaove includes Control N, P, and V for move down a line, up a line and down a page and those seem to work in Pages.

  • In BDC Page down command is not working for MB1C T. Code

    Dear Experts,
    I am writing BDC for MB1C, in this to enter serial number for material, when exceeds the limit, the page down command not woking.
    i wrote the below
             IF sn_count = 20.
                PERFORM bdc_dynpro      USING 'SAPLIPW1' '0200'.
                PERFORM bdc_field       USING 'BDC_CURSOR'
                                                     'RIPW0-SERNR(01)'.
                PERFORM bdc_field       USING 'BDC_OKCODE'
                                              '=RWS'.
                sn_count = 2.
              ENDIF.
    in my recording i got below
    perform bdc_dynpro      using 'SAPLIPW1' '0200'.
    perform bdc_field       using 'BDC_CURSOR'
                                       'RIPW0-SERNR(07)'.
    perform bdc_field       using 'BDC_OKCODE'
                                       '=RWS'.
    please help me.

    sorry I missed this part with the serial numbers, I thought you were in the item overview.

Maybe you are looking for

  • Missing music files since iTunes upgrade 7.7.043

    I have several problems right now with my iTunes. It appears that maybe it could be related to my recent upgrade to iTunes after reading through other posts about lost files. My problem is that I have all my music on an external drive which used to r

  • Text layers not saved correctly as PDF from PS?

    I frequently save layouts I do in Photoshop as PDF's. Lately I very often will discover the text does not display correctly in the PDF. One or two lines of text will display as white with a thin black outline, rather than as the basic solid black I'd

  • How do I upgrade from Aperture 2.1.4 without having to pay?

    I currently have Aperture 2.1.4 installed, but would like to update it to an available version that doesn't require me to pay for the update. It appears that if I try to download Aperture 3.X.X, that it expects me to pay for it. Can't someone simply

  • Double click on a field in selection screen

    hi everybody I wanted to know if it is possible to double click on a field in a selection screen and go to a transaction and come back on the selection screen Afterwards processing is done on that field Thanks for your kind help

  • MultiLingual EP

    Hi,     Can anyone let me know impact of multilingual feature of EP on portal screen and iviews. What I mean by this is if I logon portal in spanish, does the entire portal screen is seen in this language or just the iviews?  and can I later on chang