There exist multiple alternatives for enhancing CDS Views for Analytical applications, including those such as Cost Centers - Actuals, Cost Centers - Plan/Actuals, amongst others.
As each of our inquiries consistently functions in coordination with either I_JournalEntryItemCube or I_ActualPlanJournalEntryItemCube, these cubes necessitate extension to efficiently integrate with your specific fields within the aforementioned applications.
CDS Query (object) | CDS Query (2C+SQL View) | CDS Query WebDynpro Configuration | App ID |
C_CostCenterQ2001 | CFICOSTCTRQ2001 | FIS_FPM_OVP_IPACTCC | F0963 |
C_CostCenterPlanActQ2001 | CFICCPLANACT2001 | FIS_FPM_OVP_IPPLANACTCC01 | W0081 |
C_ProfitCenterQ2701 | CFIPROFCTRQ2701 | FIS_FPM_OVP_IPACTPC | F0959 |
C_ProfitCenterPlanActQ2701 | CFIPCPLANACT2701 | FIS_FPM_OVP_IPPLANACTPC01 | W0079 |
C_MarketSegmentQ2501 | CFIMARKSEGMQ2501 | FIS_FPM_OVP_IPACTMS | F0960 |
C_MarketSegmentPlanActQ2501 | CFIMSPLANACT2501 | FIS_FPM_OVP_IPPLANACTMS01 | W0078 |
C_ProfitAndLossQ2901 | CFIPROFLOSSQ2901 | FIS_FPM_OVP_IPACTPL | F0958 |
C_ProfitAndLossPlanActQ2903 | CFIPLPLANACT | FIS_FPM_OVP_IPPLANACTPL03 | F1710 |
C_FunctionalAreasQ2801 | CFIFAQ2801 | FIS_FPM_OVP_IPACTFA | F1583A |
C_FunctionalAreaPlanActQ2801 | CFIFAPLANACT2801 | FIS_FPM_OVP_IPPLANACTFA01 | W0077 |
C_InternalOrderPlanActQ2101 | CFIIOPLANACT2101 | FIS_FPM_OVP_IPPLANACTIO01 | W0076 |
C_SalesOrderQ2301 | CFISALESORDQ2301 | FIS_FPM_OVP_IPACTSO | F1582A |
C_ProjectQ2201 | CFIPROJECTQ2201 | FIS_FPM_OVP_IPACTPR | F0961 |
C_ProjectPlanActQ2201 | CFIPRPLANACT2201 | FIS_FPM_OVP_IPPLANACTPR01 | W0080 |
For more information, see another SAP Blog:
https://community.sap.com/t5/enterprise-resource-planning-blogs-by-sap/adding-field-in-standard-fior...
4. Extension of Import Financial Plan Data
You want to use the Fiori App: Import Financial Plan Data with your custom fields, but this is not possible as the field is not present in C_GenericPlanQ3001. Once you do an extension for this CDS View, you will be able to import data for your custom field.
5. Extension of API A_CostCenter
You may come across an extension of API CDS View for SAP Analytical Cloud or any other purpose. The process is the same.
This can be extended in two ways.
The first way is to use the Fiori App: Custom Fields and Logic. In this app, you will create a completely new field, which will be added to the CSKS table (Master Data Cost Center) as well as in CDS View E_COSTCENTER, A_COSTCENTER and others, depending on what you choose.
The second option is to choose a field which is already in the CSKS table and can be either your new custom-made or some other which cannot be seen within the API.
Extension, in this case, works the same way as with Custom Fields and Logic, except for the fact you need to create the code on your own. First, you need to extend the E_COSTCENTER of your new field and activate it. This will enable this field for I_COSTCENTER, which is the Master Data view on the table CSKS.
As a second step, you need to extend the A_COSTCENTER, which is the API for the Master Data. This will add the selected field to the Service API_COSTCENTER and enable it for reporting.
The code for the CDS Extension will look like this:
@AbapCatalog.sqlViewAppendName: 'Z_TEST'
extend view E_CostCenter with ZFO_EXTENSIOM
{
Persistence. verak as verak
}
@AbapCatalog.sqlViewAppendName: 'Z_TEST_A'
extend view A_CostCenter with ZFO_EXTENSION_A
{
_Extension.verak as Z_VERAK
}
Due to the different syntax in both CDS Views, you need to use:
Please share your feedback or thoughts in the comment section.
Follow me for more tips about BW or BPC in general so I can create more posts about these topics.
You can also follow BW Planning, post and answer questions (https://answers.sap.com/tags/369280904654660339247670897548678), and read other posts on the topic (https://blogs.sap.com/tags/369280904654660339247670897548678/) for more content.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
26 | |
15 | |
15 | |
14 | |
11 | |
9 | |
8 | |
7 | |
7 | |
7 |