I_BusinessArea

DDL: I_BUSINESSAREA SQL: IFIBUSAREA Type: view BASIC Package: FINS_BUSINESS_AREA_VDM

Business Area

I_BusinessArea is a Basic CDS View (Dimension) that provides data about "Business Area" in SAP S/4HANA. It reads from 1 data source (tgsb) and exposes 3 fields with key field BusinessArea. It has 2 associations to related views. It is exposed through 9 OData services (C_SALESORDERMANAGE_SD, FARR_SD_REV_CATCHUP, UI_BILLINGDOCUMENT_MANAGE, ...). Part of development package FINS_BUSINESS_AREA_VDM.

Data Sources (1)

SourceAliasJoin Type
tgsb tgsb from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BusinessAreaText _Text $projection.BusinessArea = _Text.BusinessArea
[0..*] I_BusinessAreaHierNode _BusinessAreaHierNode $projection.BusinessArea = _BusinessAreaHierNode.BusinessArea

Annotations (20)

NameValueLevelField
EndUserText.label Business Area view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIBUSAREA view
ObjectModel.representativeKey BusinessArea view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
Search.searchable true view
AbapCatalog.preserveKey true view
ObjectModel.sapObjectNodeType.name BusinessArea view

OData Services (9)

ServiceBindingVersionContractRelease
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
FARR_SD_REV_CATCHUP FARR_SDB_REV_CATCHUP V2 C1 NOT_RELEASED
UI_BILLINGDOCUMENT_MANAGE UI_BILLINGDOCUMENT_MANAGE V4 C1 NOT_RELEASED
UI_CADOCUMENT_MNG UI_CADOCUMENT_MNG V4 C1 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_DEBITMEMOREQUESTMANAGE UI_DEBITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_INBOUNDDELIVERYMANAGE UI_INBOUNDDELIVERYMANAGE V4 C1 NOT_RELEASED
UI_PRELIMBILLINGDOCUMENT_F6990 UI_PRELIMBILLINGDOCUMENT_F6990 V4 C1 NOT_RELEASED
UI_SLSORDERWITHOUTCHARGEMANAGE UI_SLSORDERWITHOUTCHARGEMANAGE V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessArea gsber
_Text _Text
_BusinessAreaHierNode _BusinessAreaHierNode
@EndUserText.label: 'Business Area'
@Analytics:{
    dataCategory: #DIMENSION,
    dataExtraction: {
        enabled: true,
        delta.changeDataCapture: {
        automatic: true
        }
    }
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIBUSAREA'
@ObjectModel.representativeKey: 'BusinessArea'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.numberOfKeyFields: 1
@AccessControl.authorizationCheck: #CHECK
@Metadata.allowExtensions:true
@Search.searchable: true
@AbapCatalog.preserveKey:true
@ObjectModel.sapObjectNodeType.name: 'BusinessArea'
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, 
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #SQL_DATA_SOURCE]

define view I_BusinessArea
  as select from tgsb
  association [0..*] to I_BusinessAreaText     as _Text                 on $projection.BusinessArea = _Text.BusinessArea
  association [0..*] to I_BusinessAreaHierNode as _BusinessAreaHierNode on $projection.BusinessArea = _BusinessAreaHierNode.BusinessArea
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement:true
      @Search.fuzzinessThreshold:0.8
      @Search.ranking:#HIGH
      @ObjectModel.hierarchy.association: '_BusinessAreaHierNode'
  key gsber as BusinessArea,
      _Text,
      _BusinessAreaHierNode

};