I_BusVolFieldCombnType
Business Volume Field Combination Type
I_BusVolFieldCombnType is a Basic CDS View (Dimension) that provides data about "Business Volume Field Combination Type" in SAP S/4HANA. It reads from 1 data source (R_BusVolFieldCombnType) and exposes 3 fields with key field BusVolFieldCombnType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_BusVolFieldCombnType | R_BusVolFieldCombnType | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusVolFieldCombnTypeText | _Text | $projection.BusVolFieldCombnType = _Text.BusVolFieldCombnType |
| [0..*] | I_BusVolFldCombnTypeFldAssgmt | _BusVolFldCombnTypeFldAssgmt | $projection.BusVolFieldCombnType = _BusVolFldCombnTypeFldAssgmt.BusVolFieldCombnType |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBUSVOLFLDCTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Business Volume Field Combination Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | BusVolFieldCombnType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | false | view | |
| Analytics.internalName | #LOCAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusVolFieldCombnType | BusVolFieldCombnType | ||
| _Text | _Text | |||
| _BusVolFldCombnTypeFldAssgmt | _BusVolFldCombnTypeFldAssgmt |
@AbapCatalog: {
sqlViewName: 'IBUSVOLFLDCTYPE',
compiler.compareFilter: true,
preserveKey: true
}
@EndUserText.label: 'Business Volume Field Combination Type'
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
representativeKey: 'BusVolFieldCombnType',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities : [ #ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE ],
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
}
@ClientHandling: {
type: #INHERITED,
algorithm: #SESSION_VARIABLE
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: false,
internalName: #LOCAL
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusVolFieldCombnType
as select from R_BusVolFieldCombnType
association [0..*] to I_BusVolFieldCombnTypeText as _Text on $projection.BusVolFieldCombnType = _Text.BusVolFieldCombnType
association [0..*] to I_BusVolFldCombnTypeFldAssgmt as _BusVolFldCombnTypeFldAssgmt on $projection.BusVolFieldCombnType = _BusVolFldCombnTypeFldAssgmt.BusVolFieldCombnType
{
@ObjectModel.text.association: '_Text'
key BusVolFieldCombnType,
/* Associations */
_Text,
_BusVolFldCombnTypeFldAssgmt
}
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