I_DocInfoRecdDocumentType
Document Type Value Help
I_DocInfoRecdDocumentType is a Basic CDS View (Dimension) that provides data about "Document Type Value Help" in SAP S/4HANA. It reads from 1 data source (tdwa) and exposes 2 fields with key field DocumentType. It has 1 association to related views. Part of development package CV_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tdwa | tdwa | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_DocInfoRecdDocumentTypeText | _Text | $projection.DocumentType = _Text.DocumentType |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICVDOCUMENTTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Document Type Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | DocumentType | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_DocumentInfoRecordDocType | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentType | tdwa | dokar | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ICVDOCUMENTTYPE'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Document Type Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'DocumentType'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Search.searchable: true
@VDM.lifecycle: {
contract: {
type: #PUBLIC_LOCAL_API
},
status: #DEPRECATED,
successor: 'I_DocumentInfoRecordDocType'
}
@Metadata.ignorePropagatedAnnotations:true
define view I_DocInfoRecdDocumentType
as select from tdwa
association [0..*] to I_DocInfoRecdDocumentTypeText as _Text on $projection.DocumentType = _Text.DocumentType
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.association: '_Text'
key tdwa.dokar as DocumentType,
// Associations
_Text
}
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