C_BankGroupRootNodeValueHelp

DDL: C_BANKGROUPROOTNODEVALUEHELP Type: view_entity CONSUMPTION

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.

Data Sources (1)

SourceAliasJoin Type
but000 but000 inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BusinessPartnerVH _BusinessPartnerVH $projection.BusinessPartnerNumber = _BusinessPartnerVH.BusinessPartner

Annotations (15)

NameValueLevelField
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

Fields (17)

KeyFieldSource TableSource FieldDescription
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'
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

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BPRELATIONSHIP_2",
"I_BUSINESSPARTNER",
"I_BUSINESSPARTNER_TO_BP_ROLE",
"BUT000"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNERVH"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/