I_APSSimulationSession

DDL: I_APSSIMULATIONSESSION Type: view_entity BASIC

Advanced Planning Simulation Session

I_APSSimulationSession is a Basic CDS View (Dimension) that provides data about "Advanced Planning Simulation Session" in SAP S/4HANA. It reads from 1 data source (/sapapo/simsess) and exposes 5 fields with key field SimulationSessionUUID.

Data Sources (1)

SourceAliasJoin Type
/sapapo/simsess /sapapo/simsess from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Advanced Planning Simulation Session view
Analytics.dataCategory #DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey SimulationSessionUUID view
VDM.viewType #BASIC view
Analytics.internalName #LOCAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SimulationSessionUUID simsessid Sim. Session
AdvncdPlngSimulationVersion name Zone name
AdvncdPlngPlanningVersion Plng Version
PlanningVersionExternal _PlanningVersion PlanningVersionExternal
_PlanningVersion _PlanningVersion

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_APSSimulationSession.
-- 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_APSSimulationSession AS
SELECT
  simsessid AS SimulationSessionUUID,
  name AS AdvncdPlngSimulationVersion,
  cast( simverid as /sapapo/om_vrsioid preserving type ) AS AdvncdPlngPlanningVersion,
  _PlanningVersion.PlanningVersionExternal AS PlanningVersionExternal
FROM /sapapo/simsess
;