R_BatchTextTP
Batch Description
R_BatchTextTP is a Transactional CDS View that provides data about "Batch Description" in SAP S/4HANA. It reads from 1 data source (R_BatchText) and exposes 7 fields with key fields Material, BatchIdentifyingPlant, Batch, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_BatchText | _BatchText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Batch Description | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Material | Material | ||
| KEY | BatchIdentifyingPlant | BatchIdentifyingPlant | ||
| KEY | Batch | Batch | ||
| KEY | Language | Language | ||
| BatchDescription | BatchDescription | |||
| _BatchTP | _BatchTP | |||
| _Language | _Language |
@AccessControl.authorizationCheck:#MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'Batch Description'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #MASTER}
@ObjectModel.dataCategory:#TEXT
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view entity R_BatchTextTP
as select from R_BatchText as _BatchText
association to parent R_BatchTP as _BatchTP
on $projection.Material = _BatchTP.Material
and $projection.BatchIdentifyingPlant = _BatchTP.BatchIdentifyingPlant
and $projection.Batch = _BatchTP.Batch
association [1..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
key Material,
key BatchIdentifyingPlant,
key Batch,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key Language,
@Semantics.text: true
BatchDescription,
_BatchTP,
_Language
}
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