I_MaintPlanningBucketType
Maintenance Planning Bucket Type
I_MaintPlanningBucketType is a Basic CDS View that provides data about "Maintenance Planning Bucket Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key field MaintPlanningBucketType. It has 3 associations to related views. Part of development package EAM_PLANNINGBUCKET.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [*] | I_MaintPlanningBucketTypeText | _Text | _Text.MaintPlanningBucketType = $projection.MaintPlanningBucketType |
| [1] | I_Indicator | _MaintPlngBcktTypeIsInactive | _MaintPlngBcktTypeIsInactive.IndicatorValue = $projection.MaintPlngBcktTypeIsInactive |
| [1] | I_Indicator | _MaintPlngBcktTypeRcrrcIsAllwd | _MaintPlngBcktTypeRcrrcIsAllwd.IndicatorValue = $projection.MaintPlngBcktTypeRcrrcIsAllwd |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPLNGBKTTY | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Maintenance Planning Bucket Type | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | MaintPlanningBucketType | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintPlanningBucketType | |||
| _Text | _Text | |||
| _MaintPlngBcktTypeIsInactive | _MaintPlngBcktTypeIsInactive | |||
| _MaintPlngBcktTypeRcrrcIsAllwd | _MaintPlngBcktTypeRcrrcIsAllwd |
@AbapCatalog: {sqlViewName: 'IPLNGBKTTY', compiler.compareFilter, preserveKey }
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Maintenance Planning Bucket Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
resultSet.sizeCategory: #XS,
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S } }
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'MaintPlanningBucketType'
// Note: Reading of DD07L + Usage of coalesce is a temporary workaround until CE Content is delivered
define view I_MaintPlanningBucketType
as select from dd07l
left outer to one join eam_plngbktty on eam_plngbktty.maintplanningbuckettype = dd07l.domvalue_l
association [*] to I_MaintPlanningBucketTypeText as _Text on _Text.MaintPlanningBucketType = $projection.MaintPlanningBucketType
association [1] to I_Indicator as _MaintPlngBcktTypeIsInactive on _MaintPlngBcktTypeIsInactive.IndicatorValue = $projection.MaintPlngBcktTypeIsInactive
association [1] to I_Indicator as _MaintPlngBcktTypeRcrrcIsAllwd on _MaintPlngBcktTypeRcrrcIsAllwd.IndicatorValue = $projection.MaintPlngBcktTypeRcrrcIsAllwd
{
@ObjectModel.text.association: '_Text'
key cast( dd07l.domvalue_l as eam_plngbkttype ) as MaintPlanningBucketType,
cast( coalesce( maintplngbckttypeisinactive, '' )
as eam_plngbkttypeinactive preserving type ) as MaintPlngBcktTypeIsInactive,
cast( case dd07l.domvalue_l when 'OPR' then 'X'
else coalesce( maintplngbckttypercrrcisallwd, '' ) end
as eam_plngbkttypercrrcallwd preserving type ) as MaintPlngBcktTypeRcrrcIsAllwd,
_Text,
_MaintPlngBcktTypeIsInactive,
_MaintPlngBcktTypeRcrrcIsAllwd
}
where
dd07l.domname = 'EAM_PLNGBKTTYPE'
and dd07l.as4local = 'A'
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