R_TranspOrdItemBatchTP
Transportation Order Item Batch - TP
R_TranspOrdItemBatchTP is a Transactional CDS View that provides data about "Transportation Order Item Batch - TP" in SAP S/4HANA. It reads from 1 data source (I_TranspOrdItemBatch) and exposes 11 fields with key field TranspOrdItemBatchUUID. It has 1 association to related views. Part of development package RAP_TM_TOR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TranspOrdItemBatch | TransportationOrderItemBatch | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_TransportationOrderTP | _TransportationOrder | $projection.TransportationOrderUUID = _TransportationOrder.TransportationOrderUUID |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Transportation Order Item Batch - TP | view | |
| ObjectModel.representativeKey | TranspOrdItemBatchUUID | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TranspOrdItemBatchUUID | I_TranspOrdItemBatch | TranspOrdItemBatchUUID | |
| TransportationOrderUUID | I_TranspOrdItemBatch | TransportationOrderUUID | ||
| TransportationOrderItemUUID | I_TranspOrdItemBatch | TransportationOrderItemUUID | ||
| Batch | I_TranspOrdItemBatch | Batch | ||
| ProductID | I_TranspOrdItemBatch | ProductID | ||
| BatchBySupplier | I_TranspOrdItemBatch | BatchBySupplier | ||
| ManufactureDate | I_TranspOrdItemBatch | ManufactureDate | ||
| ShelfLifeExpirationDate | I_TranspOrdItemBatch | ShelfLifeExpirationDate | ||
| TransportationOrderCategory | _TransportationOrder | TransportationOrderCategory | ||
| _TransportationOrder | _TransportationOrder | |||
| _TransportationOrderItem | _TransportationOrderItem |
@EndUserText.label: 'Transportation Order Item Batch - TP'
@ObjectModel: { semanticKey: ['Batch'],
representativeKey: 'TranspOrdItemBatchUUID',
usageType: { sizeCategory: #L,
serviceQuality: #B,
dataClass: #TRANSACTIONAL }}
@AccessControl: { authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA') }
@VDM: { viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API }
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@Metadata.ignorePropagatedAnnotations: true
define view entity R_TranspOrdItemBatchTP
as select from I_TranspOrdItemBatch as TransportationOrderItemBatch
association to parent R_TransportationOrderItemTP as _TransportationOrderItem on $projection.TransportationOrderItemUUID = _TransportationOrderItem.TransportationOrderItemUUID
association [1..1] to R_TransportationOrderTP as _TransportationOrder on $projection.TransportationOrderUUID = _TransportationOrder.TransportationOrderUUID
{
// Attributes
key TransportationOrderItemBatch.TranspOrdItemBatchUUID,
TransportationOrderItemBatch.TransportationOrderUUID,
TransportationOrderItemBatch.TransportationOrderItemUUID,
TransportationOrderItemBatch.Batch,
TransportationOrderItemBatch.ProductID,
TransportationOrderItemBatch.BatchBySupplier,
TransportationOrderItemBatch.ManufactureDate,
TransportationOrderItemBatch.ShelfLifeExpirationDate,
// (Technical/Hidden) Attributes
_TransportationOrder.TransportationOrderCategory,
// Associations
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT ]
_TransportationOrder,
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT ]
_TransportationOrderItem
}
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