E_HandlingUnitHeader
Extension View for Handling Unit Header
E_HandlingUnitHeader is a Extension CDS View that provides data about "Extension View for Handling Unit Header" in SAP S/4HANA. It reads from 1 data source (vekp) and exposes 2 fields with key field HandlingUnitInternalID. Part of development package LOHUM_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vekp | Persistence | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| AbapCatalog.sqlViewName | EHANDLINGUNITHE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #EXTENSION | view | |
| EndUserText.label | Extension View for Handling Unit Header | view |
// @ClientHandling.algorithm: #SESSION_VARIABLE
//@ClientHandling.algorithm: #AUTOMATED // in order to retain their self-join optimization logic for extension views.
//@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//@ObjectModel.usageType.sizeCategory: #L
// lifecycle.contract.type: #PUBLIC_REMOTE_API }
@AbapCatalog.preserveKey:true
@ObjectModel.usageType.serviceQuality: #P
@AbapCatalog.sqlViewName: 'EHANDLINGUNITHE'
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@VDM.viewType: #EXTENSION
@EndUserText.label: 'Extension View for Handling Unit Header'
define view E_HandlingUnitHeader as select from vekp as Persistence {
key Persistence.venum as HandlingUnitInternalID,
Persistence.exidv as HandlingUnitExternalID
}
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