I_FldLogsDelivRefDocTypeTxt
Reference Document Type - Text
I_FldLogsDelivRefDocTypeTxt is a Basic CDS View that provides data about "Reference Document Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, FldLogsRefDocType. Part of development package FLOG_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDOCTYPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Reference Document Type - Text | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | FldLogsRefDocType | |||
| FldLogsRefDocTypeText | ddtext | Reference Document Description |
@AbapCatalog.sqlViewName: 'IFLDOCTYPT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Reference Document Type - Text'
define view I_FldLogsDelivRefDocTypeTxt
as select from dd07t
{
@Semantics.language: true
key ddlanguage as Language,
@ObjectModel.text.element : ['FldLogsRefDocTypeText']
key cast( domvalue_l as abap.char(6)) as FldLogsRefDocType,
@EndUserText.label: 'Reference Document Description'
@EndUserText.quickInfo: 'Reference Document Description'
@Semantics.text: true
ddtext as FldLogsRefDocTypeText
}
where
domname = 'FLOG_DOCTYPE'
and ddlanguage = $session.system_language
//define view entity I_FldLogsDelivRefDocTypeTxt as select from data_source_name {
//}
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