C_MDQltyMinedRuleExpDetail

DDL: C_MDQLTYMINEDRULEEXPDETAIL SQL: PMDQRULEMINEDE Type: view CONSUMPTION Package: MDQ_PF_VAL_MINING

MDQ Mined Rule Expression Detail

C_MDQltyMinedRuleExpDetail is a Consumption CDS View that provides data about "MDQ Mined Rule Expression Detail" in SAP S/4HANA. It reads from 1 data source (P_MDQltyMinedRuleExpDescTbFunc) and exposes 3 fields with key fields MDQltyMinedRuleUUID, MDQltyMinedRuleExpression. It has 1 association to related views. It is exposed through 3 OData services (ASQL_F3575, ASQL_F4070, ASQL_F4071). Part of development package MDQ_PF_VAL_MINING.

Data Sources (1)

SourceAliasJoin Type
P_MDQltyMinedRuleExpDescTbFunc P_MDQltyMinedRuleExpDescTbFunc from

Parameters (1)

NameTypeDefault
P_MDQltyMinedRuleUUID mdqltyminedruleuuid

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MDQltyMinedRule _MDQltyMinedRule $projection.MDQltyMinedRuleUUID = _MDQltyMinedRule.MDQltyMinedRuleUUID

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName PMDQRULEMINEDE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label MDQ Mined Rule Expression Detail view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.compositionRoot true view
ObjectModel.transactionalProcessingDelegated false view
ObjectModel.draftEnabled false view
ObjectModel.semanticKey MDQltyMinedRuleUUID view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F3575 ASQL_F3575 C2 NOT_RELEASED
ASQL_F4070 ASQL_F4070 C2 NOT_RELEASED
ASQL_F4071 ASQL_F4071 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MDQltyMinedRuleUUID MDQltyMinedRuleUUID Mined Rule UUID
KEY MDQltyMinedRuleExpression MDQltyMinedRuleExpression
_MDQltyMinedRule _MDQltyMinedRule

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_MDQltyMinedRuleExpDetail.
-- 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: PMDQRULEMINEDE
-- Parameters: P_MDQltyMinedRuleUUID : mdqltyminedruleuuid

CREATE VIEW C_MDQltyMinedRuleExpDetail AS
SELECT
  MDQltyMinedRuleUUID,
  MDQltyMinedRuleExpression
FROM P_MDQltyMinedRuleExpDescTbFunc
LEFT OUTER JOIN I_MDQltyMinedRule AS _MDQltyMinedRule ON MDQltyMinedRuleUUID = _MDQltyMinedRule.MDQltyMinedRuleUUID  -- association [0..1]
;