I_AbopVariantSegmentDraft
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)
| Source | Alias | Join Type |
|---|---|---|
| abopvarseg_d | DraftDocument | from |
| I_DraftAdministrativeData | I_DraftAdministrativeData | inner |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABOPVariantSegmentUUID | abopvarseg_d | abopvariantsegmentuuid | |
| ABOPVariantUUID | abopvarseg_d | abopvariantuuid | ||
| ABOPSegmentUUID | abopvarseg_d | abopsegmentuuid | ||
| ABOPSegmentEvaluationSequence | abopvarseg_d | abopsegmentevaluationsequence | ||
| ABOPSegmentCheckSequence | abopvarseg_d | abopsegmentchecksequence | ||
| ABOPConfirmationStrategy | abopvarseg_d | abopconfirmationstrategy | ||
| IsGlobalSegment | abopvarseg_d | isglobalsegment | ||
| IsExceptionalSegment | abopvarseg_d | isexceptionalsegment | ||
| HasActiveEntity | abopvarseg_d | hasactiveentity |
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'ABOP Variant Segments Draft'
@ObjectModel: {
representativeKey: 'ABOPVariantSegmentUUID',
usageType: {
serviceQuality: #C,
sizeCategory: #M,
dataClass: #MASTER
}
}
@Analytics.technicalName: 'IABOPVARSEGD'
define view entity I_AbopVariantSegmentDraft
as select from abopvarseg_d as DraftDocument
inner join I_DraftAdministrativeData as I_DraftAdministrativeData on I_DraftAdministrativeData.DraftUUID = DraftDocument.abopvariantuuid
{
key DraftDocument.abopvariantsegmentuuid as ABOPVariantSegmentUUID,
// DraftDocument.activeuuid as ActiveUUID,
DraftDocument.abopvariantuuid as ABOPVariantUUID,
// DraftDocument.activeabopvariantuuid as ActiveABOPVariantUUID,
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
}
where
DraftDocument.draftentityoperationcode <> 'D' // IF_DRAFT_CONSTANTS=>co_operation_code-deleted
and DraftDocument.draftentityoperationcode <> 'L' // IF_DRAFT_CONSTANTS=>co_operation_code-redeleted
//where
// I_DraftAdministrativeData.CreatedByUser = $session.user
// or I_DraftAdministrativeData.InProcessByUser = $session.user
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA