I_FactoryCalendarText

DDL: I_FACTORYCALENDARTEXT SQL: IPPFACTORYCALTXT Type: view BASIC

Factory Calendar - Text

I_FactoryCalendarText is a Basic CDS View that provides data about "Factory Calendar - Text" in SAP S/4HANA. It reads from 1 data source (tfact) and exposes 4 fields with key fields FactoryCalendar, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tfact txt from

Associations (1)

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

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPFACTORYCALTXT 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.representativeKey FactoryCalendar view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Factory Calendar - Text view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.type #INHERITED view
AbapCatalog.buffering.type #FULL view
Analytics.dataExtraction.enabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FactoryCalendar
KEY Language
FactoryCalendarName
_Language _Language
@AbapCatalog.sqlViewName: 'IPPFACTORYCALTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true 
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FactoryCalendar'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #M, dataClass: #ORGANIZATIONAL}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Factory Calendar - Text'
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@AbapCatalog.buffering.type: #FULL
@Analytics:{ dataExtraction: { enabled : true  }}
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]


define view I_FactoryCalendarText
  as select from tfact as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'FactoryCalendarName'
  key cast(txt.ident as cr_wfcid preserving type)   as FactoryCalendar,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(txt.spras as spras preserving type)      as Language,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      cast(txt.ltext as pph_fktext preserving type) as FactoryCalendarName,

      // Associations

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