A_BatchCharc

DDL: A_BATCHCHARC Type: view_entity CONSUMPTION

Batch Characteristics

A_BatchCharc is a Consumption CDS View that provides data about "Batch Characteristics" in SAP S/4HANA. It reads from 1 data source (R_BatchCharacteristicTP) and exposes 9 fields with key fields Material, BatchIdentifyingPlant, Batch, CharcInternalID.

Data Sources (1)

SourceAliasJoin Type
R_BatchCharacteristicTP R_BatchCharacteristicTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Batch Characteristics view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Material Material
KEY BatchIdentifyingPlant BatchIdentifyingPlant
KEY Batch Batch
KEY CharcInternalID CharcInternalID
LastChangeDateTime LastChangeDateTime
ClassType ClassType
ClassInternalID ClassInternalID
_Characteristic _Characteristic
_Class _Class
@AccessControl.authorizationCheck: #CHECK

@EndUserText.label: 'Batch Characteristics'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #L, dataClass: #MIXED}

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

define view entity A_BatchCharc 
  as projection on R_BatchCharacteristicTP
{
  key Material, 
  key BatchIdentifyingPlant,
  key Batch, 
  key CharcInternalID,
  
  LastChangeDateTime,
  
  /* Compositions */
  _BatchTP as _Batch : redirected to parent A_Batch,
  _BatchCharacteristicValueTP as _BatchCharcValue : redirected to composition child A_BatchCharcValue,

  /* DCL */
  @Consumption.hidden: true
  ClassType,
  @Consumption.hidden: true
  ClassInternalID,
  @Consumption.hidden: true
  _Characteristic,
  @Consumption.hidden: true
  _Class
}

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"R_BATCHCHARACTERISTICTP"
],
"ASSOCIATED":
[
"A_BATCH",
"A_BATCHCHARCVALUE",
"I_CLFNCHARACTERISTICFORKEYDATE",
"I_CLFNCLASSFORKEYDATE",
"R_BATCHCHARACTERISTICVALUETP",
"R_BATCHTP"
],
"BASE":
[
"R_BATCHCHARACTERISTICTP"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/