I_ProductionResourceUsageText

DDL: I_PRODUCTIONRESOURCEUSAGETEXT SQL: IPPPRODNRESUSGTX Type: view BASIC

Production Resource Usage - Text

I_ProductionResourceUsageText is a Basic CDS View that provides data about "Production Resource Usage - Text" in SAP S/4HANA. It reads from 1 data source (tc23t) and exposes 5 fields with key fields Language, ProductionResourceUsage. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tc23t txt from

Associations (2)

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

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPPRODNRESUSGTX view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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 ProductionResourceUsage 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 Production Resource Usage - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language tc23t spras
KEY ProductionResourceUsage tc23t planv
ProductionResourceUsageDesc tc23t txt
_Language _Language
_ProductionResourceUsage _ProductionResourceUsage
@AbapCatalog.sqlViewName: 'IPPPRODNRESUSGTX'
@AbapCatalog.buffering: { status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001 }
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: 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, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ProductionResourceUsage'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Production Resource Usage - Text'

define view I_ProductionResourceUsageText
  as select from tc23t as txt

  association [0..1] to I_Language                as _Language                on $projection.Language = _Language.Language
  association [0..1] to I_ProductionResourceUsage as _ProductionResourceUsage on $projection.ProductionResourceUsage = _ProductionResourceUsage.ProductionResourceUsage

{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras as Language,
      @ObjectModel.foreignKey.association: '_ProductionResourceUsage'
  key txt.planv as ProductionResourceUsage,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt.txt   as ProductionResourceUsageDesc,

      _Language,
      _ProductionResourceUsage
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TC23T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PRODUCTIONRESOURCEUSAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/