I_ProductAlertText

DDL: I_PRODUCTALERTTEXT SQL: IPRODUCTALERTTXT Type: view BASIC

Product Alerts text view

I_ProductAlertText is a Basic CDS View that provides data about "Product Alerts text view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ProductAlert, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPRODUCTALERTTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ProductAlert view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Product Alerts text view view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProductAlert
KEY Language
ProductAlertDesc
_Language _Language
@AbapCatalog.sqlViewName: 'IPRODUCTALERTTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Search.searchable: true
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'ProductAlert'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Product Alerts text view'
define view I_ProductAlertText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast(domvalue_l as /sapapo/get_alerts_for_prod) as ProductAlert,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key cast( ddlanguage as spras )                                                as Language,
      @Semantics.text: true
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #LOW
      }
      cast( ddtext as val_text )                                                 as ProductAlertDesc,
      _Language
}
where
    domname = '/SAPAPO/GET_ALERTS_FOR_PROD' 
   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/