LIST交互列表

来源:互联网 发布:交互设计 知乎 编辑:程序博客网 时间:2024/05/18 17:55
1.Title names can be up to 20 characters in length and must be entered all in capital letters. A title that is
set stays active until a new one is set.
You can display variables within the GUI title using SET TITLEBAR <TITLE> WITH <f1>.

标题名字最多20 个字符,必须全部是大写字母。标题会一直显示直到设置一个新标题。

2.You can display the current details list in a modal dialog box with statement WINDOW STARTING AT.

3.

可以使用GET CURSOR 语句根据光标位置创建细节列表。如果用户点在其中一个字段上,跟该字段相应 的信息就会显示,点另一个字段,可以显示其他信息。

注意,不要在SELECT 语句的WHERE 条件里使用参数VALUE 的值,因为它可能导致跟非字符字段的冲突,从而得到意外的结果。这时最好使用HIDE。





4.

SY-LSIND Index for the current list
SY-LISTI Index of the last list displayed
SY-LILLI Absolute number of a selected line in the list displayed
SY-CPAGE Number of the upper-most displayed line in the list displayed
SY-CUCOL Number of the column in the window where the cursor was last
positioned in the list displayed
SY-CUROW Number of the line in the window where the cursor was last
positioned in the list displayed
SY-STACO Number of the first column displayed in the list displayed
SY-STARO Number of the first visible line in the top displayed page
(SY-PAGE) in the list displayed (not including header lines)
SY-UCOMM Function code that triggered the interactive event in the
list displayed
SY-PFKEY Status of the list displayed

在每个交互式列表中都会自动支持下列系统字段

sy-lsind: 当前列表的索引

sy-listi: 最后显示列表的索引

sy-lilli: 显示列表的选择行的绝对序号

sy-cpage: 显示列表中最上面显示行的序号

sy-cucol: 显示列表中光标最后定位的窗口中的列的序号

sy-curow: 显示列表中光标最后定位的窗口中的行的序号

sy-staco: 显示列表中显示的第一列的序号

sy-staro: 显示列表中显示页的第一个可见行的序号

sy-ucomm: 显示列表中触发交互式事件的功能码

sy-pfkey: 显示列表的状态

原创粉丝点击