I_DebitMemoRequestTypeText
Debit Memo Request Type - Text
I_DebitMemoRequestTypeText is a Basic CDS View that provides data about "Debit Memo Request Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_DebitMemoRequestType, I_SalesDocumentTypeText) and exposes 5 fields with key fields DebitMemoRequestType, Language. It has 1 association to related views. Part of development package VDM_SD_SLS_DMR.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_DebitMemoRequestType | DebitMemoRequestType | inner |
| I_SalesDocumentTypeText | Text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DebitMemoRequestType | _DebitMemoRequestType | $projection.DebitMemoRequestType = _DebitMemoRequestType.DebitMemoRequestType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Debit Memo Request Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | DebitMemoRequestType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DebitMemoRequestType | I_DebitMemoRequestType | DebitMemoRequestType | |
| KEY | Language | I_SalesDocumentTypeText | Language | |
| DebitMemoRequestTypeName | ||||
| _DebitMemoRequestType | _DebitMemoRequestType | |||
| _Language | I_SalesDocumentTypeText | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Debit Memo Request Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'DebitMemoRequestType'
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view entity I_DebitMemoRequestTypeText
as select from I_SalesDocumentTypeText as Text
inner join I_DebitMemoRequestType as DebitMemoRequestType on Text.SalesDocumentType = DebitMemoRequestType.DebitMemoRequestType
association [0..1] to I_DebitMemoRequestType as _DebitMemoRequestType on $projection.DebitMemoRequestType = _DebitMemoRequestType.DebitMemoRequestType
{
@ObjectModel.foreignKey.association: '_DebitMemoRequestType'
@ObjectModel.text.element: ['DebitMemoRequestTypeName']
key DebitMemoRequestType.DebitMemoRequestType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key Text.Language,
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.9,
ranking: #LOW }
@Semantics.text: true
cast( Text.SalesDocumentTypeName as sd_debit_memo_req_type_name preserving type ) as DebitMemoRequestTypeName,
_DebitMemoRequestType,
Text._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