I_FldLogsMaterialTextBasic
FL Material - Text
I_FldLogsMaterialTextBasic is a Basic CDS View that provides data about "FL Material - Text" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key fields Language, Material. Part of development package FLOG_RETURN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| makt | makt | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | FL Material - Text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | Material | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | Material | matnr | ||
| MaterialName | maktx |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'FL Material - Text'
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'Material'
define view entity I_FldLogsMaterialTextBasic
as select from makt
{
@Semantics.language: true
key spras as Language,
@ObjectModel.text.element: ['MaterialName']
key matnr as Material,
@Semantics.text: true
maktx as MaterialName
}
where
spras = $session.system_language
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