I_MDChgProcRAPBasedSwitch
Cloud Ready MDG Switch
I_MDChgProcRAPBasedSwitch is a Basic CDS View that provides data about "Cloud Ready MDG Switch" in SAP S/4HANA. It reads from 1 data source (mdc_model_otc) and exposes 2 fields with key field MDChgProcessSrceObjectTypeCode. Part of development package MDC_RAP_SWITCH.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mdc_model_otc | model | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMDCHGPRAPBASED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Cloud Ready MDG Switch | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessSrceObjectTypeCode | mdc_model_otc | bo_type | |
| MDChgProcessSuiteObjTypeCode |
@AbapCatalog.sqlViewName: 'IMDCHGPRAPBASED'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #S, dataClass: #CUSTOMIZING }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Cloud Ready MDG Switch'
define view I_MDChgProcRAPBasedSwitch
as select from mdc_model_otc as model
left outer to one join mdc_model_suited as model_suited on model.bo_type = model_suited.bo_type
left outer to one join mdc_rap_otc as rap_otc on model.bo_type = rap_otc.rap_switchable_otc
or model_suited.suite = rap_otc.rap_switchable_otc
left outer to one join mdc_rap_switch as rap_switch on model.bo_type = rap_switch.rap_switchable_otc
or model_suited.suite = rap_switch.rap_switchable_otc
{
key model.bo_type as MDChgProcessSrceObjectTypeCode,
case when model_suited.suite is null then '' else model_suited.suite end as MDChgProcessSuiteObjTypeCode,
cast (
case
when rap_otc.rap_switchable_otc is not null
then 'X'
when rap_switch.rap_switched_on is not null
then rap_switch.rap_switched_on
else ' '
end as boole_d preserving type
) as MDChgProcRAPBsdSwitchIsActive
}
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