R_ProductDescriptionTP

DDL: R_PRODUCTDESCRIPTIONTP Type: view_entity TRANSACTIONAL

Product Description

R_ProductDescriptionTP is a Transactional CDS View that provides data about "Product Description" in SAP S/4HANA. It reads from 1 data source (I_ProductDescription) and exposes 5 fields with key fields Product, Language.

Data Sources (1)

SourceAliasJoin Type
I_ProductDescription I_ProductDescription from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
ObjectModel.representativeKey Product view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Product Description view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product
KEY Language Language
ProductDescription ProductDescription
_Language _Language
_Product _Product
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #TRANSACTIONAL
@ObjectModel.representativeKey: 'Product'
@ObjectModel: {
    usageType.serviceQuality: #A,
    usageType.sizeCategory : #L,
    usageType.dataClass: #MASTER
}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.semanticKey: [ 'Product','Language' ]
@EndUserText.label: 'Product Description'
define view entity R_ProductDescriptionTP 
  as select from I_ProductDescription
  association to parent R_ProductTP as _Product on $projection.Product = _Product.Product
{
  key cast (Product as productnumber preserving type ) as Product,
  key Language,
      ProductDescription,
      /* Associations */
      _Language,
      _Product
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCTDESCRIPTION"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"R_PRODUCTTP"
],
"BASE":
[
"I_PRODUCTDESCRIPTION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/