C_SftyInstrnChmlCmplncInfoVH

DDL: C_SFTYINSTRNCHMLCMPLNCINFOVH Type: view CONSUMPTION Package: EHHSS_CNS_FSI

Chemical compliance info for safety instruction

C_SftyInstrnChmlCmplncInfoVH is a Consumption CDS View that provides data about "Chemical compliance info for safety instruction" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfoVH) and exposes 13 fields with key field ChmlCmplncInfoUUID. Part of development package EHHSS_CNS_FSI.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfoVH ChemicalComplianceInfo from

Annotations (17)

NameValueLevelField
EndUserText.label Chemical compliance info for safety instruction view
AbapCatalog.sqlViewName CFSICCIVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ChmlCmplncInfoUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Search.searchable true view
Consumption.ranked true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncInfoUUID I_ChmlCmplncInfoVH ChmlCmplncInfoUUID Chemical Compliance Information PP
ChmlCmplncInternalName I_ChmlCmplncInfoVH ChmlCmplncInternalName Internal Name
ChmlCmplncInfoCombinedName ChmlCmplncInfoCombinedName
Material I_ChmlCmplncInfoVH Material Vehicle Model
ProdStewardshipRespUnit I_ChmlCmplncInfoVH ProdStewardshipRespUnit Responsible Unit
DngrsGdsRespUnit I_ChmlCmplncInfoVH DngrsGdsRespUnit Responsible Unit for Dangerous Goods
ChmlCmplncInfoType I_ChmlCmplncInfoVH ChmlCmplncInfoType Type of Chemical Compliance Information
MaterialIsSold I_ChmlCmplncInfoVH MaterialIsSold Is Sold
MaterialIsTransported I_ChmlCmplncInfoVH MaterialIsTransported Is Transported
MaterialIsSourced I_ChmlCmplncInfoVH MaterialIsSourced Is Purchased
MaterialIsProduced I_ChmlCmplncInfoVH MaterialIsProduced Is Produced
MaterialIsDisposed I_ChmlCmplncInfoVH MaterialIsDisposed Is Disposed
MaterialIsEmissionRelevant I_ChmlCmplncInfoVH MaterialIsEmissionRelevant Emission Relevant

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_SftyInstrnChmlCmplncInfoVH.
-- 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_SftyInstrnChmlCmplncInfoVH AS
SELECT
  ChemicalComplianceInfo.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  ChemicalComplianceInfo.ChmlCmplncInternalName AS ChmlCmplncInternalName,
  ChmlCmplncInfoCombinedName,
  ChemicalComplianceInfo.Material AS Material,
  ChemicalComplianceInfo.ProdStewardshipRespUnit AS ProdStewardshipRespUnit,
  ChemicalComplianceInfo.DngrsGdsRespUnit AS DngrsGdsRespUnit,
  ChemicalComplianceInfo.ChmlCmplncInfoType AS ChmlCmplncInfoType,
  ChemicalComplianceInfo.MaterialIsSold AS MaterialIsSold,
  ChemicalComplianceInfo.MaterialIsTransported AS MaterialIsTransported,
  ChemicalComplianceInfo.MaterialIsSourced AS MaterialIsSourced,
  ChemicalComplianceInfo.MaterialIsProduced AS MaterialIsProduced,
  ChemicalComplianceInfo.MaterialIsDisposed AS MaterialIsDisposed,
  ChemicalComplianceInfo.MaterialIsEmissionRelevant AS MaterialIsEmissionRelevant
FROM I_ChmlCmplncInfoVH AS ChemicalComplianceInfo
;