I_ERPHandlingUnitReferenceDoc
ERP relevant HU reference documents
I_ERPHandlingUnitReferenceDoc is a Basic CDS View that provides data about "ERP relevant HU reference documents" in SAP S/4HANA. It reads from 1 data source (vekp) and exposes 3 fields with key field HandlingUnitInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vekp | vekp | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ERP relevant HU reference documents | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | HandlingUnitInternalID | venum | ||
| HandlingUnitReferenceDocument | vpobjkey | |||
| HandlingUnitRefDocType | vpobj |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ERP relevant HU reference documents'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity I_ERPHandlingUnitReferenceDoc
as select from vekp /*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
{
key venum as HandlingUnitInternalID,
vpobjkey as HandlingUnitReferenceDocument,
vpobj as HandlingUnitRefDocType
}
where
vpobj != '21'
and vpobj != '23'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VEKP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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