A_ATPRlvtProductMRPAreaSegment

DDL: A_ATPRLVTPRODUCTMRPAREASEGMENT Type: view_entity CONSUMPTION

Product Availability per Segment

A_ATPRlvtProductMRPAreaSegment is a Consumption CDS View that provides data about "Product Availability per Segment" in SAP S/4HANA. It reads from 3 data sources (I_Product, I_ATPRlvtProdMRPAreaPlant, I_SegmentationValdCombinations) and exposes 4 fields with key fields Product, MRPArea, ProductSegmentationValueCode.

Data Sources (3)

SourceAliasJoin Type
I_Product _Product inner
I_ATPRlvtProdMRPAreaPlant _ProductMRPArea from
I_SegmentationValdCombinations _SegmentValue inner

Annotations (10)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
OData.entityType.name A_ATPRlvtProductMRPAreaSegment_Type view
Feature SW:ATP_INFO_API_SEGMENT_SWITCH view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Product Availability per Segment view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product I_ATPRlvtProdMRPAreaPlant Product
KEY MRPArea I_ATPRlvtProdMRPAreaPlant MRPArea
KEY ProductSegmentationValueCode I_SegmentationValdCombinations ProductSegmentationValueCode
SegmentationStrategy I_Product SegmentationStrategy
@VDM: {
  viewType: #CONSUMPTION,
  lifecycle.contract.type: #PUBLIC_REMOTE_API,
  usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
}
@ObjectModel: {
   usageType: {
     serviceQuality: #C,
     sizeCategory:   #XL,
     dataClass:      #MASTER
   }
}
@OData.entityType.name: 'A_ATPRlvtProductMRPAreaSegment_Type'
@Feature: 'SW:ATP_INFO_API_SEGMENT_SWITCH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Product Availability per Segment'
define root view entity A_ATPRlvtProductMRPAreaSegment
  as select from I_ATPRlvtProdMRPAreaPlant as _ProductMRPArea
    inner join   I_Product as _Product on _Product.Product = _ProductMRPArea.Product
    inner join   I_SegmentationValdCombinations as _SegmentValue
                                       on  _SegmentValue.SegmentationStrategy = _Product.SegmentationStrategy
{
  key _ProductMRPArea.Product,
  key _ProductMRPArea.MRPArea,
  key _SegmentValue.ProductSegmentationValueCode,
  _Product.SegmentationStrategy
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ATPRLVTPRODMRPAREAPLANT",
"I_PRODUCT",
"I_SEGMENTATIONVALDCOMBINATIONS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/