C_MDQltyBusinessRuleIDVH

DDL: C_MDQLTYBUSINESSRULEIDVH Type: view_entity CONSUMPTION Package: MDQ_PF_VAL_RULE

MDQlty Bus Rule ID

C_MDQltyBusinessRuleIDVH is a Consumption CDS View that provides data about "MDQlty Bus Rule ID" in SAP S/4HANA. It reads from 1 data source (I_MDQualityBusinessRule) and exposes 8 fields with key fields MDQualityBusinessRule, MDQltyBusinessObjectTypeCode. It has 1 association to related views. It is exposed through 8 OData services (ASQL_F3826, ASQL_F3900, ASQL_F4082, ...). Part of development package MDQ_PF_VAL_RULE.

Data Sources (1)

SourceAliasJoin Type
I_MDQualityBusinessRule _MDQltyBusinessRule from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MDQltyModelTableT _MDQltyBusinessRuleBaseTableT $projection.MDQltyBusinessRuleBaseTable = _MDQltyBusinessRuleBaseTableT.MDQltyModelTable and $projection.MDQltyBusinessObjectTypeCode = _MDQltyBusinessRuleBaseTableT.MDQltyBusinessObjectTypeCode and _MDQltyBusinessRuleBaseTableT.Language = $session.system_language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey MDQualityBusinessRule view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName KMDQBSRULEIDVH view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Consumption.ranked true view
Metadata.allowExtensions true view

OData Services (8)

ServiceBindingVersionContractRelease
ASQL_F3826 ASQL_F3826 C2 NOT_RELEASED
ASQL_F3900 ASQL_F3900 C2 NOT_RELEASED
ASQL_F4082 ASQL_F4082 C2 NOT_RELEASED
ASQL_F4083A ASQL_F4083A C2 NOT_RELEASED
ASQL_F4090 ASQL_F4090 C2 NOT_RELEASED
ASQL_F4090A ASQL_F4090A C2 NOT_RELEASED
ASQL_F4091 ASQL_F4091 C2 NOT_RELEASED
UI_MDQLTYBUSINESSRULE_MANAGE_2 UI_MDQLTYBUSINESSRULE_MANAGE V4 C1 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MDQualityBusinessRule MDQualityBusinessRule Rule Definition ID
KEY MDQltyBusinessObjectTypeCode MDQltyBusinessObjectTypeCode Bus. Obj. Type
MDQualityBusinessRuleUUID MDQualityBusinessRuleUUID Rule UUID
MDQualityBusinessRuleName MDQualityBusinessRuleName Rule Name
MDQltyBusinessRuleBaseTable MDQltyBusinessRuleBaseTable Base Table
MDQltyModelTableName _MDQltyBusinessRuleBaseTableT MDQltyModelTableName
MDQltyBusinessRuleStatus MDQltyBusinessRuleStatus Rule Status
_MDQltyBusinessRuleBaseTableT _MDQltyBusinessRuleBaseTableT

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_MDQltyBusinessRuleIDVH.
-- 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_MDQltyBusinessRuleIDVH AS
SELECT
  MDQualityBusinessRule,
  MDQltyBusinessObjectTypeCode,
  MDQualityBusinessRuleUUID,
  MDQualityBusinessRuleName,
  MDQltyBusinessRuleBaseTable,
  _MDQltyBusinessRuleBaseTableT.MDQltyModelTableName AS MDQltyModelTableName,
  MDQltyBusinessRuleStatus
FROM I_MDQualityBusinessRule AS _MDQltyBusinessRule
LEFT OUTER JOIN I_MDQltyModelTableT AS _MDQltyBusinessRuleBaseTableT ON MDQltyBusinessRuleBaseTable = _MDQltyBusinessRuleBaseTableT.MDQltyModelTable AND MDQltyBusinessObjectTypeCode = _MDQltyBusinessRuleBaseTableT.MDQltyBusinessObjectTypeCode AND _MDQltyBusinessRuleBaseTableT.Language = $session.system_language  -- association [0..1]
;