I_BPDebtorGroup

DDL: I_BPDEBTORGROUP Type: view BASIC Package: FS_BP_CDS_BP1030

Debtor Group

I_BPDebtorGroup is a Basic CDS View (Dimension) that provides data about "Debtor Group" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BusinessPartnerDebtorGroup. It has 1 association to related views. Part of development package FS_BP_CDS_BP1030.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BPDebtorGroupText _Text $projection.BusinessPartnerDebtorGroup = _Text.BusinessPartnerDebtorGroup

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IBPDBTRGROUP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey BusinessPartnerDebtorGroup view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.sapObjectNodeType.name DE_BPDebtorGroupCode view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Debtor Group view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerDebtorGroup
_Text _Text
@AbapCatalog: { sqlViewName: 'IBPDBTRGROUP',
                compiler.compareFilter: true,
                buffering.status: #NOT_ALLOWED
              }
@ObjectModel: { usageType: { dataClass: #CUSTOMIZING,
                             serviceQuality: #A,
                             sizeCategory: #M
                           },
                representativeKey: 'BusinessPartnerDebtorGroup',
                dataCategory: #VALUE_HELP,
                sapObjectNodeType.name: 'DE_BPDebtorGroupCode',
                supportedCapabilities: [  #ANALYTICAL_DIMENSION,
                                          #CDS_MODELING_DATA_SOURCE,
                                          #CDS_MODELING_ASSOCIATION_TARGET,
                                          #SQL_DATA_SOURCE,
                                          #EXTRACTION_DATA_SOURCE,
                                          #VALUE_HELP_PROVIDER,
                                          #SEARCHABLE_ENTITY  ],
                modelingPattern: #ANALYTICAL_DIMENSION
              }
@Analytics: { dataExtraction.enabled: true,
              dataCategory: #DIMENSION,
              internalName: #LOCAL 
            }                
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Debtor Group'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_BPDebtorGroup
  as select from dd07l
  association [0..*] to I_BPDebtorGroupText as _Text on $projection.BusinessPartnerDebtorGroup = _Text.BusinessPartnerDebtorGroup
{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_Text'
  key cast ( dd07l.domvalue_l as bp_debtor_group ) as BusinessPartnerDebtorGroup,
      _Text
}
where
      dd07l.domname  = 'BP_DEBTOR_GROUP'
  and dd07l.as4local = 'A'