I_BankTP

DDL: I_BANKTP Type: view_entity TRANSACTIONAL

Bank - TP

I_BankTP is a Transactional CDS View that provides data about "Bank - TP" in SAP S/4HANA. It reads from 1 data source (R_BankTP) and exposes 9 fields with key fields BankCountry, BankInternalID.

Data Sources (1)

SourceAliasJoin Type
R_BankTP R_BankTP projection

Annotations (9)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.sapObjectNodeType.name Bank view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Bank - TP view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY BankCountry BankCountry Bank Ctry/Rgn. Key
KEY BankInternalID BankInternalID Bank Key
LongBankName LongBankName
LongBankBranch LongBankBranch
SWIFTCode SWIFTCode SWIFT/BIC
BankNetworkGrouping BankNetworkGrouping
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
BankNumber BankNumber Bank Key
BankCategory BankCategory

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_BankTP.
-- 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_BankTP AS
SELECT
  BankCountry,
  BankInternalID,
  LongBankName,
  LongBankBranch,
  SWIFTCode,
  BankNetworkGrouping,
  IsMarkedForDeletion,
  BankNumber,
  BankCategory
FROM R_BankTP
;