I_FactoryCalendarBasicText

DDL: I_FACTORYCALENDARBASICTEXT Type: view_entity BASIC

Factory Calendar - Text

I_FactoryCalendarBasicText is a Basic CDS View that provides data about "Factory Calendar - Text" in SAP S/4HANA. It reads from 1 data source (fhc_c_fcal_t) and exposes 3 fields with key fields FactoryCalendarLanguage, FactoryCalendarID.

Data Sources (1)

SourceAliasJoin Type
fhc_c_fcal_t fhc_c_fcal_t from

Annotations (12)

NameValueLevelField
EndUserText.label Factory Calendar - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FactoryCalendarID view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FactoryCalendarLanguage language
KEY FactoryCalendarID factorycalendar_id
FactoryCalendarDescription description
@EndUserText.label: 'Factory Calendar - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@Consumption.ranked: true
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FactoryCalendarID'
@ObjectModel.supportedCapabilities:  [ #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory:  #M


define view entity I_FactoryCalendarBasicText 
  as select from fhc_c_fcal_t

{
      @Semantics.language:true
  key language           as FactoryCalendarLanguage,
  
      @ObjectModel.text.element: ['FactoryCalendarDescription']
  key factorycalendar_id as FactoryCalendarID,

      @Semantics.text:true
      @Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8 }
      description        as FactoryCalendarDescription

}