A_CnsldtnPartnerFuncnlArea

DDL: A_CNSLDTNPARTNERFUNCNLAREA Type: view BASIC

Combined Partner Functional Area

A_CnsldtnPartnerFuncnlArea is a Basic CDS View that provides data about "Combined Partner Functional Area" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFunctionalArea) and exposes 6 fields with key field FunctionalArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFunctionalArea I_CnsldtnFunctionalArea from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnPartFuncnlAreaT _CnsldtnPartFuncnlAreaT $projection.FunctionalArea = _CnsldtnPartFuncnlAreaT.FunctionalArea
[0..*] A_CnsldtnPartFuncnlAreaHier _CnsldtnPartFuncnlAreaHier $projection.MDHierType = _CnsldtnPartFuncnlAreaHier.MDHierType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSPARTFUNCAREA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Partner Functional Area view
OData.entitySet.name PartnerFunctionalArea view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FunctionalArea FunctionalArea Partner Functional Area
AdditionalMasterDataSource AdditionalMasterDataSource
MDHierType
HierarchyType
_CnsldtnPartFuncnlAreaT _CnsldtnPartFuncnlAreaT
_CnsldtnPartFuncnlAreaHier _CnsldtnPartFuncnlAreaHier
@AbapCatalog:{
  sqlViewName: 'ACSPARTFUNCAREA',
  compiler.compareFilter: true,
  preserveKey: true
  }
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #C,
  sizeCategory: #L
}
@ObjectModel.representativeKey: ['FunctionalArea']
@VDM:{
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
  }
@EndUserText.label: 'Combined Partner Functional Area'
@OData.entitySet.name: 'PartnerFunctionalArea'

define view A_CnsldtnPartnerFuncnlArea
  as select from I_CnsldtnFunctionalArea

  association [0..*] to A_CnsldtnPartFuncnlAreaT    as _CnsldtnPartFuncnlAreaT    on $projection.FunctionalArea = _CnsldtnPartFuncnlAreaT.FunctionalArea

  association [0..*] to A_CnsldtnPartFuncnlAreaHier as _CnsldtnPartFuncnlAreaHier on $projection.MDHierType = _CnsldtnPartFuncnlAreaHier.MDHierType
{
      @EndUserText.label: 'Partner Functional Area'
      @ObjectModel.text.association: '_CnsldtnPartFuncnlAreaT'
  key FunctionalArea,

      AdditionalMasterDataSource,

      @Consumption.hidden: true
      cast ( 'CS05' as hrytype ) as MDHierType,

      @Consumption.hidden: true
      cast ( 'CS05' as hrytype ) as HierarchyType,

      _CnsldtnPartFuncnlAreaT,
      _CnsldtnPartFuncnlAreaHier
}