cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Page Down/Page Up in SAP EWM Custom RF Screen

murat_durgun
Explorer
0 Kudos
1,103

Hello experts,

I created a custom RF screen which is getting handling units from delivery number. I put page up and page down buttons on the screen because it could have more than one transport unit. The buttons do not work properly even though I have done the same as the Automatic Page Up / Page Down Implementation in the RF Cookbook.

Points will be given accordingly. Thanks in advance.

Best Regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hello There,

We are using a custom FM here to handle this functionality.
buttons with two function codes: PGUP and PGDN:

Check the final table has more than 1 lines:
check the index and based on PGUP and PGDN increment index.

READ TABLE <final_stock_selection table>INTO <RF_GLOBAL STRUCTURE> INDEX lv_line.
KEY: DO NOT READ THE STOCK/TU Data again. Put that in global table once read after initial selection.

-Amit K