A_HazardCategoryText

DDL: A_HAZARDCATEGORYTEXT SQL: AHAZCATEGORYTXT Type: view BASIC

Hazard Category Text

A_HazardCategoryText is a Basic CDS View that provides data about "Hazard Category Text" in SAP S/4HANA. It reads from 1 data source (I_HazardCategoryText) and exposes 4 fields with key fields HazardCategory, Language.

Data Sources (1)

SourceAliasJoin Type
I_HazardCategoryText I_HazardCategoryText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName AHAZCATEGORYTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Hazard Category Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HazardCategory view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY HazardCategory HazardCategory Hazard Category
KEY Language Language Report Text Language
LanguageISOCode _Language LanguageISOCode Language ISO Code
HazardCategoryName HazardCategoryName

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 A_HazardCategoryText.
-- 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.
-- SQL view name: AHAZCATEGORYTXT

CREATE VIEW A_HazardCategoryText AS
SELECT
  HazardCategory,
  Language,
  _Language.LanguageISOCode AS LanguageISOCode,
  HazardCategoryName
FROM I_HazardCategoryText
;