I_SupProtTimeBucketSum
Supply Protection Time Bucket Sum
I_SupProtTimeBucketSum is a Basic CDS View that provides data about "Supply Protection Time Bucket Sum" in SAP S/4HANA. It reads from 1 data source (sup_pcp) and exposes 3 fields with key field SupProtTimeBucketUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sup_pcp | sup_pcp | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | Supply Protection Time Bucket Sum | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupProtTimeBucketUUID | timebucketuuid | ||
| UnitOfMeasure | ||||
| SupProtConsumedQuantity |
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { usageType: { serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MIXED }
}
@EndUserText.label: 'Supply Protection Time Bucket Sum'
define view entity I_SupProtTimeBucketSum
as select from sup_pcp
{
key timebucketuuid as SupProtTimeBucketUUID,
cast( 'EA' as sup_protected_quantity_unit ) as UnitOfMeasure,
@Semantics.quantity.unitOfMeasure: 'UnitOfMeasure'
sum(consumedquantity) as SupProtConsumedQuantity
}
group by
timebucketuuid
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SUP_PCP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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