作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个查询,其中使用FOR ALL ENTRIES
。内表lt_customer
没有记录。
SELECT *
FROM bsid
INTO CORRESPONDING FIELDS OF TABLE lt_customer2
FOR ALL ENTRIES IN lt_customer
WHERE bukrs EQ p_bukrs
AND belnr EQ lt_customer-belnr
AND gjahr EQ lt_customer-gjahr.
现在,由于 lt_customer
没有记录,我期待在这里转储。但事实证明,它正在将 bsid
中的所有记录选择到 lt_customer2
中。我不明白为什么或如何。请赐教。谢谢!
最佳答案
这是标准行为,如 ABAP 帮助中所述:
“如果内表itab为空,则忽略整个WHERE条件。”
https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abenwhere_logexp_itab.htm
在 SELECT 之前检查表是否不为空:
IF lt_customer IS NOT INITIAL.
SELECT ...
...
FOR ALL ENTRIES IN lt_customer
...
ENDIF.
关于abap - FOR ALL ENTRIES 通过空 itab 从数据库中选择所有记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63263680/
我是一名优秀的程序员,十分优秀!