I_HandlingUnitIDMapping

DDL: I_HANDLINGUNITIDMAPPING Type: view_entity BASIC Package: LOHUM_VDM

Maps internal ID to external ID

I_HandlingUnitIDMapping is a Basic CDS View that provides data about "Maps internal ID to external ID" 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)

SourceAliasJoin Type
vekp vekp from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Maps internal ID to external ID view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY HandlingUnitInternalID venum
HandlingUnitExternalID exidv
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED

@EndUserText.label: 'Maps internal ID to external ID'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #XL,
  dataClass: #TRANSACTIONAL
}

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

define view entity I_HandlingUnitIDMapping 
  as select from vekp
{
  // Mapping always returns exactly one external ID when the unique internal ID is provided

  key venum as HandlingUnitInternalID,
      exidv as HandlingUnitExternalID
}