C_SafetyInstrnFactoryByPlantVH

DDL: C_SAFETYINSTRNFACTORYBYPLANTVH Type: view CONSUMPTION

Value Help for Factories by SI Structure

C_SafetyInstrnFactoryByPlantVH is a Consumption CDS View that provides data about "Value Help for Factories by SI Structure" in SAP S/4HANA. It reads from 4 data sources (I_EHSLocation, I_EHSLocationHierarchyNode, I_EHSLocationHierarchyRevision, I_SafetyInstructionDefinition) and exposes 16 fields with key fields EHSLocationUUID, SafetyInstructionType, SafetyInstructionSubType. It has 2 associations to related views.

Data Sources (4)

SourceAliasJoin Type
I_EHSLocation I_EHSLocation from
I_EHSLocationHierarchyNode I_EHSLocationHierarchyNode inner
I_EHSLocationHierarchyRevision I_EHSLocationHierarchyRevision inner
I_SafetyInstructionDefinition I_SafetyInstructionDefinition inner

Associations (2)

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

Annotations (16)

NameValueLevelField
EndUserText.label Value Help for Factories by SI Structure view
AbapCatalog.sqlViewName CFSIFACTPLANTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey EHSLocationUUID view
ObjectModel.semanticKey EHSLocationUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID I_EHSLocation EHSLocationUUID NodeID
KEY SafetyInstructionType I_SafetyInstructionDefinition SafetyInstructionType SI Type
KEY SafetyInstructionSubType I_SafetyInstructionDefinition SafetyInstructionSubType SI Subtype
EHSLocationType Loc. Type
EHSLocationName _EHSLocationName EHSLocationName
Plant I_EHSLocation Plant Valuation Area
SafetyInstructionStructure I_SafetyInstructionDefinition SafetyInstructionStructure Structure
SafetyInstructionStructureName _SafetyInstructionStructure SafetyInstructionStructureName Structure Name
EHSLocationStatus I_EHSLocation EHSLocationStatus
EHSLocationAuthorizationGroup
CostCenter I_EHSLocation CostCenter Cost Center
Country I_EHSLocation Country Venue: Ctry/Reg
CompanyCode I_EHSLocation CompanyCode Receiver Company Code
BusinessArea I_EHSLocation BusinessArea Business Area
Associations_EHSLocationName
_SafetyInstructionStructure _SafetyInstructionStructure

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_SafetyInstrnFactoryByPlantVH.
-- 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_SafetyInstrnFactoryByPlantVH AS
SELECT
  I_EHSLocation.EHSLocationUUID AS EHSLocationUUID,
  I_SafetyInstructionDefinition.SafetyInstructionType AS SafetyInstructionType,
  I_SafetyInstructionDefinition.SafetyInstructionSubType AS SafetyInstructionSubType,
  cast ( EHSLocationType as ehfnd_loc_type_code_nc preserving type ) AS EHSLocationType,
  _EHSLocationName.EHSLocationName AS EHSLocationName,
  I_EHSLocation.Plant AS Plant,
  I_SafetyInstructionDefinition.SafetyInstructionStructure AS SafetyInstructionStructure,
  _SafetyInstructionStructure.SafetyInstructionStructureName AS SafetyInstructionStructureName,
  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.Country AS Country,
  I_EHSLocation.CompanyCode AS CompanyCode,
  I_EHSLocation.BusinessArea AS BusinessArea
FROM I_EHSLocation
INNER JOIN I_SafetyInstructionDefinition 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_CurrentEHSLocationNameText AS _EHSLocationName ON EHSLocationUUID = _EHSLocationName.EHSLocationUUID AND _EHSLocationName.Language = $session.system_language  -- association [0..1]
LEFT OUTER JOIN I_SafetyInstructionStructure AS _SafetyInstructionStructure ON I_SafetyInstructionDefinition.SafetyInstructionStructure = _SafetyInstructionStructure.SafetyInstructionStructure  -- association [1..1]
;