I_LogisticalProductCatText

DDL: I_LOGISTICALPRODUCTCATTEXT SQL: ILOGPRODCATTXTV Type: view BASIC

Get long text for Logistical Product Category

I_LogisticalProductCatText is a Basic CDS View that provides data about "Get long text for Logistical Product Category" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, LogisticalProductCategory. 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 (11)

NameValueLevelField
AbapCatalog.sqlViewName ILOGPRODCATTXTV view
EndUserText.label Get long text for Logistical Product Category view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey LogisticalProductCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY LogisticalProductCategory
LogisticalProductCategoryText
_Language _Language
@AbapCatalog.sqlViewName: 'ILOGPRODCATTXTV'
@EndUserText.label: 'Get long text for Logistical Product Category'
@Search: {
  searchable: true
}
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'LogisticalProductCategory'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_LogisticalProductCatText
  as select from dd07t

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

  //  association [0..1] to I_ProductCategory as _ProductCategory on $projection.ProductCategory = _ProductCategory.ProductCategory


{
      @Semantics.language
  key cast( ddlanguage as spras preserving type )                                   as Language,

      //      @ObjectModel.foreignKey.association: '_ProductCategory'



  key cast ( domvalue_l as logisticalproductcategory )                                        as LogisticalProductCategory,
      

      @Semantics.text
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.8
      }
      //      cast ( substring ( ddtext, 1, 60 ) as val_text )                              as Name,

      cast ( ddtext as val_text )                                                   as LogisticalProductCategoryText,


      _Language



}
where
      domname  = 'RFM_LOGISTICAL_PROD_CATEGORY'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/