R_BkStmntProcgStsCritltyTP

DDL: R_BKSTMNTPROCGSTSCRITLTYTP Type: view_entity TRANSACTIONAL Package: ODATA_BANKSTATEMENT_MONITOR

Bk Statement Processing Sts Critlty - TP

R_BkStmntProcgStsCritltyTP is a Transactional CDS View that provides data about "Bk Statement Processing Sts Critlty - TP" in SAP S/4HANA. It reads from 1 data source (I_BkStmntProcgStsCritlty) and exposes 10 fields with key field RelatedBankStatementUUID. It has 1 association to related views. Part of development package ODATA_BANKSTATEMENT_MONITOR.

Data Sources (1)

SourceAliasJoin Type
I_BkStmntProcgStsCritlty I_BkStmntProcgStsCritlty from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_BankStmntStsText _BankStatementStatusText $projection.BankStatementStatus = _BankStatementStatusText.BankStatementStatus

Annotations (8)

NameValueLevelField
AbapCatalog.dataMaintenance #RESTRICTED view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Bk Statement Processing Sts Critlty - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY RelatedBankStatementUUID RelatedBankStatementUUID
BkStmntMonitorUUID BkStmntMonitorUUID GUID 16
BankStatementShortID BankStatementShortID Statement Short Key
BankStatementDate BankStatementDate Statement Date
BankStatement BankStatement Bank Statement No.
BankStatementPageNumber BankStatementPageNumber
ClosingBalanceIsInterim ClosingBalanceIsInterim
BankStatementStatus BankStatementStatus
_Monitor _Monitor
_BankStatementStatusText _BankStatementStatusText

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 R_BkStmntProcgStsCritltyTP.
-- 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 R_BkStmntProcgStsCritltyTP AS
SELECT
  RelatedBankStatementUUID,
  BkStmntMonitorUUID,
  BankStatementShortID,
  BankStatementDate,
  BankStatement,
  BankStatementPageNumber,
  ClosingBalanceIsInterim,
  BankStatementStatus
FROM I_BkStmntProcgStsCritlty
LEFT OUTER JOIN I_BankStmntStsText AS _BankStatementStatusText ON BankStatementStatus = _BankStatementStatusText.BankStatementStatus  -- association [1..*]
;