ABAP性能优化

[color=red][b]ABAP性能优化[/b][/color]

1.使用二分法查询,提高查询内表数据速度
不推荐
Read table int_fligh with key airln = ‘LF’.
推荐
Read table int_fligh with key airln = ‘LF’ binary search.
2.两个内表添加使用批量增加代替逐行
不推荐
Loop at int_fligh1.
Append int_fligh1 to int_fligh2.
Endloop.
推荐
Append lines of int_fligh1 to int_fligh2.
3.使用FOR ALL Entries
不推荐
Loop at int_cntry. Select single * from zfligh into int_fligh where cntry = int_cntry-cntry. Append int_fligh. Endloop.
推荐
Select * from zfligh appending table int_fligh
For all entries in int_cntry
Where cntry = int_cntry-cntry.


[color=red][b]
一些缩写字母在SAP系统中用到的。。。
Note:[/b][/color]
The abbreviations in the short text of this message can have the following values:
BA = batch
OR = order
PL = plant
PR = previous period
PU = purchasing document
RE = reservation
SL = storage location
VC = consignment stock from vendor in storage location
In addition, the short text may contain the following special stock indicators:
E = Open order quantity
K = Vendor consignment
M = Vendor returnable transport packaging
O = Vendor subcontracting component
P = Pipeline material
Q = project stock
V = Customer returnable packaging
W = Customer consignment
Y = Warehouse shipping unit
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值