C_BankGroupRootNodeValueHelp
Bank Group
C_BankGroupRootNodeValueHelp is a Consumption CDS View that provides data about "Bank Group" in SAP S/4HANA. It reads from 1 data source (but000) and exposes 17 fields with key field BusinessPartnerNumber. It has 1 association to related views. It is exposed through 1 OData service (UI_BANKRELATIONSHIPDOC). Part of development package FCLM_BAM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| but000 | but000 | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BusinessPartnerVH | _BusinessPartnerVH | $projection.BusinessPartnerNumber = _BusinessPartnerVH.BusinessPartner |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Bank Group | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | true | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| UI.headerInfo.typeName | Business Partner | view | |
| UI.headerInfo.typeNamePlural | Business Partners | view | |
| UI.headerInfo.typeImageUrl | sap-icon: title: { value: | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Consumption.ranked | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | BusinessPartnerNumber | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_BANKRELATIONSHIPDOC | UI_BANKRELATIONSHIPDOC_O4 | V4 | C1 | NOT_RELEASED |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerNumber | BP | BusinessPartner | |
| BusinessPartnerName | Business Partner Name | |||
| BusinessPartner2 | _BPRelationship | BusinessPartner2 | ||
| AuthorizationGroup | BP | AuthorizationGroup | ||
| IsBusinessPurposeCompleted | ||||
| DataControllerSet | ||||
| DataController1 | ||||
| DataController2 | ||||
| DataController3 | ||||
| DataController4 | ||||
| DataController5 | ||||
| DataController6 | ||||
| DataController7 | ||||
| DataController8 | ||||
| DataController9 | ||||
| DataController10 | ||||
| _BusinessPartnerVH | _BusinessPartnerVH |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Bank Group'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MASTER
}
@Search.searchable: true
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@UI.headerInfo: {
typeName: 'Business Partner',
typeNamePlural: 'Business Partners',
typeImageUrl: 'sap-icon://appointment-2',
title: { value: 'BusinessPartnerNumber' }
}
@ObjectModel.dataCategory:#VALUE_HELP
@Consumption.ranked: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'BusinessPartnerNumber'
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity C_BankGroupRootNodeValueHelp as
select distinct from I_BusinessPartner_to_BP_Role as BP //I_BPBankLinkage
inner join but000 as but000 on BP.BusinessPartner = but000.partner
and but000.xdele <> 'X'
left outer to one join I_BPRelationship_2 as _BPRelationship on BP.BusinessPartner = _BPRelationship.BusinessPartner1
and _BPRelationship.RelationshipCategory = 'FSB002'
association [0..1] to I_BusinessPartnerVH as _BusinessPartnerVH on $projection.BusinessPartnerNumber = _BusinessPartnerVH.BusinessPartner
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8
}
@UI.lineItem: [
{ position: 1, importance: #HIGH, label: 'Business Partner Number' }
]
@ObjectModel.text.element: ['BusinessPartnerName']
key BP.BusinessPartner as BusinessPartnerNumber,
@Search: {
defaultSearchElement: true,
ranking: #MEDIUM,
fuzzinessThreshold: 0.8
}
@EndUserText.label: 'Business Partner Name'
@UI.lineItem: [
{ position: 2, importance: #HIGH, label: 'Business Partner Name' }
]
@Semantics.text: true
BP._BusinessPartner.OrganizationBPName1 as BusinessPartnerName,
@UI.hidden:true
_BPRelationship.BusinessPartner2,
@Consumption.hidden: true
BP.AuthorizationGroup as AuthorizationGroup,
@Consumption.hidden: true
@Semantics.booleanIndicator
BP._BusinessPartner.IsBusinessPurposeCompleted as IsBusinessPurposeCompleted,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataControllerSet as DataControllerSet,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController1 as DataController1,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController2 as DataController2,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController3 as DataController3,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController4 as DataController4,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController5 as DataController5,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController6 as DataController6,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController7 as DataController7,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController8 as DataController8,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController9 as DataController9,
@Consumption.hidden:true
@UI.hidden:true
BP._BusinessPartner.DataController10 as DataController10,
_BusinessPartnerVH
} where
BP.BusinessPartnerRole = 'TR0703' and _BPRelationship.BusinessPartner2 is null
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