I_RECIPETEXTTP

CDS View

Recipe Description (Transactional Processing)

I_RECIPETEXTTP is a CDS View in S/4HANA. Recipe Description (Transactional Processing). 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
A_RecipeText view from COMPOSITE Recipe Descriptions
@AbapCatalog.sqlViewName: 'IRECIPETEXTTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

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

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #TRANSACTIONAL

@EndUserText.label: 'Recipe Description (Transactional Processing)'
define view I_RecipeTextTP
  with parameters
    @Environment.systemField: #SYSTEM_DATE
    @Consumption.hidden: true
    P_KeyDate : sydate
  as select from I_RecipeText
  association to parent I_RecipeForKeyDateTP as _RecipeForKeyDateTP on $projection.RecipeUUID = _RecipeForKeyDateTP.RecipeUUID
{
      @ObjectModel.foreignKey.association: '_RecipeForKeyDateTP'
  key RecipeUUID,

      @ObjectModel.foreignKey.association: '_Language'
  key Language,

      RecipeDescription,

      // for ETag handling

      _RecipeForKeyDateTP(P_KeyDate : $parameters.P_KeyDate ).RecipeLastChangeDateTime,
      
      _RecipeForKeyDateTP(P_KeyDate : $parameters.P_KeyDate ).Recipe,

      _RecipeForKeyDateTP,

      /* Associations */
      _Language

}