I_EWA_WeighingInformation

DDL: I_EWA_WEIGHINGINFORMATION Type: view_entity BASIC

Weighing Information

I_EWA_WeighingInformation is a Basic CDS View that provides data about "Weighing Information" in SAP S/4HANA. It reads from 1 data source (tewawawinfo) and exposes 6 fields with key field EWAWeighingInfoCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tewawawinfo tewawawinfo from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EWA_WeighingInformationText _EWAWeighingInformationText _EWAWeighingInformationText.EWAWeighingInfoCode = $projection.EWAWeighingInfoCode and _EWAWeighingInformationText.Language = $session.system_language

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Weighing Information view
ObjectModel.representativeKey EWAWeighingInfoCode view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EWAWeighingInfoCode infoid Weighing Data
EWAIconCode icon Status Icon
SystemMessageIdentification msgid Message ID
SystemMessageNumber msgno Message Number
SystemMessageType msgty Msg.Type (E,I,W..)
_EWAWeighingInformationText _EWAWeighingInformationText

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 I_EWA_WeighingInformation.
-- 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 I_EWA_WeighingInformation AS
SELECT
  infoid AS EWAWeighingInfoCode,
  icon AS EWAIconCode,
  msgid AS SystemMessageIdentification,
  msgno AS SystemMessageNumber,
  msgty AS SystemMessageType
FROM tewawawinfo
LEFT OUTER JOIN I_EWA_WeighingInformationText AS _EWAWeighingInformationText ON _EWAWeighingInformationText.EWAWeighingInfoCode = EWAWeighingInfoCode AND _EWAWeighingInformationText.Language = $session.system_language  -- association [0..1]
;