I_FactoryCalendarBasicText
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)
| Source | Alias | Join Type |
|---|---|---|
| fhc_c_fcal_t | fhc_c_fcal_t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA