I_PackagingMaterialTypeText
Packaging Material Type Text
I_PackagingMaterialTypeText is a Basic CDS View that provides data about "Packaging Material Type Text" in SAP S/4HANA. It reads from 1 data source (tvtyt) and exposes 4 fields with key fields PackagingMaterialType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tvtyt | tvtyt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PackagingMaterialType | _PackagingMaterialType | $projection.PackagingMaterialType = _PackagingMaterialType.PackagingMaterialType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPKGMATTYPTXT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Packaging Material Type Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PackagingMaterialType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog:{
sqlViewName: 'IPKGMATTYPTXT',
preserveKey: true,
compiler.compareFilter: true
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@EndUserText.label: 'Packaging Material Type Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PackagingMaterialType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_PackagingMaterialTypeText
as select from tvtyt
// association [0..*] to I_Producttype as _ProductType on $projection.ProductType = _ProductType.ProductType
association [0..1] to I_PackagingMaterialType as _PackagingMaterialType on $projection.PackagingMaterialType = _PackagingMaterialType.PackagingMaterialType
{
key tvtyt.traty as PackagingMaterialType,
@Semantics.language: true
key tvtyt.spras as Language,
@Semantics.text: true
tvtyt.vtext as PackagingMaterialTypeName,
_PackagingMaterialType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVTYT"
],
"ASSOCIATED":
[
"I_PACKAGINGMATERIALTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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