I_FldLogsRefDocTypeT
Text for Reference Document
I_FldLogsRefDocTypeT is a Basic CDS View that provides data about "Text for Reference Document" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key field FldLogsReferenceDocCategory.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDREFDOCTYPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Text for Reference Document | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | FldLogsReferenceDocCategory | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FldLogsReferenceDocCategory | |||
| Language | ddlanguage | |||
| ReferenceDocumentCategoryName | ddtext |
@AbapCatalog.sqlViewName: 'IFLDREFDOCTYPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Text for Reference Document'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'FldLogsReferenceDocCategory'
define view I_FldLogsRefDocTypeT
as select from dd07v
{
@ObjectModel.text.element: 'ReferenceDocumentCategoryName'
key cast(domvalue_l as flog_doctyp) as FldLogsReferenceDocCategory,
@Semantics.language: true
ddlanguage as Language,
@Semantics.text: true
ddtext as ReferenceDocumentCategoryName
}
where
domname = 'FLOG_DOCTYP'
and ddlanguage = $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