I_FldLogsSupplyProcessText
Field Logistics:Supply Process text
I_FldLogsSupplyProcessText is a Basic CDS View that provides data about "Field Logistics:Supply Process text" in SAP S/4HANA. It reads from 1 data source (flog_supproc_tx) and exposes 3 fields with key fields Language, FldLogsSupplyProcess.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| flog_supproc_tx | flog_supproc_tx | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLSUPROCTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Field Logistics:Supply Process text | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | fldlogssupplyprocess | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | FldLogsSupplyProcess | fldlogssupplyprocess | ||
| FldLogsSupplyProcessText | sproctxt |
@AbapCatalog.sqlViewName: 'IFLSUPROCTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.resultSet.sizeCategory: #XS
@EndUserText.label: 'Field Logistics:Supply Process text'
@Search.searchable: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #B
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'fldlogssupplyprocess'
define view I_FldLogsSupplyProcessText
as select from flog_supproc_tx
{
@Semantics.language: true
key langu as Language,
@Search.defaultSearchElement: true
@ObjectModel.text.element: ['FldLogsSupplyProcessText']
key fldlogssupplyprocess as FldLogsSupplyProcess,
@Semantics.text: true
sproctxt as FldLogsSupplyProcessText
}
where
langu = $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