I_MRPLotSizingProcedureTypeTxt

DDL: I_MRPLOTSIZINGPROCEDURETYPETXT SQL: ILOTSZPROCTYPTXT Type: view BASIC

Type of Lot Sizing Procedure - Text

I_MRPLotSizingProcedureTypeTxt is a Basic CDS View that provides data about "Type of Lot Sizing Procedure - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, LotSizingProcedureType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t t from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ILOTSZPROCTYPTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey LotSizingProcedureType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Type of Lot Sizing Procedure - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY LotSizingProcedureType
DomainValue dd07t domvalue_l
LotSizingProcedureTypeName dd07t ddtext
_LotSizingProcedureType _LotSizingProcedureType
_Language _Language
@AbapCatalog.sqlViewName: 'ILOTSZPROCTYPTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true 
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #SQL_DATA_SOURCE]
@ObjectModel.representativeKey: 'LotSizingProcedureType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Type of Lot Sizing Procedure - Text'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view I_MRPLotSizingProcedureTypeTxt as select from dd07t as t

  association to parent I_MRPLotSizingProcedureType as _LotSizingProcedureType on $projection.LotSizingProcedureType = _LotSizingProcedureType.LotSizingProcedureType
  association [0..1] to I_Language                  as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'      
      @Semantics.language: true
  key cast(t.ddlanguage as spras preserving type)                     as Language,
      @ObjectModel.foreignKey.association: '_LotSizingProcedureType'  
      @ObjectModel.text.element: ['LotSizingProcedureTypeName']
  key cast(substring( domvalue_l, 1, 1) as vdm_losvf preserving type) as LotSizingProcedureType,
      @Analytics.hidden: true
      @Consumption.hidden: true
      t.domvalue_l                                                    as DomainValue,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      t.ddtext                                                        as LotSizingProcedureTypeName,
  
      // Associations

      _LotSizingProcedureType,
      _Language
}
  where t.domname = 'LOSVF'
    and t.as4local = 'A'
    and t.as4vers  = '0000';