E_CashFlow

DDL: E_CASHFLOW Type: view_entity EXTENSION

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)

SourceAliasJoin Type
fqm_flow Persistence from

Annotations (10)

NameValueLevelField
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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashFlowID fqm_flow flow_id
KEY ValidFrom fqm_flow valid_from
@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":""
}
}*/