I_MRPLotSizingProcedureText

DDL: I_MRPLOTSIZINGPROCEDURETEXT SQL: IPPLOTSIZPROCTXT Type: view BASIC

MRP Lot Sizing Procedure - Text

I_MRPLotSizingProcedureText is a Basic CDS View that provides data about "MRP Lot Sizing Procedure - Text" in SAP S/4HANA. It reads from 1 data source (t439t) and exposes 5 fields with key fields MaterialLotSizingProcedure, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t439t txt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MRPLotSizingProcedure _LotSizingProcedure $projection.MaterialLotSizingProcedure = _LotSizingProcedure.MaterialLotSizingProcedure
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPLOTSIZPROCTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 000 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaterialLotSizingProcedure view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label MRP Lot Sizing Procedure - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaterialLotSizingProcedure t439t disls
KEY Language t439t spras
MaterialLotSizingProcedureName t439t loslt
_LotSizingProcedure _LotSizingProcedure
_Language _Language
@AbapCatalog.sqlViewName: 'IPPLOTSIZPROCTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #FULL, numberOfKeyFields: 000}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MaterialLotSizingProcedure'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'MRP Lot Sizing Procedure - Text'

define view I_MRPLotSizingProcedureText
  as select from t439t as txt

  association [1..1] to I_MRPLotSizingProcedure as _LotSizingProcedure on $projection.MaterialLotSizingProcedure = _LotSizingProcedure.MaterialLotSizingProcedure
  association [0..1] to I_Language              as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_LotSizingProcedure'
      @ObjectModel.text.element: ['MaterialLotSizingProcedureName']
  key txt.disls as MaterialLotSizingProcedure,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key txt.spras as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt.loslt as MaterialLotSizingProcedureName,
    
      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _LotSizingProcedure,
      _Language
};