FOR ALL ENTRIES 通过空 itab 从数据库中选择所有记录
FOR ALL ENTRIES through empty itab selects all records from DB
我有一个正在使用 FOR ALL ENTRIES
的查询。内部tablelt_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
中的所有记录。我不明白为什么或如何。请赐教。谢谢!
FOR ALL ENTRIES 看起来像 IN 运算符。如果它为空,则忽略此条件。 lt_customer.
需要人工检查或添加虚拟记录
这是标准行为,如 ABAP 帮助中所述:
"如果内部 table itab 为空,则忽略整个 WHERE 条件。"
https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abenwhere_logexp_itab.htm
检查table是否在SELECT之前为空:
IF lt_customer IS NOT INITIAL.
SELECT ...
...
FOR ALL ENTRIES IN lt_customer
...
ENDIF.
我有一个正在使用 FOR ALL ENTRIES
的查询。内部tablelt_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
中的所有记录。我不明白为什么或如何。请赐教。谢谢!
FOR ALL ENTRIES 看起来像 IN 运算符。如果它为空,则忽略此条件。 lt_customer.
需要人工检查或添加虚拟记录这是标准行为,如 ABAP 帮助中所述:
"如果内部 table itab 为空,则忽略整个 WHERE 条件。"
https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abenwhere_logexp_itab.htm
检查table是否在SELECT之前为空:
IF lt_customer IS NOT INITIAL.
SELECT ...
...
FOR ALL ENTRIES IN lt_customer
...
ENDIF.