1:https://www.w3cschool.cn/sap_abap/sap_abap_object_events.html ...
分类:
其他好文 时间:
2019-03-14 18:38:43
阅读次数:
166
Unit1 Introduction to the ABAP Dictionary(ABAP字典介绍) 1.1 Describing the ABAP Dictionary(描述ABAP字典) ABAP Dictionary基本功能: Create user-defined types ( data... ...
分类:
其他好文 时间:
2019-03-13 13:50:26
阅读次数:
179
Create a CDS view and we have the view type as ‘BASIC’ view To publish this as oData, add the annotation as: @OData.publish: true Activate the view. T ...
分类:
其他好文 时间:
2019-03-11 16:12:03
阅读次数:
164
颗粒度尽量大:尽量不要在Cube里放太明细的数据(即维度字段越小越好),这种需求首先考虑R3用ABAP解决,如果非要在BW,可以考虑在DSO出明细报表,在Cube出汇总报表,通过RRI接口调用明细报表。 拆分多个:当Cube的数据量很大时,可以拆分成多个Cube,再用MultiProvider拼起来 ...
分类:
其他好文 时间:
2019-03-11 10:40:37
阅读次数:
234
Explicit Name List use in CDS We create a simple CDS View like below. Run the View/Data Preview- The column heading appears same as the column names. ...
分类:
其他好文 时间:
2019-03-08 16:59:04
阅读次数:
119
JOINs in CDS View In ABAP CDS, Join between two data sources is allowed. Allowed joins are:- Inner Join/Join Left Outer Join Right Outer Join The post ...
分类:
其他好文 时间:
2019-03-08 16:58:11
阅读次数:
180
Aggregate expression in CDS View An aggregate expression calculates a single value from an operand operand by calling an aggregate function from multi ...
分类:
其他好文 时间:
2019-03-08 16:41:52
阅读次数:
243
1\. 这两个IF ELSE分支里检测的条件其实逻辑上来说都是同一类,应该合并到一个IF分支里进行检查: It is an expensive operation to open a file in application server with 50MB file size. Current lo ...
分类:
其他好文 时间:
2019-02-03 18:03:41
阅读次数:
148
1、定义接口INTERFACE intf [PUBLIC]. [components] ENDINTERFACE. 2、注意点: 2.1、接口中所定义的所有东西默认都是公共的,所以不用也不能写PUBLIC SECTION。 2.2、只有在接口中定义的常量(CONSTANTS)才可以使用 VALUE ...
分类:
其他好文 时间:
2019-01-30 17:13:49
阅读次数:
196
REPORT mine_clearance NO STANDARD PAGE HEADING LINE-SIZE 125. INCLUDE . CONSTANTS: " >> board cell values blank_hidden TYPE c VALUE '0', blank_marked ... ...
分类:
其他好文 时间:
2019-01-29 18:30:29
阅读次数:
223