如何知道选择屏幕是否已满?
我有带有 SELECT-OPTION 的选择屏幕,假设名称为 selection_kunnr
,我想知道用户是否填充了该选择区域
注意:此 selection_kunnr
code> 不是必填字段。我该如何处理?
到目前为止我已经尝试过
if selection_kunnr is not initial.
"do some action here
endif.
,但我认为它根本不起作用。
有什么建议吗?
I have selection screen with SELECT-OPTION let say the name is selection_kunnr
and I want to know if user filled that selection area or not
Note: this selection_kunnr
is not a mandatory field. How can I deal with it?
I have tried so far
if selection_kunnr is not initial.
"do some action here
endif.
but I think it doesn't work at all.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SELECT-OPTIONS 为字段创建内表(与 RANGE 语句相同)。 (它创建 4 个字段:SIGN、OPTION、LOW 和 HIGH)。您可以使用以下方法检查表是否有任何内容:
[] 运算符指定内表的内容(行)。
我不再确定了,因为我现在不在 SAP 系统前,但如果只填充初始的 FROM/TO 字段,我不确定这是否会在表中创建一个条目。
提示:在 ABAP 编辑器中,您可以将光标放在任何语句上,然后按 F1 获取有关该语句的帮助。
SELECT-OPTIONS create an internal table (same as the RANGE statement) for a field. (It creates 4 fields: SIGN, OPTION, LOW and HIGH). You can check whether the table has any contents by using:
The [] operator specifies the contents (rows) of an internal table.
I am not sure anymore, because I am not in front of an SAP system right now, but if only the initial FROM/TO fields are filled, I am not sure whether this creates an entry in the table.
HINT: In the ABAP editor, you can place the cursor on any statement, and press F1 to get help on that statement.
鉴于这将创建一个内部表,您还可以使用 DESCRIBE 语句。这对于程序中的范围和内部表同样有效。
描述表行 w_count。
Given that this creates an internal table you can also use the DESCRIBE statement. Which works just as well on ranges and internal tables in your program.
DESCRIBE TABLE LINES w_count.