SAP CDS view自學教程之十:SAP CDS view擴充套件性(Extensibility)實現原理
目錄
- Part1 – how to test odata service generated by CDS view
- Part2 – what objects are automatically generate after you activate one CDS view
- Part3 – how is view source in Eclipse converted to ABAP view in the backend
- Part4 – how does annotation @OData.publish work
- Part5 – how to create CDS view which supports navigation in OData service
- Part6 – consume table function in CDS view
- Part7 – unveil the secret of @ObjectModel.readOnly
- Part8 – my summary of different approaches for annotation declaration and generation
- Part9 – cube view and query view
- Part10 – this blog
- Part11 – CDS view test double framework
- Part12 – CDS view source code count tool
- Part13 – CDS view authorization
There is a good blog regarding key user extensibility tool in S4 written by Thomas Schneider.
One of supported feature is customer can easily add new fields to extensible CDS view without knowing technical detail.
For example, if a given CDS view is marked as “UI Reports” extensible in extensibility registration tcode SCFD_REGISTRY,
it means this CDS view would be visible in key user extensibility tool in S4, in tab “UIs and Reports”, so that end user can simply click “Enable Usage” button to add extension field to the view. In the screenshot below, it shows my Extension field “JDK Minimum version” has already been extended to view I_PRODUCTWD.
Now, just use the single line below, and you can read all fields of this view, standard fields and extension fields:
SELECT SINGLE * INTO @DATA(ls_data) FROM i_productwd WHEREproduct = 'JAVA'.
So this CDS view extensibility is really easy to use for application developer.
However, how all these whole scenario work under the hood?
When trying to search the source code of extended CDS view by fragment of extension field name JDK, nothing found. This makes sense since none of SAP extensibility tool will directly MODIFY standard object.
Hover the mouse to this small icon in CDS view and you can see lots of extension view, which holds extension fields created by key user tool.
However how could I quickly locate which extension view holds my extension field “JDK Minimum Version”?
Open the SQL view of CDS view I_PRODUCTWD, it is IPRODUCTWD in SE11. Search by keyword JDK and I find the extension field is added to this SQL view via append ZZ1_2CC44DDD3F1C.
Double click this append, then you can find the name of CDS extension view which holds this extension field: ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE
Now go back to ABAP studio, locate CDS extension view ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE and open it:
Here you can see that in this automatically generated CDS extension view, my extension field are there.
The standard view I_PRODUCTWD is extended by extension view ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE via key word “extend view”, as a result the extension field ZZ1_JDKMinimumversion_PRD in ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE will also be visible in view ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE.
Last question, how and when the extension view ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE is generated? We can simply do testing by disable the usage of my extension field on view I_PRODUCTWD by click button “Disable Usage”.
Once done, the extension field disappears from view I_PRODUCTWD,
This observation proves that the extension view will only be generated after we click “Enable Usage” and publish the change. When we click publish button, there are totally 10 enhancements to be generated for my extension field:
The first three rows are CDS extension view to be generated. Double click each and write down detail:
And extension view ZZ1_PRE47GXHDI6P2ZLO3ADGY4HHFE will be generated to extend I_PRODUCTWD:
The left code is responsible to generate extension view which I am not intrested in. What I am curious about is how the internal table mt_enhancements of CL_CFD_ENHANCEMENT_ITERATOR is filled. It is filled in method determine_generation_scope:
In this method, the task to generate CDS extension view for view I_PRODUCTWD is added to enhancement scope, which will be executed later.
All these ten instances will be generated, to make the whole CDS view extensibility work.
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2722631/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SAP CDS view自學教程之二:當SAP CDS view被啟用時,背後發生了什麼View
- SAP CDS view自學教程之一:如何測試基於SAP CDS view自動生成的OData服務View
- SAP CDS view自學教程之八:SAP Fiori Elements裡不同型別的annotationView型別
- Jerry的CDS view自學系列View
- 如何基於 SAP CDS view 生成 object pageViewObject
- SAP ABAP CDS view Association 引入的緣由View
- 什麼是SAP CDS重定向檢視(Redirect View)?View
- 在 Excel 內使用 ODBC 消費 SAP ABAP CDS viewExcelView
- 如何使用 SAP CDS view 中的 currency conversion 功能View
- SAP S/4HANA CDS View的訪問控制實現:DCL介紹View
- SAP CDS view單元測試框架Test Double介紹View框架
- SAP ABAP CDS view 檢視的 Replacement 技術介紹View
- SAP ABAP CDS view 裡 INNER JOIN 和 Association 的區別View
- SAP CDS redirect view支援寫操作嗎,一個實驗來驗證View
- SAP S/4HANA extensibility擴充套件原理介紹套件
- 開啟SAP CDS view DCL前後的讀取效能對比View
- 使用CDS view開發SAP Marketing contact的facet追溯工具View
- 如何使用SAP HANA Studio的PlanViz分析CDS view效能問題View
- 使用SAP CDS view快速建立一個Fiori應用,管理Service OrderView
- 如何在 SAP BTP 上通過 CDS view 快速建立 Fiori Elements 應用View
- SAP CDS view如何取得當前系統日期和系統時間戳View時間戳
- 使用View modification擴充套件SAP Fiori應用的一個案例View套件
- 一步步學習 SAP CDS view Text Association 在 SAP Fiori Elements 中的應用View
- SAP ABAP CDS view裡的註解在ABAP後臺是如何被解析的?View
- 在 Excel 裡使用 ODBC 讀取 SAP BTP 平臺上 CDS view 的資料ExcelView
- CDS view註解解析 - @Environment.systemFieldView
- 使用 Excel 讀取 SAP ABAP CDS View 通過 ODBC 暴露出來的資料ExcelView
- 一行程式碼將SAP CDS view資料以ALV的方式輸出行程View
- android view 擴充套件方法AndroidView套件
- Cannot find package module sap/cds/commonPackage
- SAP CDS view 如何將 CHAR 型別的資料欄位和當前系統日期比較View型別
- SAP ABAP使用CDS獲取系統資訊
- 如何用ABAP讀取CDS view association的資料View
- SAP Spartacus checkout 流程的擴充套件(extend)實現介紹套件
- 如何用ABAP程式碼讀取CDS view association的資料View
- SAP:檢索幫助擴充套件套件
- SAP CDS entity 中使用 @readonly 進行訪問控制
- SAP Cloud Application Programming CDS 模型間 association 的設定CloudAPP模型