I_BPHierarchyCore
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)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_amd | fclm_bam_amd | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountInternalID | acc_id | ||
| BankAccountNumber | acc_num | |||
| CompanyCode | bukrs | |||
| BankCountry | banks | |||
| Bank | bankl |
@AbapCatalog.sqlViewName: 'IBPHIERCORE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Business Person based Hierarchy Core'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #BASIC
define view I_BPHierarchyCore as select from fclm_bam_amd {
key acc_id as BankAccountInternalID,
acc_num as BankAccountNumber,
bukrs as CompanyCode,
banks as BankCountry,
bankl as Bank
}
where revision = '0000'
and(
status = '02'
or status = '09'
or status = '10'
or status = '11'
or status = '15'
)
and banks is not null
and banks <> ''
and bankl is not null
and bankl <> '';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCLM_BAM_AMD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA