I_ProductProcmtProfile

DDL: I_PRODUCTPROCMTPROFILE SQL: IPRDPRCMTPROF Type: view BASIC Package: VDM_MD_PRODUCT_DDIC

Product Procurement Profile

I_ProductProcmtProfile is a Basic CDS View (Dimension) that provides data about "Product Procurement Profile" in SAP S/4HANA. It reads from 1 data source (I_MatlProcurementProfile) and exposes 4 fields with key fields ProcurementSubType, Plant. It has 2 associations to related views. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (1)

SourceAliasJoin Type
I_MatlProcurementProfile I_MatlProcurementProfile from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ProductProcmtProfileText _Text $projection.ProcurementSubType = _Text.ProcurementSubType and $projection.Plant = _Text.Plant
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPRDPRCMTPROF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ProcurementSubType view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Product Procurement Profile view
ObjectModel.sapObjectNodeType.name ProcurementSubType view
Consumption.ranked true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProcurementSubType
KEY Plant Plant
_Text _Text
_Plant _Plant
@AbapCatalog.sqlViewName: 'IPRDPRCMTPROF'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ObjectModel: {
  usageType : {
    serviceQuality: #A,
    sizeCategory : #S,
    dataClass: #CUSTOMIZING
    },
  representativeKey: 'ProcurementSubType',
  dataCategory: #VALUE_HELP
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Product Procurement Profile'
@ObjectModel.sapObjectNodeType.name:'ProcurementSubType'
@Consumption.ranked: true
@ObjectModel.modelingPattern:#ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:  [  #ANALYTICAL_DIMENSION,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #SQL_DATA_SOURCE,
                                        #VALUE_HELP_PROVIDER,
                                        #SEARCHABLE_ENTITY ]
@Metadata.ignorePropagatedAnnotations: true

define view I_ProductProcmtProfile
  as select from I_MatlProcurementProfile

  association [0..*] to I_ProductProcmtProfileText as _Text  on  $projection.ProcurementSubType = _Text.ProcurementSubType
                                                             and $projection.Plant              = _Text.Plant

  association [0..1] to I_Plant                    as _Plant on  $projection.Plant = _Plant.Plant

{

      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key cast ( MaterialProcurementProfile as sobsl preserving type ) as ProcurementSubType,

      @Search.defaultSearchElement: true
      @Search.ranking: #MEDIUM
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.foreignKey.association: '_Plant'
      @Consumption.filter.hidden: true
  key Plant                                                        as Plant,

      _Text,
      _Plant

}