`
evangxli
  • 浏览: 224217 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

ABAP性能优化

阅读更多
ABAP性能优化

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.



一些缩写字母在SAP系统中用到的。。。
Note:

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
分享到:
评论

相关推荐

    sap abap 性能优化

    sap abap 性能优化 合理的使用Index 減少數據行的傳輸 減少數據列的傳輸 避免不必要的SQL語句 減少資料量的傳輸

    abap性能优化2.rar

    abap性能优化2

    SAP ABAP 性能优化

    SAP ABAP 性能优化,工作笔记~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    abap性能优化

    这是根据自己常用的一些方法写的ABAP优化。 对ABAP中级提高有部分帮助。 这也是后期数据量大,出现报表速度慢情况的解决。 只是抛砖引玉的作用。。。

    ABAP程序性能优化

    一个功能可以有多种写法,但是最优的只有一个。包括运行时间,资源负载。

    SAP系统ABAP视频教程,40g

    40G的ABAP教程视频,ABAP从入门到精通,帮助你快速成为ABAP顾问!

    Performance_Tuning_Internal_Table&SYSTEM_ANALYSIS

    SAP ABAP 性能优化 SAP ABAP 性能优化

    BC490 ABAP Performance Tuning.pdf

    sap abap性能优化(abap BC490 ABAP Performance Tuning)

    ABAP报表性能优化注意事项

    众多SAP ABAP开发者都需要关注的一些日常技巧,在大量的开发人员中,很多代码虽然实现了需求的功能,但是效能却不高,随着数量量的日益庞大,报表最后响应速度就越来越慢了直到完全不可用,本文档仅仅是一些开发经验...

    abap SQL优化

    abap SQL优化 abap编程的SQL的性能优化,在编程时注意的地方,可以是程序性能更好!

    深入ABAP程序设计

    深入ABAP程序设计,语法,结构,性能优化,案例。

    ABAP开发规范.doc

    一般ABAP应该遵循的开发规范,以及部份性能优化技巧。

    SE30 使用文档.pdf

    abap代码优化sm30使用文档,sm30分析工具,提供了程序运行时详细的环境数据,对性能调优有很大帮助

Global site tag (gtag.js) - Google Analytics