I_ABOPSegmentSimulation

DDL: I_ABOPSEGMENTSIMULATION SQL: IABOPSEGSIM Type: view BASIC

ABOP Segment Simulation

I_ABOPSegmentSimulation is a Basic CDS View that provides data about "ABOP Segment Simulation" in SAP S/4HANA. It reads from 1 data source (atp_bop_seg_sim) and exposes 6 fields with key field ABOPSegmentSimulationUUID.

Data Sources (1)

SourceAliasJoin Type
atp_bop_seg_sim atp_bop_seg_sim from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IABOPSEGSIM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label ABOP Segment Simulation view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ABOPSegmentSimulationUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ABOPSegmentSimulationUUID abopsegmentsimulationuuid Simulation UUID
ABOPSegmentUUID abopsegmentuuid BOP Segment UUID
CreatedByUser createdbyuser User Name
CreationDateTime creationdatetime Timestamp
_Segment _Segment
_ScheduleLine _ScheduleLine

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_ABOPSegmentSimulation.
-- 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: IABOPSEGSIM

CREATE VIEW I_ABOPSegmentSimulation AS
SELECT
  ABOPSegmentSimulationUUID,
  ABOPSegmentUUID,
  CreatedByUser,
  CreationDateTime
FROM atp_bop_seg_sim
;