I_SDDocumentMultiLevelProcFlow
SD Document Multi Level Process Flow
I_SDDocumentMultiLevelProcFlow is a Basic CDS View (Dimension) that provides data about "SD Document Multi Level Process Flow" in SAP S/4HANA. It reads from 1 data source (vbfa) and exposes 29 fields with key field DocRelationshipUUID. It has 4 associations to related views. Part of development package VDM_SD_SLS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vbfa | vbfa | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_UnitOfMeasure | _BaseUnit | $projection.BaseUnit = _BaseUnit.UnitOfMeasure |
| [0..1] | I_UnitOfMeasure | _OrderQuantityUnit | $projection.OrderQuantityUnit = _OrderQuantityUnit.UnitOfMeasure |
| [0..1] | I_Currency | _StatisticsCurrency | $projection.StatisticsCurrency = _StatisticsCurrency.Currency |
| [0..1] | I_GoodsMovementType | _GoodsMovementType | $projection.GoodsMovementType = _GoodsMovementType.GoodsMovementType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | DocRelationshipUUID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | SD Document Multi Level Process Flow | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.sqlViewName | ISDDOCMLPROCFLOW | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Metadata.allowExtensions | true | view |
Fields (29)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocRelationshipUUID | vbfa | ruuid | |
| PrecedingDocument | vbfa | vbelv | ||
| PrecedingDocumentItem | vbfa | posnv | ||
| PrecedingDocumentCategory | vbfa | vbtyp_v | ||
| SubsequentDocument | vbfa | vbeln | ||
| SubsequentDocumentItem | vbfa | posnn | ||
| SubsequentDocumentCategory | vbfa | vbtyp_n | ||
| ProcessFlowLevel | vbfa | stufe | ||
| CreationDate | vbfa | erdat | ||
| CreationTime | vbfa | erzet | ||
| LastChangeDate | vbfa | aedat | ||
| QuantityInBaseUnit | vbfa | rfmng | ||
| RefQuantityInOrdQtyUnitAsFloat | vbfa | rfmng_flo | ||
| RefQuantityInBaseUnitAsFloat | vbfa | rfmng_flt | ||
| BaseUnit | vbfa | meins | ||
| OrderQuantityUnit | vbfa | vrkme | ||
| SDFulfillmentCalculationRule | vbfa | plmin | ||
| NetAmount | vbfa | rfwrt | ||
| StatisticsCurrency | vbfa | waers | ||
| TransferOrderInWrhsMgmtIsConfd | vbfa | taqui | ||
| WarehouseNumber | vbfa | lgnum | ||
| MaterialDocumentYear | vbfa | mjahr | ||
| GoodsMovementType | vbfa | bwart | ||
| BillingPlan | vbfa | fplnr | ||
| BillingPlanItem | vbfa | fpltr | ||
| _BaseUnit | _BaseUnit | |||
| _OrderQuantityUnit | _OrderQuantityUnit | |||
| _StatisticsCurrency | _StatisticsCurrency | |||
| _GoodsMovementType | _GoodsMovementType |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
representativeKey: 'DocRelationshipUUID',
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #XL
},
supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
modelingPattern: [ #ANALYTICAL_DIMENSION ]
}
@Metadata.ignorePropagatedAnnotations:true
@EndUserText.label: 'SD Document Multi Level Process Flow'
@Analytics:{dataCategory:#DIMENSION}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AbapCatalog.sqlViewName: 'ISDDOCMLPROCFLOW'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@Metadata.allowExtensions:true
define view I_SDDocumentMultiLevelProcFlow
as select from vbfa
association [0..1] to I_UnitOfMeasure as _BaseUnit on $projection.BaseUnit = _BaseUnit.UnitOfMeasure
association [0..1] to I_UnitOfMeasure as _OrderQuantityUnit on $projection.OrderQuantityUnit = _OrderQuantityUnit.UnitOfMeasure
association [0..1] to I_Currency as _StatisticsCurrency on $projection.StatisticsCurrency = _StatisticsCurrency.Currency
association [0..1] to I_GoodsMovementType as _GoodsMovementType on $projection.GoodsMovementType = _GoodsMovementType.GoodsMovementType
{
//Key
key vbfa.ruuid as DocRelationshipUUID,
//Preceding
vbfa.vbelv as PrecedingDocument,
vbfa.posnv as PrecedingDocumentItem,
vbfa.vbtyp_v as PrecedingDocumentCategory,
//Subsequent
vbfa.vbeln as SubsequentDocument,
vbfa.posnn as SubsequentDocumentItem,
vbfa.vbtyp_n as SubsequentDocumentCategory,
//Process Flow Level
vbfa.stufe as ProcessFlowLevel,
//Admin
@Semantics.systemDate.createdAt: true
vbfa.erdat as CreationDate,
vbfa.erzet as CreationTime,
@Semantics.systemDate.lastChangedAt: true
vbfa.aedat as LastChangeDate,
//Quantity of subsequent document
@DefaultAggregation: #SUM
@Semantics.quantity.unitOfMeasure: 'BaseUnit'
vbfa.rfmng as QuantityInBaseUnit,
@DefaultAggregation: #SUM
@Semantics.quantity.unitOfMeasure: 'OrderQuantityUnit'
vbfa.rfmng_flo as RefQuantityInOrdQtyUnitAsFloat,
@DefaultAggregation: #SUM
@Semantics.quantity.unitOfMeasure: 'BaseUnit'
vbfa.rfmng_flt as RefQuantityInBaseUnitAsFloat,
@Semantics.unitOfMeasure: true
@ObjectModel.foreignKey.association: '_BaseUnit'
vbfa.meins as BaseUnit,
@Semantics.unitOfMeasure: true
@ObjectModel.foreignKey.association: '_OrderQuantityUnit'
vbfa.vrkme as OrderQuantityUnit,
vbfa.plmin as SDFulfillmentCalculationRule,
//Pricing of subsequent document
@DefaultAggregation: #SUM
@Semantics.amount.currencyCode: 'StatisticsCurrency'
vbfa.rfwrt as NetAmount,
@Semantics.currencyCode: true
@ObjectModel.foreignKey.association: '_StatisticsCurrency'
vbfa.waers as StatisticsCurrency,
//Pick Pack Load
vbfa.taqui as TransferOrderInWrhsMgmtIsConfd,
// Delivery related fields
vbfa.lgnum as WarehouseNumber,
vbfa.mjahr as MaterialDocumentYear,
@ObjectModel.foreignKey.association: '_GoodsMovementType'
vbfa.bwart as GoodsMovementType,
// Billing Plan related fields
vbfa.fplnr as BillingPlan,
vbfa.fpltr as BillingPlanItem,
_BaseUnit,
_OrderQuantityUnit,
_StatisticsCurrency,
_GoodsMovementType
}
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