I_EWM_WhseReqItmExtProdBatch
Delivery Item External Numbers
I_EWM_WhseReqItmExtProdBatch is a Basic CDS View that provides data about "Delivery Item External Numbers" in SAP S/4HANA. It reads from 1 data source (/scdl/db_extno) and exposes 6 fields with key fields EWMWarehouseRequestUUID, EWMWarehouseRequestItemUUID, BusinessPartnerRole, BusinessPartnerNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /scdl/db_extno | DeliveryItemExtNo | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Delivery Item External Numbers | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EWMWarehouseRequestUUID | docid | ||
| KEY | EWMWarehouseRequestItemUUID | itemid | ||
| KEY | BusinessPartnerRole | party_role | ||
| KEY | BusinessPartnerNumber | partyno | ||
| EWMWhseRequestDocumentCategory | doccat | |||
| EWMBatchBySupplierPlanned |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Delivery Item External Numbers'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #L
@VDM.viewType:#BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_EWM_WhseReqItmExtProdBatch
as select from /scdl/db_extno as DeliveryItemExtNo
{
key docid as EWMWarehouseRequestUUID,
key itemid as EWMWarehouseRequestItemUUID,
key party_role as BusinessPartnerRole,
key partyno as BusinessPartnerNumber,
doccat as EWMWhseRequestDocumentCategory,
// productno_ext as ProductNoExt,
cast( batchno_ext as lichn ) as EWMBatchBySupplierPlanned
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SCDL/DB_EXTNO"
],
"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