R_BusinessPartnerBankDraft

DDL: R_BUSINESSPARTNERBANKDRAFT Type: view_entity BASIC Package: MDC_BUPA_BO

Business Partner Bank-Draft

R_BusinessPartnerBankDraft is a Basic CDS View that provides data about "Business Partner Bank-Draft" in SAP S/4HANA. It reads from 1 data source (bupa_bank_d_2) and exposes 44 fields with key fields BusinessPartner, BankIdentification, DraftUUID. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
bupa_bank_d_2 bupa_bank_d_2 from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Partner Bank-Draft view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (44)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner businesspartner Issuing Authority
KEY BankIdentification bankidentification Bank Details
KEY DraftUUID draftuuid UUID
ParentDraftUUID parentdraftuuid NodeID
BankIdnForEditValue bankidnforeditvalue Bank Details
BankCountryKey bankcountrykey Bank Ctry/Reg.
BankName bankname Bank Name
BankNumber banknumber Bank Key
SWIFTCode swiftcode SWIFT/BIC
BankControlKey bankcontrolkey Control Key
BankAccountHolderName bankaccountholdername Account Holder
BankAccountName bankaccountname Account Name
BankValidityStartDate bankvaliditystartdate
BankValidityEndDate bankvalidityenddate
IBAN iban IBAN House Bank
IBANValidityStartDate ibanvaliditystartdate IBAN Valid From
BankAccount bankaccount Bank acct
BankAccountReferenceText bankaccountreferencetext Reference
CollectionAuthInd collectionauthind Collect.author.
BusinessPartnerExternalBankID businesspartnerexternalbankid Extern.bank ID
BPBankDetailsChangeDate bpbankdetailschangedate Date of Change
BPBankDetailsChangeTargetID bpbankdetailschangetargetid Target Details
BPBankIsProtected bpbankisprotected Sensitivity
CityName cityname Name
AuthorizationGroup authorizationgroup AuthorizGroup
IsBusinessPurposeCompleted isbusinesspurposecompleted Purpose Completed
BPHasActiveEntity bphasactiveentity Is active
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
DataControllerSet datacontrollerset Data Ctrlr. Set
DataController1 datacontroller1 Data Controller
DataController2 datacontroller2 Data Controller
DataController3 datacontroller3 Data Controller
DataController4 datacontroller4 Data Controller
DataController5 datacontroller5 Data Controller
DataController6 datacontroller6 Data Controller
DataController7 datacontroller7 Data Controller
DataController8 datacontroller8 Data Controller
DataController9 datacontroller9 Data Controller
DataController10 datacontroller10 Data Controller
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes

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_BusinessPartnerBankDraft.
-- 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_BusinessPartnerBankDraft AS
SELECT
  BusinessPartner,
  BankIdentification,
  DraftUUID,
  ParentDraftUUID,
  BankIdnForEditValue,
  BankCountryKey,
  BankName,
  BankNumber,
  SWIFTCode,
  BankControlKey,
  BankAccountHolderName,
  BankAccountName,
  BankValidityStartDate,
  BankValidityEndDate,
  IBAN,
  IBANValidityStartDate,
  BankAccount,
  BankAccountReferenceText,
  CollectionAuthInd,
  BusinessPartnerExternalBankID,
  BPBankDetailsChangeDate,
  BPBankDetailsChangeTargetID,
  BPBankIsProtected,
  CityName,
  AuthorizationGroup,
  IsBusinessPurposeCompleted,
  BPHasActiveEntity,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  DataControllerSet,
  DataController1,
  DataController2,
  DataController3,
  DataController4,
  DataController5,
  DataController6,
  DataController7,
  DataController8,
  DataController9,
  DataController10,
  HasActiveEntity,
  DraftFieldChanges
FROM bupa_bank_d_2
;