I_SettlmtMgmtDocBankData

DDL: I_SETTLMTMGMTDOCBANKDATA Type: view BASIC

Settlement Management Document Bank Data

I_SettlmtMgmtDocBankData is a Basic CDS View (Dimension) that provides data about "Settlement Management Document Bank Data" in SAP S/4HANA. It reads from 2 data sources (wbrd, wbrk) and exposes 25 fields with key fields SettlmtMgmtDoc, SettlmtMgmtDocAcctType. It has 4 associations to related views.

Data Sources (2)

SourceAliasJoin Type
wbrd wbrd from
wbrk wbrk inner

Associations (4)

CardinalityTargetAliasCondition
[1..1] I_SettlmtMgmtDoc _SettlmtMgmtDoc $projection.SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc
[1..1] I_SettlmtMgmtDocAcctType _SettlmtMgmtDocAcctType $projection.SettlmtMgmtDocAcctType = _SettlmtMgmtDocAcctType.SettlmtMgmtDocAcctType
[0..1] I_Country _BankCountry $projection.BankCountry = _BankCountry.Country
[0..1] I_Bank _Bank $projection.BankCountry = _Bank.BankCountry and $projection.BankInternalID = _Bank.BankInternalID

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IWLFSMTDCBKDATA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey SettlmtMgmtDocAcctType view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
Analytics.internalName #LOCAL view
EndUserText.label Settlement Management Document Bank Data view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY SettlmtMgmtDoc wbrd wbeln Sett. Doc. List
KEY SettlmtMgmtDocAcctType wbrd koart Account type
CreationTime
CreationDate
CreatedByUser
LastChangeDate
BankAccount wbrd bankn Bank acct
BankCountry wbrd banks Bank Ctry/Rgn. Key
BankInternalID
BankControlKey wbrd bkont To Account
BankAccountReferenceText wbrd bkref Reference
DataExchangeInstructionKey
TaxNumber1 wbrd stcd1 Tax Number 1
TaxNumber2 wbrd stcd2 Tax Number 2
TaxNumber3 wbrd stcd3 Tax Number 3
TaxNumber4 wbrd stcd4 Tax Number 4
IsNaturalPerson
VATLiability wbrd stkzu Liable for VAT
SettlmtMgmtDocCat wbrk wdtyp Doc. Category
SettlmtPartnerCat wbrk settl_party Settlmt Part Cat
SettlmtBusProcCat wbrk use_case Use Case Type
_SettlmtMgmtDoc _SettlmtMgmtDoc
_SettlmtMgmtDocAcctType _SettlmtMgmtDocAcctType
_BankCountry _BankCountry
_Bank _Bank

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 I_SettlmtMgmtDocBankData.
-- 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 I_SettlmtMgmtDocBankData AS
SELECT
  wbrd.wbeln AS SettlmtMgmtDoc,
  wbrd.koart AS SettlmtMgmtDocAcctType,
  cast( wbrd.erzet as wlf_created_at preserving type ) AS CreationTime,
  cast( wbrd.erdat as wlf_created_on preserving type ) AS CreationDate,
  cast( wbrd.ernam as wlf_created_by preserving type ) AS CreatedByUser,
  cast( wbrd.aedat as wlf_changed_on preserving type ) AS LastChangeDate,
  wbrd.bankn AS BankAccount,
  wbrd.banks AS BankCountry,
  cast( wbrd.bankl as farp_bankk preserving type ) AS BankInternalID,
  wbrd.bkont AS BankControlKey,
  wbrd.bkref AS BankAccountReferenceText,
  cast( wbrd.dtaws as farp_dtaws preserving type ) AS DataExchangeInstructionKey,
  wbrd.stcd1 AS TaxNumber1,
  wbrd.stcd2 AS TaxNumber2,
  wbrd.stcd3 AS TaxNumber3,
  wbrd.stcd4 AS TaxNumber4,
  cast( wbrd.stkzn as bu_natural_person preserving type ) AS IsNaturalPerson,
  wbrd.stkzu AS VATLiability,
  wbrk.wdtyp AS SettlmtMgmtDocCat,
  wbrk.settl_party AS SettlmtPartnerCat,
  wbrk.use_case AS SettlmtBusProcCat
FROM wbrd
INNER JOIN wbrk ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_SettlmtMgmtDoc AS _SettlmtMgmtDoc ON SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc  -- association [1..1]
LEFT OUTER JOIN I_SettlmtMgmtDocAcctType AS _SettlmtMgmtDocAcctType ON SettlmtMgmtDocAcctType = _SettlmtMgmtDocAcctType.SettlmtMgmtDocAcctType  -- association [1..1]
LEFT OUTER JOIN I_Country AS _BankCountry ON BankCountry = _BankCountry.Country  -- association [0..1]
LEFT OUTER JOIN I_Bank AS _Bank ON BankCountry = _Bank.BankCountry AND BankInternalID = _Bank.BankInternalID  -- association [0..1]
;