I_ABOPSegmentSimulationTP

DDL: I_ABOPSEGMENTSIMULATIONTP Type: view_entity TRANSACTIONAL Package: ATP_BOP_SETUP_VDM

ABOP Segment Simulation Transactional Processing

I_ABOPSegmentSimulationTP is a Transactional CDS View that provides data about "ABOP Segment Simulation Transactional Processing" in SAP S/4HANA. It reads from 1 data source (I_ABOPSegmentSimulation) and exposes 6 fields with key field ABOPSegmentSimulationUUID. It has 2 associations to related views. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ABOPSegmentSimulation I_ABOPSegmentSimulation from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ABOPSegmentTP _Segment _Segment.ABOPSegmentUUID = $projection.ABOPSegmentUUID
[0..*] I_ABOPSgmtSimlnSchedLineTP _ScheduleLine _ScheduleLine.ABOPSegmentSimulationUUID = $projection.ABOPSegmentSimulationUUID

Annotations (13)

NameValueLevelField
EndUserText.label ABOP Segment Simulation Transactional Processing view
VDM.viewType #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.representativeKey ABOPSegmentSimulationUUID view
ObjectModel.writeActivePersistence ATP_BOP_SEG_SIM view
ObjectModel.writeDraftPersistence ABOPSEGSIM_D view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName IABOPSEGSIMTP 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_ABOPSegmentSimulationTP.
-- 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_ABOPSegmentSimulationTP AS
SELECT
  ABOPSegmentSimulationUUID,
  ABOPSegmentUUID,
  CreatedByUser,
  CreationDateTime
FROM I_ABOPSegmentSimulation
LEFT OUTER JOIN I_ABOPSegmentTP AS _Segment ON _Segment.ABOPSegmentUUID = ABOPSegmentUUID  -- association [1..1]
LEFT OUTER JOIN I_ABOPSgmtSimlnSchedLineTP AS _ScheduleLine ON _ScheduleLine.ABOPSegmentSimulationUUID = ABOPSegmentSimulationUUID  -- association [0..*]
;