Posted: Thu Aug 21, 2008 3:40 pm Post subject: Непонятное поведение SELECTION-SCREEN со SKIP.
Здравствуйте.
Подскажите, пожалуйста, почему происходит следующая ситуация.
Есть программа для вывода отчета в АLV-grid. В программе, в блоке для объявления SELECTION-SCREEN вставил SKIP, для того что бы отступить вниз несколько строк. Все нормально, но вот если вставить еще один SKIP то программа начинает работать немного по другому. А именно: После вывода данных для отчета и нажатия на F3 появляется не SELECTION-SCREEN а пустой экран. SELECTION-SCREEN появляется если нажать на F3 еще раз. Если второй SKIP убрать то все становить нормально. Я в недоумении.
Объясните пожалуйста новичку как это происходит и как правильно называется этот самый пустой экран?
Текст программы:
Code:
REPORT ZTEST.
type-pools slis.
types:
begin of trep,
field_1 type char30,
field_2 type num5,
end of trep.
types : t_tab_my_item type table of trep.
SELECTION-SCREEN:
SKIP 9.
SKIP. " C этой строкой появляется пустой экран.
SELECTION-SCREEN begin OF BLOCK f_kontr WITH FRAME TITLE text-001.
PARAMETERS s_VID(20) TYPE c LOWER CASE.
SELECTION-SCREEN end OF BLOCK f_kontr.
START-OF-SELECTION.
PERFORM main.
"------------Подпрограммы--------------
form main.
data lt_items type t_tab_my_item.
perform fill_test_data using lt_items.
perform show_alv_grid using lt_items.
endform.
form fill_test_data changing lt_items type t_tab_my_item.
data ls_line type line of t_tab_my_item.
clear lt_items.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.