C_ProdnSupplyAreaProdnVersion

DDL: C_PRODNSUPPLYAREAPRODNVERSION Type: view_entity CONSUMPTION Package: ODATA_PP_KAB_FIO_MANAGE_PSA

Production Version of PSA Where Used

C_ProdnSupplyAreaProdnVersion is a Consumption CDS View that provides data about "Production Version of PSA Where Used" in SAP S/4HANA. It reads from 1 data source (I_ProductionVersion) and exposes 9 fields with key fields ProductionVersion, Plant, Material. It has 1 association to related views. It is exposed through 1 OData service (UI_PRODSUPPLYAREA_MANAGE). Part of development package ODATA_PP_KAB_FIO_MANAGE_PSA.

Data Sources (1)

SourceAliasJoin Type
I_ProductionVersion I_ProductionVersion from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ProductText _ProductText $projection.Material = _ProductText.Product and _ProductText.Language = $session.system_language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Production Version of PSA Where Used view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PRODSUPPLYAREA_MANAGE UI_PRODSUPPLYAREA_MANAGE V4 C1 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ProductionVersion ProductionVersion
KEY Plant Plant
KEY Material Material Material
ProductionSupplyArea ProductionSupplyArea
TargetProductionSupplyArea TargetProductionSupplyArea
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate Validity End Date
ProductionVersionText ProductionVersionText
ProductName _ProductText ProductName
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Production Version of PSA Where Used'

@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions: true

@VDM.viewType: #CONSUMPTION

@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MASTER}
@Search.searchable:true
@ObjectModel: {
    semanticKey: ['ProductionSupplyArea', 'Plant', 'ProductionVersion']
}
define view entity C_ProdnSupplyAreaProdnVersion
  as select from I_ProductionVersion
  association [0..1] to I_ProductText as _ProductText on  $projection.Material  = _ProductText.Product
                                                      and _ProductText.Language = $session.system_language
{
      @Search.defaultSearchElement: true
      @ObjectModel.text.element: ['ProductionVersionText']
  key ProductionVersion,
  key Plant,

      @Search.defaultSearchElement: true
      @EndUserText.label: 'Material'
      @ObjectModel.text.element: ['ProductName']
  key Material,

      ProductionSupplyArea,
      TargetProductionSupplyArea,

      @EndUserText.label: 'Validity Start Date'
      ValidityStartDate,
      @EndUserText.label: 'Validity End Date'
      ValidityEndDate,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Semantics.text: true
      ProductionVersionText,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Semantics.text: true
      _ProductText.ProductName
}