I_AbopVariantSegmentDraft

DDL: I_ABOPVARIANTSEGMENTDRAFT Type: view_entity BASIC Package: ATP_BOP_SETUP_VDM

ABOP Variant Segments Draft

I_AbopVariantSegmentDraft is a Basic CDS View that provides data about "ABOP Variant Segments Draft" in SAP S/4HANA. It reads from 2 data sources (abopvarseg_d, I_DraftAdministrativeData) and exposes 9 fields with key field ABOPVariantSegmentUUID. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (2)

SourceAliasJoin Type
abopvarseg_d DraftDocument from
I_DraftAdministrativeData I_DraftAdministrativeData inner

Annotations (9)

NameValueLevelField
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label ABOP Variant Segments Draft view
ObjectModel.representativeKey ABOPVariantSegmentUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Analytics.technicalName IABOPVARSEGD view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ABOPVariantSegmentUUID abopvarseg_d abopvariantsegmentuuid Variant Segment UUID
ABOPVariantUUID abopvarseg_d abopvariantuuid BOP Variant UUID
ABOPSegmentUUID abopvarseg_d abopsegmentuuid BOP Segment UUID
ABOPSegmentEvaluationSequence abopvarseg_d abopsegmentevaluationsequence Check Seq.
ABOPSegmentCheckSequence abopvarseg_d abopsegmentchecksequence Check Seq.
ABOPConfirmationStrategy abopvarseg_d abopconfirmationstrategy Confirmation Strategy
IsGlobalSegment abopvarseg_d isglobalsegment Global Filter
IsExceptionalSegment abopvarseg_d isexceptionalsegment Exc. Filter
HasActiveEntity abopvarseg_d hasactiveentity TRUE

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_AbopVariantSegmentDraft.
-- 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_AbopVariantSegmentDraft AS
SELECT
  DraftDocument.abopvariantsegmentuuid AS ABOPVariantSegmentUUID,
  DraftDocument.abopvariantuuid AS ABOPVariantUUID,
  DraftDocument.abopsegmentuuid AS ABOPSegmentUUID,
  DraftDocument.abopsegmentevaluationsequence AS ABOPSegmentEvaluationSequence,
  DraftDocument.abopsegmentchecksequence AS ABOPSegmentCheckSequence,
  DraftDocument.abopconfirmationstrategy AS ABOPConfirmationStrategy,
  DraftDocument.isglobalsegment AS IsGlobalSegment,
  DraftDocument.isexceptionalsegment AS IsExceptionalSegment,
  DraftDocument.hasactiveentity AS HasActiveEntity
FROM abopvarseg_d AS DraftDocument
INNER JOIN I_DraftAdministrativeData ON /* join condition not captured in parsed metadata */
;