I_ProductStatus

DDL: I_PRODUCTSTATUS Type: view BASIC

Cross-Plant Product Status

I_ProductStatus is a Basic CDS View (Dimension) that provides data about "Cross-Plant Product Status" in SAP S/4HANA. It reads from 1 data source (t141) and exposes 2 fields with key field Status. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t141 t141 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductStatusText _Text $projection.Status = _Text.Status

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IPRDSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
EndUserText.label Cross-Plant Product Status view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey Status view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.sapObjectNodeType.name ProductProfileCode view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Status
_Text _Text
@AbapCatalog:{
   sqlViewName: 'IPRDSTATUS',
   compiler.compareFilter: true,
   preserveKey: true,
   buffering: {
     status: #ACTIVE,
     type: #FULL
   }
 }
@Analytics: {
  dataCategory: #DIMENSION ,
  dataExtraction: {
    enabled: true,
    delta.changeDataCapture.automatic: true
  }
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Cross-Plant Product Status'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@ObjectModel: {
  representativeKey: 'Status',
  supportedCapabilities: [ #SQL_DATA_SOURCE,
                           #CDS_MODELING_DATA_SOURCE,
                           #CDS_MODELING_ASSOCIATION_TARGET,
                           #VALUE_HELP_PROVIDER,
                           #SEARCHABLE_ENTITY,
                           #ANALYTICAL_DIMENSION,
                           #EXTRACTION_DATA_SOURCE
  ],
  usageType: {
    serviceQuality: #A,
    sizeCategory : #S,
    dataClass: #CUSTOMIZING
  },
  dataCategory: #VALUE_HELP,
  sapObjectNodeType.name:'ProductProfileCode'
}
//@ObjectModel.resultSet.sizeCategory: #XS

@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked: true

define view I_ProductStatus
  as select from t141
  association [0..*] to I_ProductStatusText as _Text on $projection.Status = _Text.Status
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast(t141.mmsta as profilecode preserving type ) as Status,

      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T141"
],
"ASSOCIATED":
[
"I_PRODUCTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/