A_BatchClass

DDL: A_BATCHCLASS Type: view_entity CONSUMPTION Package: LO_BM_BATCH_BO_API

Batch Class Assignments

A_BatchClass is a Consumption CDS View that provides data about "Batch Class Assignments" in SAP S/4HANA. It reads from 1 data source (R_BatchClassTP) and exposes 7 fields with key fields Material, BatchIdentifyingPlant, Batch. It is exposed through 1 OData service (API_BATCH_SRV). Part of development package LO_BM_BATCH_BO_API.

Data Sources (1)

SourceAliasJoin Type
R_BatchClassTP R_BatchClassTP projection

Annotations (8)

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

OData Services (1)

ServiceBindingVersionContractRelease
API_BATCH_SRV API_BATCH_SRV V2 C2 C1

Fields (7)

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

@EndUserText.label: 'Batch Class Assignments'

@Metadata.ignorePropagatedAnnotations: true

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

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

define view entity A_BatchClass 
  as projection on R_BatchClassTP
{
  key Material, 
  key BatchIdentifyingPlant,
  key Batch, 
  
  ClassInternalID,
  
  LastChangeDateTime,    

  /* Compositions */
  _BatchTP as _Batch : redirected to parent A_Batch,

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