I_MatlDocVersForPrintingSlip
Matdoc Version Printing Slip
I_MatlDocVersForPrintingSlip is a Basic CDS View that provides data about "Matdoc Version Printing Slip" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field VersionForPrintingSlip. It has 1 association to related views. Part of development package MM_IM_RAP_MATDOC_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MatlDocVersForPrintingSlipT | _MatlDocVersForPrintingSlipT | $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlipT.VersionForPrintingSlip |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Matdoc Version Printing Slip | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | VersionForPrintingSlip | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.ranked | true | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | VersionForPrintingSlip | |||
| _MatlDocVersForPrintingSlipT | _MatlDocVersForPrintingSlipT |
@EndUserText.label: 'Matdoc Version Printing Slip'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
resultSet.sizeCategory: #XS,
representativeKey: 'VersionForPrintingSlip'
}
@VDM: {
viewType: #BASIC
}
@Metadata: {
ignorePropagatedAnnotations: true
}
@Consumption.ranked: true
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER]
//@UI.presentationVariant: [{ sortOrder: [{ by: 'VersionForPrintingSlip', direction: #ASC }] }]
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view entity I_MatlDocVersForPrintingSlip
as select from dd07l
association [0..*] to I_MatlDocVersForPrintingSlipT as _MatlDocVersForPrintingSlipT on $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlipT.VersionForPrintingSlip
{
@ObjectModel.text.association: '_MatlDocVersForPrintingSlipT'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key cast(substring(dd07l.domvalue_l, 1, 1) as matldoc_print_slip preserving type) as VersionForPrintingSlip,
//Associations
_MatlDocVersForPrintingSlipT
}
where
(
dd07l.domname = 'MATDOC_PRNT_SLIP'
)
and(
dd07l.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