We have a requirement for a select option field which will allow the user to select from a choice of ranges in a pop up dialog box.
This popup will appear when selecting either the low or high field and will be triggered from the at selection-screen on value-request event (for both low and high).
Depending on the range chosen by the user I want to populate the low and high fields respectively.
The following code only populates the low field (presumably due to the way the event handles the screen processing) and the only way I can get the high field populated is to add the 'leave to screen 1000' statement but this clears out any other user entered selections.
Any ideas on the best way of achieving this requirement?
report ztest. tables: fkkvkp. select-options: s_vkont for fkkvkp-vkont obligatory. at selection-screen on value-request for s_vkont-low. s_vkont-sign = 'I'. s_vkont-option = 'BT'. s_vkont-low = '5000000000'. s_vkont-high = '5999999999'. append s_vkont. start-of-selection.