P_BkCshBalHistByCshBalDte

DDL: P_BKCSHBALHISTBYCSHBALDTE Type: view_entity TRANSACTIONAL

Balance By Cash Balance Date

P_BkCshBalHistByCshBalDte is a Transactional CDS View that provides data about "Balance By Cash Balance Date" in SAP S/4HANA. It reads from 1 data source (I_CalendarDate) and exposes 4 fields with key fields BankAccountInternalID, CashBalanceType, CalendarDate.

Data Sources (1)

SourceAliasJoin Type
I_CalendarDate CalendarDate from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Balance By Cash Balance Date view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID Balance BankAccountInternalID Technical ID
KEY CashBalanceType Balance CashBalanceType
KEY CalendarDate I_CalendarDate CalendarDate Calendar Date
CashBalanceDate

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_BkCshBalHistByCshBalDte.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW P_BkCshBalHistByCshBalDte AS
SELECT
  Balance.BankAccountInternalID AS BankAccountInternalID,
  Balance.CashBalanceType AS CashBalanceType,
  CalendarDate.CalendarDate AS CalendarDate,
  max(Balance.CashBalanceDate) AS CashBalanceDate
FROM I_CalendarDate AS CalendarDate
;