E_CashFlow
Cash Flow - Extension
E_CashFlow is a Extension CDS View that provides data about "Cash Flow - Extension" in SAP S/4HANA. It reads from 1 data source (fqm_flow) and exposes 2 fields with key fields CashFlowID, ValidFrom.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fqm_flow | Persistence | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #EXTENSION | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Cash Flow - Extension | view | |
| AbapCatalog.extensibility.elementSuffix | CSF | view | |
| AbapCatalog.extensibility.extensible | true | view | |
| AbapCatalog.extensibility.quota.maximumFields | 100 | view | |
| AbapCatalog.extensibility.quota.maximumBytes | 10000 | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
@VDM.viewType: #EXTENSION
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Cash Flow - Extension'
@AbapCatalog.extensibility.elementSuffix: 'CSF'
@AbapCatalog.extensibility: {
extensible: true,
dataSources: ['Persistence'],
quota: {
maximumFields: 100,
maximumBytes: 10000
}
}
@ObjectModel.usageType:{
serviceQuality: #D,
sizeCategory: #XXL,
dataClass: #MIXED
}
define view entity E_CashFlow
as select from fqm_flow as Persistence
{
key Persistence.flow_id as CashFlowID,
key Persistence.valid_from as ValidFrom
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FQM_FLOW"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA