I_MDChgProcKPIFilterRecordSts

DDL: I_MDCHGPROCKPIFILTERRECORDSTS SQL: IMDFLTRRECSTS Type: view BASIC

MD KPI Filter Key Record Status

I_MDChgProcKPIFilterRecordSts is a Basic CDS View that provides data about "MD KPI Filter Key Record Status" in SAP S/4HANA. It reads from 2 data sources (I_MDChgProcKPIFilterValue, I_MDChgProcKPIFilterKeyTexts) and exposes 5 fields with key fields MDChangeProcKPIFilter, MDChangeProcKPIValueKey.

Data Sources (2)

SourceAliasJoin Type
I_MDChgProcKPIFilterValue _gradeValue left_outer
I_MDChgProcKPIFilterKeyTexts filterKey from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMDFLTRRECSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label MD KPI Filter Key Record Status view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MDChangeProcKPIFilter I_MDChgProcKPIFilterKeyTexts MDChangeProcKPIFilter KPI Filter
KEY MDChangeProcKPIValueKey I_MDChgProcKPIFilterValue MDChangeProcKPIValueKey Filter Value
MDChangeProcKPIFilterDesc I_MDChgProcKPIFilterKeyTexts MDChangeProcKPIFilterDesc KPI Filter Descr
MDChangeProcKPIFilterLevel I_MDChgProcKPIFilterKeyTexts MDChangeProcKPIFilterLevel KPI Filter Level
MDChangeProcKPIValueKeyDesc I_MDChgProcKPIFilterValue MDChangeProcKPIValueKeyDesc Metric Value Text

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_MDChgProcKPIFilterRecordSts.
-- 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: IMDFLTRRECSTS

CREATE VIEW I_MDChgProcKPIFilterRecordSts AS
SELECT
  filterKey.MDChangeProcKPIFilter AS MDChangeProcKPIFilter,
  _gradeValue.MDChangeProcKPIValueKey AS MDChangeProcKPIValueKey,
  filterKey.MDChangeProcKPIFilterDesc AS MDChangeProcKPIFilterDesc,
  filterKey.MDChangeProcKPIFilterLevel AS MDChangeProcKPIFilterLevel,
  _gradeValue.MDChangeProcKPIValueKeyDesc AS MDChangeProcKPIValueKeyDesc
FROM I_MDChgProcKPIFilterKeyTexts AS filterKey
LEFT OUTER JOIN I_MDChgProcKPIFilterValue AS _gradeValue ON /* join condition not captured in parsed metadata */
;