I_HandlingUnitValueHelp

DDL: I_HANDLINGUNITVALUEHELP Type: view_entity COMPOSITE Package: LOHUM_VDM

Handling Units

I_HandlingUnitValueHelp is a Composite CDS View that provides data about "Handling Units" in SAP S/4HANA. It reads from 1 data source (I_HandlingUnitHeaderCombined) and exposes 4 fields with key fields HandlingUnitExternalID, Warehouse. Part of development package LOHUM_VDM.

Data Sources (1)

SourceAliasJoin Type
I_HandlingUnitHeaderCombined I_HandlingUnitHeaderCombined from

Annotations (9)

NameValueLevelField
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Handling Units view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY HandlingUnitExternalID HandlingUnitExternalID Handling Unit
KEY Warehouse Warehouse Warehouse No.
Plant Plant Valuation Area
ShippingPoint ShippingPoint Shipping Point

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_HandlingUnitValueHelp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_HandlingUnitValueHelp AS
SELECT
  HandlingUnitExternalID,
  Warehouse,
  Plant,
  ShippingPoint
FROM I_HandlingUnitHeaderCombined
;