C_HzdsSubstInventoryFreeLoc

DDL: C_HZDSSUBSTINVENTORYFREELOC Type: view CONSUMPTION

HSI: Set of free locations

C_HzdsSubstInventoryFreeLoc is a Consumption CDS View that provides data about "HSI: Set of free locations" in SAP S/4HANA. It reads from 6 data sources and exposes 11 fields with key field EHSLocationUUID. It has 1 association to related views.

Data Sources (6)

SourceAliasJoin Type
I_EHSLocation I_EHSLocation from
I_EHSLocationHierarchyNode I_EHSLocationHierarchyNode inner
I_EHSLocationHierarchyRevision I_EHSLocationHierarchyRevision inner
I_HzdsSubstInventory I_HzdsSubstInventory left_outer
I_HzdsSubstInventoryDefinition I_HzdsSubstInventoryDefinition inner
I_HzdsSubstInventoryDraft I_HzdsSubstInventoryDraft left_outer

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CurrentEHSLocationNameText _EHSLocationName $projection.EHSLocationUUID = _EHSLocationName.EHSLocationUUID and _EHSLocationName.Language = $session.system_language

Annotations (15)

NameValueLevelField
EndUserText.label HSI: Set of free locations view
AbapCatalog.sqlViewName CHASSUBINVFRELOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey EHSLocationUUID view
ObjectModel.semanticKey EHSLocationUUID view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
Search.searchable true view
Metadata.ignorePropagatedAnnotations false view
Metadata.allowExtensions true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID I_EHSLocation EHSLocationUUID NodeID
EHSLocationType Loc. Type
EHSLocationName _EHSLocationName EHSLocationName
HzdsSubstInventoryStatus I_HzdsSubstInventory HzdsSubstInventoryStatus Status
Plant I_EHSLocation Plant Valuation Area
EHSLocationStatus I_EHSLocation EHSLocationStatus
EHSLocationAuthorizationGroup
CostCenter I_EHSLocation CostCenter Cost Center
CompanyCode I_EHSLocation CompanyCode Receiver Company Code
BusinessArea I_EHSLocation BusinessArea Business Area
Associations_EHSLocationName

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 C_HzdsSubstInventoryFreeLoc.
-- 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 C_HzdsSubstInventoryFreeLoc AS
SELECT
  I_EHSLocation.EHSLocationUUID AS EHSLocationUUID,
  cast ( EHSLocationType as ehfnd_loc_type_code_nc preserving type ) AS EHSLocationType,
  _EHSLocationName.EHSLocationName AS EHSLocationName,
  I_HzdsSubstInventory.HzdsSubstInventoryStatus AS HzdsSubstInventoryStatus,
  I_EHSLocation.Plant AS Plant,
  I_EHSLocation.EHSLocationStatus AS EHSLocationStatus,
  cast( I_EHSLocation.EHSLocationAuthorizationGroup as ehfnd_loc_auth_group_nc preserving type ) AS EHSLocationAuthorizationGroup,
  I_EHSLocation.CostCenter AS CostCenter,
  I_EHSLocation.CompanyCode AS CompanyCode,
  I_EHSLocation.BusinessArea AS BusinessArea
FROM I_EHSLocation
INNER JOIN I_HzdsSubstInventoryDefinition ON /* join condition not captured in parsed metadata */
INNER JOIN I_EHSLocationHierarchyRevision ON /* join condition not captured in parsed metadata */
INNER JOIN I_EHSLocationHierarchyNode ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_HzdsSubstInventory ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_HzdsSubstInventoryDraft ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CurrentEHSLocationNameText AS _EHSLocationName ON EHSLocationUUID = _EHSLocationName.EHSLocationUUID AND _EHSLocationName.Language = $session.system_language  -- association [0..1]
;