A_RecipeText

DDL: A_RECIPETEXT SQL: ARECIPETEXT Type: view COMPOSITE

Recipe Descriptions

A_RecipeText is a Composite CDS View that provides data about "Recipe Descriptions" in SAP S/4HANA. It reads from 1 data source (I_RecipeTextTP) and exposes 6 fields with key fields RecipeUUID, Language.

Data Sources (1)

SourceAliasJoin Type
I_RecipeTextTP I_RecipeTextTP from

Parameters (1)

NameTypeDefault
P_KeyDate dats

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ARECIPETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipeUUID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
Consumption.filter.businessDate.at true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Recipe Descriptions view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY RecipeUUID RecipeUUID
KEY Language Language
RecipeDescription RecipeDescription
RecipeLastChangeDateTime RecipeLastChangeDateTime
Recipe Recipe
_Recipe _Recipe
@AbapCatalog.sqlViewName: 'ARECIPETEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeUUID'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER

@Consumption.filter.businessDate.at: true

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Recipe Descriptions'
define view A_RecipeText
  with parameters
    @Consumption.hidden: true
    @Semantics.businessDate.at: true
    P_KeyDate :dats
  as select from I_RecipeTextTP( P_KeyDate: $parameters.P_KeyDate )
  association to parent A_Recipe as _Recipe on $projection.RecipeUUID = _Recipe.RecipeUUID
{
  key RecipeUUID,

      @Semantics.language: true
  key Language,

      @Semantics.text: true
      RecipeDescription,

      RecipeLastChangeDateTime,

      Recipe,

      _Recipe
}