A_BatchCharc
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. It is exposed through 1 OData service (API_BATCH_SRV). Part of development package LO_BM_BATCH_BO_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_BatchCharacteristicTP | R_BatchCharacteristicTP | projection |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Batch Characteristics | 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_BATCH_SRV | API_BATCH_SRV | V2 | C2 | C1 |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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: #C, 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA