【SAP ABAP系列】ABAP中使用for all entries in小结
原创ABAP开发中,使用for all entries in语句将不能使用join的聚集表(例如BSEG)或者需要使用select的内表与内表串联。 以BSEG为例:
select belnr hkontfrom bsisinto corresponding fields of table itab1where ....if not itab1[] is initial.select kunnr lifnr belnrfrom bseginto corresponding fields of table itab2for all entries in itab1where belnr = itab1-belnr and hkont = itab1-hkont and ....endif.
select belnr hkontfrom bsisinto corresponding fields of table itab1where ....if not itab1[] is initial.select kunnr lifnr belnrfrom bseginto corresponding fields of table itab2for all entries in itab1where belnr = itab1-belnr and hkont = itab1-hkont and ....endif.
由于BESG不能和BSIS做内联,所以先将BSIS要获取的内容放到内表itab1中,然后用 for all entries in 来串联。 1、必须要判断for all entries in后面的内表是否为空,如果为空,where条件中与内表中字段进行比较的结果全部为真,会导致取出非常多的数据,影响系统性能。