A_AllergenStatementText

DDL: A_ALLERGENSTATEMENTTEXT Type: view_entity BASIC

Allergen Statement Code Text

A_AllergenStatementText is a Basic CDS View that provides data about "Allergen Statement Code Text" in SAP S/4HANA. It reads from 1 data source (I_AllergenStatementText) and exposes 3 fields with key fields AllergenStatement, Language.

Data Sources (1)

SourceAliasJoin Type
I_AllergenStatementText I_AllergenStatementText projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Allergen Statement Code Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllergenStatement AllergenStatement
KEY Language Language Report Text Language
AllergenStatementDesc AllergenStatementDesc

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_AllergenStatementText.
-- 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 A_AllergenStatementText AS
SELECT
  AllergenStatement,
  Language,
  AllergenStatementDesc
FROM I_AllergenStatementText
;