R_BkAcctAssignmentSelection

DDL: R_BKACCTASSIGNMENTSELECTION Type: view_entity TRANSACTIONAL Package: FCLM_BAM_ACCT_ASSIGNMENT

Bank Account Sel for Assignment group

R_BkAcctAssignmentSelection is a Transactional CDS View that provides data about "Bank Account Sel for Assignment group" in SAP S/4HANA. It reads from 1 data source (I_BkAcctAssignmentSelection) and exposes 17 fields with key fields BankAccountInternalID, BkAcctIntrstCndnUUID. It has 1 association to related views. Part of development package FCLM_BAM_ACCT_ASSIGNMENT.

Data Sources (1)

SourceAliasJoin Type
I_BkAcctAssignmentSelection I_BkAcctAssignmentSelection from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BkAcctIntrstCndnRateDetail _BkAcctAssignSelectGroupLink $projection.BkAcctAssgmtSelGroupUUID = _BkAcctAssignSelectGroupLink.BkAcctIntrstCndnUUID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Bank Account Sel for Assignment group view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.sapObjectNodeType.name BankAccount view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
KEY BkAcctIntrstCndnUUID _BkAcctIntrstConditionManage BkAcctIntrstCndnUUID
BkAcctAssgmtSelGroupUUID BkAcctAssgmtSelGroupUUID
LocalCreatedAtDateTime LocalCreatedAtDateTime Created On
LocalCreatedBy LocalCreatedBy Created By
LastChangedAtDateTime LastChangedAtDateTime Changed On
LocalLastChangedBy LocalLastChangedBy User Name
_BankAccDesc _BankAccDesc
_BankAccount _BankAccount
BankAccountType BankAccountType Account Type
BankControlKey BankControlKey Control Key
BankCountry BankCountry Bank Ctry/Rgn. Key
BankAccountNumber BankAccountNumber Bank Account
BankAccountCurrency BankAccountCurrency Currency
CompanyCode CompanyCode Receiver Company Code
_BkAcctIntrstConditionManage _BkAcctIntrstConditionManage
_BkAcctAssignSelectGroupLink _BkAcctAssignSelectGroupLink

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_BkAcctAssignmentSelection.
-- 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_BkAcctAssignmentSelection AS
SELECT
  BankAccountInternalID,
  _BkAcctIntrstConditionManage.BkAcctIntrstCndnUUID AS BkAcctIntrstCndnUUID,
  BkAcctAssgmtSelGroupUUID,
  LocalCreatedAtDateTime,
  LocalCreatedBy,
  LastChangedAtDateTime,
  LocalLastChangedBy,
  BankAccountType,
  BankControlKey,
  BankCountry,
  BankAccountNumber,
  BankAccountCurrency,
  CompanyCode
FROM I_BkAcctAssignmentSelection
LEFT OUTER JOIN I_BkAcctIntrstCndnRateDetail AS _BkAcctAssignSelectGroupLink ON BkAcctAssgmtSelGroupUUID = _BkAcctAssignSelectGroupLink.BkAcctIntrstCndnUUID  -- association [1..1]
;