I_MatlDocVersForPrintingSlipT
Matdoc Version Printing Slip - Text
I_MatlDocVersForPrintingSlipT is a Basic CDS View that provides data about "Matdoc Version Printing Slip - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields VersionForPrintingSlip, Language. It has 2 associations to related views. Part of development package MM_IM_RAP_MATDOC_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MatlDocVersForPrintingSlip | _MatlDocVersForPrintingSlip | $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlip.VersionForPrintingSlip |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Matdoc Version Printing Slip - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | VersionForPrintingSlip | |||
| KEY | Language | |||
| VersionForPrintingSlipName | ||||
| _MatlDocVersForPrintingSlip | _MatlDocVersForPrintingSlip | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Matdoc Version Printing Slip - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT , #SQL_DATA_SOURCE , #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@Search.searchable: true
define view entity I_MatlDocVersForPrintingSlipT
as select from dd07t
association [0..1] to I_MatlDocVersForPrintingSlip as _MatlDocVersForPrintingSlip on $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlip.VersionForPrintingSlip
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_MatlDocVersForPrintingSlip'
@ObjectModel.text.element: ['VersionForPrintingSlipName']
// @UI.textArrangement: #TEXT_ONLY
// @UI.hidden: true
key cast(substring(dd07t.domvalue_l, 1, 1) as matldoc_print_slip preserving type) as VersionForPrintingSlip,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language:true
key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
@Search.fuzzinessThreshold: 0.8
@Search.defaultSearchElement: true
@Search.ranking: #LOW
cast ( substring ( ddtext, 1, 60 ) as val_text ) as VersionForPrintingSlipName,
_MatlDocVersForPrintingSlip,
_Language
}
where
(
dd07t.domname = 'MATDOC_PRNT_SLIP'
)
and(
dd07t.as4local = 'A'
);
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