I_PMRPSimulationText

DDL: I_PMRPSIMULATIONTEXT Type: view_entity BASIC Package: PMRP_ENGINE

Description of a Simulation Plan

I_PMRPSimulationText is a Basic CDS View that provides data about "Description of a Simulation Plan" in SAP S/4HANA. It reads from 1 data source (pmrp_simul_d) and exposes 4 fields with key fields PMRPSimulation, Language. It has 1 association to related views. Part of development package PMRP_ENGINE.

Data Sources (1)

SourceAliasJoin Type
pmrp_simul_d pmrp_simul_d from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PMRPSimulation _PMRPSimulation _PMRPSimulation.PMRPSimulation = $projection.PMRPSimulation

Annotations (6)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Description of a Simulation Plan view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PMRPSimulation simulation_id Simulation ID
KEY Language language Report Text Language
PMRPSimulationDescription text User Group
_PMRPSimulation _PMRPSimulation

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_PMRPSimulationText.
-- 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_PMRPSimulationText AS
SELECT
  simulation_id AS PMRPSimulation,
  Language,
  text AS PMRPSimulationDescription
FROM pmrp_simul_d
LEFT OUTER JOIN I_PMRPSimulation AS _PMRPSimulation ON _PMRPSimulation.PMRPSimulation = PMRPSimulation  -- association [1..1]
;