I_LeadTimeReducnStrategyText

DDL: I_LEADTIMEREDUCNSTRATEGYTEXT SQL: IPPLTREDSTRTTEXT Type: view BASIC Package: VDM_PP_CRP

Lead Time Reduction Strategy - Text

I_LeadTimeReducnStrategyText is a Basic CDS View that provides data about "Lead Time Reduction Strategy - Text" in SAP S/4HANA. It reads from 1 data source (t499p) and exposes 7 fields with key fields Plant, LeadTimeReductionStrategy, Language. It has 3 associations to related views. Part of development package VDM_PP_CRP.

Data Sources (1)

SourceAliasJoin Type
t499p txt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] I_LeadTimeReductionStrategy _Strategy $projection.LeadTimeReductionStrategy = _Strategy.LeadTimeReductionStrategy and $projection.Plant = _Strategy.Plant

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName IPPLTREDSTRTTEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey LeadTimeReductionStrategy view
ObjectModel.sapObjectNodeType.name LeadTimeReductionStrategyText view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Lead Time Reduction Strategy - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant t499p werks
KEY LeadTimeReductionStrategy t499p rstra
KEY Language t499p spras
LeadTimeReductionStrategyName t499p txt
_Strategy _Strategy
_Plant _Plant
_Language _Language
@AbapCatalog.sqlViewName: 'IPPLTREDSTRTTEXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'LeadTimeReductionStrategy'
@ObjectModel.sapObjectNodeType.name: 'LeadTimeReductionStrategyText'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Lead Time Reduction Strategy - Text'

define view I_LeadTimeReducnStrategyText
  as select from t499p as txt
  association [0..1] to I_Language                  as _Language on  $projection.Language = _Language.Language
  association [1..1] to I_Plant                     as _Plant    on  $projection.Plant = _Plant.Plant
  association [1..1] to I_LeadTimeReductionStrategy as _Strategy on  $projection.LeadTimeReductionStrategy = _Strategy.LeadTimeReductionStrategy
                                                                 and $projection.Plant                     = _Strategy.Plant
{
      @ObjectModel.foreignKey.association: '_Plant'
  key txt.werks as Plant,
      @ObjectModel.foreignKey.association: '_Strategy'
      @ObjectModel.text.element: ['LeadTimeReductionStrategyName']
  key txt.rstra as LeadTimeReductionStrategy,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt.txt   as LeadTimeReductionStrategyName,

      // Associations

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