A_ClfnProductDescription
Product Description
A_ClfnProductDescription is a Basic CDS View that provides data about "Product Description" in SAP S/4HANA. It reads from 1 data source (I_ProductDescription) and exposes 4 fields with key fields Product, Language. It has 1 association to related views. Part of development package NGC_EXT_API_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductDescription | Description | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Product | _Product | $projection.Product = _Product.Product |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACLFNPRODESC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Product Description | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| OData.entitySet.name | A_ProductDescription | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | Product | ||
| KEY | Language | Language | ||
| ProductDescription | ProductDescription | |||
| _Product | _Product |
@AbapCatalog.sqlViewName: 'ACLFNPRODESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Product Description'
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory : #L,
usageType.dataClass: #MASTER
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@OData.entitySet.name : 'A_ProductDescription'
define view A_ClfnProductDescription
as select from I_ProductDescription as Description
association [1..1] to A_Product as _Product on $projection.Product = _Product.Product
{
key Product,
key Language,
@Semantics.text : true
ProductDescription,
_Product
}
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