I_MDQltyBusRuleMsgShortText

DDL: I_MDQLTYBUSRULEMSGSHORTTEXT Type: view_entity BASIC Package: MDQ_PF_VAL_RULE

Textview for message short text

I_MDQltyBusRuleMsgShortText is a Basic CDS View that provides data about "Textview for message short text" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 5 fields with key fields MDQualityMessageClass, MDQualityMessageNumber, Language. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F4082). Part of development package MDQ_PF_VAL_RULE.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Textview for message short text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IMDQBUSRLMSGSHT view
ObjectModel.representativeKey MDQualityMessageNumber view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4082 ASQL_F4082 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MDQualityMessageClass Message ID
KEY MDQualityMessageNumber Message
KEY Language sprsl Language Code
MDQualityMessageShortText text User Group
_Language _Language

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_MDQltyBusRuleMsgShortText.
-- 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_MDQltyBusRuleMsgShortText AS
SELECT
  cast( arbgb as mdq_message_class preserving type ) AS MDQualityMessageClass,
  cast( msgnr as mdq_message_number preserving type ) AS MDQualityMessageNumber,
  sprsl AS Language,
  text AS MDQualityMessageShortText
FROM t100
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;