如何知道选择屏幕是否已满?

发布于 2024-12-12 11:01:18 字数 310 浏览 0 评论 0原文

我有带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何处潇湘 2024-12-19 11:01:18

SELECT-OPTIONS 为字段创建内表(与 RANGE 语句相同)。 (它创建 4 个字段:SIGN、OPTION、LOW 和 HIGH)。您可以使用以下方法检查表是否有任何内容:

IF SELECTION_KUNNR[] IS INITIAL.

[] 运算符指定内表的内容(行)。

我不再确定了,因为我现在不在 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:

IF SELECTION_KUNNR[] IS INITIAL.

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.

疏忽 2024-12-19 11:01:18

鉴于这将创建一个内部表,您还可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文