P_SubstSftyInstrnStrucByPlnt

DDL: P_SUBSTSFTYINSTRNSTRUCBYPLNT Type: view_entity CONSUMPTION Package: EHHSS_BO_FSI

SI Structure for Substance (S02)

P_SubstSftyInstrnStrucByPlnt is a Consumption CDS View that provides data about "SI Structure for Substance (S02)" in SAP S/4HANA. It reads from 2 data sources (I_EHSLocationRevision, I_SubstSafetyInstructionDef) and exposes 3 fields with key field EHSLocationUUID. Part of development package EHHSS_BO_FSI.

Data Sources (2)

SourceAliasJoin Type
I_EHSLocationRevision EHSLocationRevision from
I_SubstSafetyInstructionDef SafetyInstructionDefinition inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
VDM.viewType #CONSUMPTION view
VDM.private true view
VDM.lifecycle.contract.type #NONE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID I_EHSLocationRevision EHSLocationUUID NodeID
Plant I_EHSLocationRevision Plant Valuation Area
SafetyInstructionStructure I_SubstSafetyInstructionDef SafetyInstructionStructure Structure

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 P_SubstSftyInstrnStrucByPlnt.
-- 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 P_SubstSftyInstrnStrucByPlnt AS
SELECT
  EHSLocationRevision.EHSLocationUUID AS EHSLocationUUID,
  EHSLocationRevision.Plant AS Plant,
  SafetyInstructionDefinition.SafetyInstructionStructure AS SafetyInstructionStructure
FROM I_EHSLocationRevision AS EHSLocationRevision
INNER JOIN I_SubstSafetyInstructionDef AS SafetyInstructionDefinition ON /* join condition not captured in parsed metadata */
;