调优面试真题 首先我们来看问我的几道Java调优实战的面试问题: 使用“+” 拼接字符串为什么更快? 为什么final关键字现在无助于内联? 为什么外小内大的嵌套循环原则对性能提升并没有帮助? 指令重排序会导致什么结果? 什么是分布式系统中最耗时的操作? 为什么JDK和高性能产品的代码必须使用JMH ...
分类:
编程语言 时间:
2020-10-19 22:58:09
阅读次数:
30
ABAP 正则表达式 ABAP支持正则表达式。 支持正则表达式的语句: 1.FIND,REPLACE语句; 2.Functions:count,count_xxx,contains,find,find_xxx,match,matches,replace,substring,substring_xxx ...
分类:
其他好文 时间:
2020-10-18 16:46:52
阅读次数:
27
I joined SAP China seven years ago after graduation and knew nothing about SAP or ABAP at that time. Now I am working as a development expert in SAP. ...
分类:
其他好文 时间:
2020-09-17 19:37:39
阅读次数:
29
Recently I came across this very funny picture and I would like to share with you. This picture shows totally five different approaches to implement “ ...
分类:
其他好文 时间:
2020-09-08 20:39:18
阅读次数:
51
In SAP note 1230076 “Generation of ABAP loads: Tips for the analysis”, a tool report RSDEPEND is introduced. It is explained in the note “An ABAP prog ...
分类:
其他好文 时间:
2020-09-02 16:48:52
阅读次数:
41
The class cl_system_transaction_state contains several useful utility methods: get_in_update_task: return the flag whether current code is running wit ...
分类:
其他好文 时间:
2020-08-06 15:37:21
阅读次数:
82
主要就是动态内表 PARAMETERS: p_tabf TYPE dd02l-tabname, "原表名称 p_tabt TYPE dd02l-tabname. "备份表名称 DATA: it_tabf TYPE lvc_t_fcat, it_tabt TYPE lvc_t_fcat. DATA: ...
分类:
其他好文 时间:
2020-07-26 19:46:59
阅读次数:
99
最近Jerry的处境可以用本世纪初,八零后刚上大学时校园内风靡的一款FPS游戏名称来形容: 《半条命》. 为了避免让汪子熙这个公众号成为神经外科前中颅底亚专业医学知识的普及号,咱们还是继续聊SAP技术吧。 随着ABAP 7.40 SP05的发布,SAP ABAP引入了一种新的应用开发范式,即所谓的C ...
分类:
数据库 时间:
2020-07-12 12:04:10
阅读次数:
79
Note: BAPI_DELIVERYPROCESSING_EXEC 未发布 根据内向采购订单创建内向交货单: FORM CREATE_INBOUND_DELIVIRY. DATA: _RET TYPE STANDARD TABLE OF BAPIRET2 WITH HEADER LINE, _CR ...