I_ABOPSgmtSimlnSchedLineTP

DDL: I_ABOPSGMTSIMLNSCHEDLINETP Type: view_entity TRANSACTIONAL Package: ATP_BOP_SETUP_VDM

ABOP Segment Simulation Schedlines TP

I_ABOPSgmtSimlnSchedLineTP is a Transactional CDS View that provides data about "ABOP Segment Simulation Schedlines TP" in SAP S/4HANA. It reads from 1 data source (I_ABOPSgmtSimlnSchedLine) and exposes 18 fields with key field ABOPSegmentSimlnSchedLineUUID. It has 3 associations to related views. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
I_ABOPSgmtSimlnSchedLine I_ABOPSgmtSimlnSchedLine from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_ABOPSegmentSimulationTP _Simulation _Simulation.ABOPSegmentSimulationUUID = $projection.ABOPSegmentSimulationUUID
[1..1] I_ABOPSegmentTP _Segment _Segment.ABOPSegmentUUID = $projection.ABOPSegmentUUID
[0..1] I_Plant _SupplyingPlant $projection.SupplyingPlant = _SupplyingPlant.Plant

Annotations (14)

NameValueLevelField
EndUserText.label ABOP Segment Simulation Schedlines TP view
VDM.viewType #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.representativeKey ABOPSegmentSimlnSchedLineUUID view
ObjectModel.writeActivePersistence ATP_BOP_SEG_SMSL view
ObjectModel.writeDraftPersistence ABOPSEGSMSL_D view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName IABOPSEGSMSLTP view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ABOPSegmentSimlnSchedLineUUID ABOPSegmentSimlnSchedLineUUID Simulation SLine ID
ABOPSegmentSimulationUUID ABOPSegmentSimulationUUID Simulation UUID
ABOPSegmentUUID ABOPSegmentUUID BOP Segment UUID
ATPRelevantDocumentCategory ATPRelevantDocumentCategory ATP: Category of Stock / Receipts / Issues
ATPRelevantDocument ATPRelevantDocument MRP element number
ATPRelevantDocumentItem ATPRelevantDocumentItem MRP elemnt item
ATPRelevantDocScheduleLine ATPRelevantDocScheduleLine Scheduling
SelectionSequencePosition SelectionSequencePosition Sched. Line Priority
Product Product Product Sold
SupplyingPlant SupplyingPlant Supplying Plant
Recipient Recipient To
SchedLineIsProdAvailyCheckRlvt SchedLineIsProdAvailyCheckRlvt PAC-Relevant
SchedLineIsProdAllocationRlvt SchedLineIsProdAllocationRlvt PAL-Relevant
SchedLineIsSupplyAssgmtRlvt SchedLineIsSupplyAssgmtRlvt ARun-Relevant
ScheduleLineIsSelected ScheduleLineIsSelected TRUE
_Simulation _Simulation
_Segment _Segment
_SupplyingPlant _SupplyingPlant

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_ABOPSgmtSimlnSchedLineTP.
-- 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_ABOPSgmtSimlnSchedLineTP AS
SELECT
  ABOPSegmentSimlnSchedLineUUID,
  ABOPSegmentSimulationUUID,
  ABOPSegmentUUID,
  ATPRelevantDocumentCategory,
  ATPRelevantDocument,
  ATPRelevantDocumentItem,
  ATPRelevantDocScheduleLine,
  SelectionSequencePosition,
  Product,
  SupplyingPlant,
  Recipient,
  SchedLineIsProdAvailyCheckRlvt,
  SchedLineIsProdAllocationRlvt,
  SchedLineIsSupplyAssgmtRlvt,
  ScheduleLineIsSelected
FROM I_ABOPSgmtSimlnSchedLine
LEFT OUTER JOIN I_ABOPSegmentSimulationTP AS _Simulation ON _Simulation.ABOPSegmentSimulationUUID = ABOPSegmentSimulationUUID  -- association [1..1]
LEFT OUTER JOIN I_ABOPSegmentTP AS _Segment ON _Segment.ABOPSegmentUUID = ABOPSegmentUUID  -- association [1..1]
LEFT OUTER JOIN I_Plant AS _SupplyingPlant ON SupplyingPlant = _SupplyingPlant.Plant  -- association [0..1]
;