I_BPHierarchyCore

DDL: I_BPHIERARCHYCORE SQL: IBPHIERCORE Type: view BASIC

Business Person based Hierarchy Core

I_BPHierarchyCore is a Basic CDS View that provides data about "Business Person based Hierarchy Core" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 5 fields with key field BankAccountInternalID.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd fclm_bam_amd from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IBPHIERCORE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Business Person based Hierarchy Core view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID acc_id Technical ID
BankAccountNumber acc_num Account Number
CompanyCode bukrs Value
BankCountry banks Bank Ctry/Rgn. Key
Bank bankl House 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_BPHierarchyCore.
-- 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.
-- SQL view name: IBPHIERCORE

CREATE VIEW I_BPHierarchyCore AS
SELECT
  acc_id AS BankAccountInternalID,
  acc_num AS BankAccountNumber,
  bukrs AS CompanyCode,
  banks AS BankCountry,
  bankl AS Bank
FROM fclm_bam_amd
;