I_SuplrEvaluationScoresOutput

DDL: I_SUPLREVALUATIONSCORESOUTPUT SQL: IMMPURASUPSCROUT Type: view BASIC Package: ODATA_MM_ANALYTICS

Supplier Evaluation Scores Output

I_SuplrEvaluationScoresOutput (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_SuplrEvaluationScoresOutput is a Basic CDS View that provides data about "Supplier Evaluation Scores Output" in SAP S/4HANA. It reads from 1 data source (mmpur_ana_se_om) and exposes 11 fields with key field SuplrEvalScoresOutputUUID. It has 1 association to related views. Part of development package ODATA_MM_ANALYTICS.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-ANA-2CL
CapabilitiesData Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSourcing and Procurement for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
mmpur_ana_se_om _SuplrScoresOutput from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SupplierEvaluationRunInfo _RunInfo _RunInfo.IdentifierOfScoreHistoryJobRun = _SuplrScoresOutput.job_run_id

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMMPURASUPSCROUT view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Supplier Evaluation Scores Output view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SuplrEvalScoresOutputUUID guid Supplier Evaluation Score Output UUID
Supplier supplier_id Account Number of Supplier
IdentifierOfScoreHistoryJobRun job_run_id Job ID
StartDate eval_start_date Evaluation Start Date
EndDate eval_end_date Evaluation End Date
SuplrEvalScoreOutputActionType output_action_type Supplier Evaluation Score Output Type
SuplrEvalScoreOutputStatus status Supplier Evaluation Score Output Status
CreatedByUser created_by Version Created By
SuplrEvalScoreOutpTriggerDate output_trigger_date Supplier Evaluation Output Trigger Date
SuplrEvalScoreOutpCreationDate se_creation_date Supplier Evaluation Creation Date
_RunInfo _RunInfo

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_SuplrEvaluationScoresOutput.
-- 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: IMMPURASUPSCROUT

CREATE VIEW I_SuplrEvaluationScoresOutput AS
SELECT
  guid AS SuplrEvalScoresOutputUUID,
  supplier_id AS Supplier,
  job_run_id AS IdentifierOfScoreHistoryJobRun,
  eval_start_date AS StartDate,
  eval_end_date AS EndDate,
  output_action_type AS SuplrEvalScoreOutputActionType,
  status AS SuplrEvalScoreOutputStatus,
  created_by AS CreatedByUser,
  output_trigger_date AS SuplrEvalScoreOutpTriggerDate,
  se_creation_date AS SuplrEvalScoreOutpCreationDate
FROM mmpur_ana_se_om AS _SuplrScoresOutput
LEFT OUTER JOIN I_SupplierEvaluationRunInfo AS _RunInfo ON _RunInfo.IdentifierOfScoreHistoryJobRun = _SuplrScoresOutput.job_run_id  -- association [0..1]
;