P_SftyInstrnTextBlockFactory

DDL: P_SFTYINSTRNTEXTBLOCKFACTORY Type: view CONSUMPTION

P_SftyInstrnTextBlockFactory is a Consumption CDS View in SAP S/4HANA. It reads from 7 data sources and exposes 31 fields with key fields EHSLocationUUID, SafetyInstructionType, SafetyInstructionSubType, SafetyInstructionType, SafetyInstructionSubType.

Data Sources (7)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PFSITBFCTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (31)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID I_EHSLocation EHSLocationUUID NodeID
KEY SafetyInstructionType I_SafetyInstructionDefinition SafetyInstructionType SI Type
KEY SafetyInstructionSubType I_SafetyInstructionDefinition SafetyInstructionSubType SI Subtype
EHSLocationType
Plant I_EHSLocation Plant Valuation Area
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
_Plant I_EHSLocation _Plant
_EHSLocationStatus I_EHSLocation _EHSLocationStatus
_BusinessArea I_EHSLocation _BusinessArea
_CompanyCode I_EHSLocation _CompanyCode
EHSLocationUUID NodeID
KEY SafetyInstructionType SI Type
KEY SafetyInstructionSubType SI Subtype
EHSLocationType
Plant I_EHSLocation Plant Valuation Area
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
_Plant I_EHSLocation _Plant
_EHSLocationStatus I_EHSLocation _EHSLocationStatus
_BusinessArea I_EHSLocation _BusinessArea
_CompanyCode I_EHSLocation _CompanyCode
_Country I_EHSLocation _Country

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_SftyInstrnTextBlockFactory.
-- 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_SftyInstrnTextBlockFactory AS
SELECT
  I_EHSLocation.EHSLocationUUID AS EHSLocationUUID,
  I_SafetyInstructionDefinition.SafetyInstructionType AS SafetyInstructionType,
  I_SafetyInstructionDefinition.SafetyInstructionSubType AS SafetyInstructionSubType,
  cast ( I_EHSLocation.EHSLocationType as ehfnd_loc_type_code_nc preserving type ) AS EHSLocationType,
  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.Country AS Country,
  I_EHSLocation.CompanyCode AS CompanyCode,
  I_EHSLocation.BusinessArea AS BusinessArea,
  I_EHSLocation._Plant AS _Plant,
  I_EHSLocation._EHSLocationStatus AS _EHSLocationStatus,
  I_EHSLocation._BusinessArea AS _BusinessArea,
  I_EHSLocation._CompanyCode AS _CompanyCode,
  I_EHSLocation._Country AS _Country
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 */
;