I_MDCHANGEPROCMODELSPECIALFLD
MDC Model special fields
I_MDCHANGEPROCMODELSPECIALFLD is a CDS View in S/4HANA. MDC Model special fields. It contains 3 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_MDChangeProcessModelField | view | left_outer | COMPOSITE | Process model field |
| I_MDChangeProcessModelField | view | inner | COMPOSITE | Process model field |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | MDChgProcessSrceObjectTypeCode | MDChgProcessSrceObjectTypeCode | 1 |
| MDChangeProcessModelFieldName | MDChangeProcessModelFieldName | 1 | |
| MDChgProcModelActiveTableName | MDChgProcessModelTableName | 1 |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'MDC Model special fields'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
/*
This view is intended to model each field which requires special handling with regards to different active and process persistences
Further fields can be added with a simple union below.
*/
define view entity I_MDChangeProcModelSpecialFld
as select from mdc_model_fields
/* needed instead of literal value in the view for SADL */
inner join mdc_model_tables on mdc_model_tables.table_name = 'BUT050'
and mdc_model_tables.bo_type = '1405'
{
key mdc_model_fields.bo_type as MDChgProcessSrceObjectTypeCode,
key mdc_model_fields.table_name as MDChgProcessModelTableName,
key mdc_model_fields.field_name as MDChangeProcessModelFieldName,
mdc_model_tables.table_name as MDChgProcModelActiveTableName
}
where
mdc_model_fields.bo_type = '1405'
and mdc_model_fields.table_name = 'BUT050_TD'
and mdc_model_fields.field_name = 'XDFREL'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MDC_MODEL_FIELDS",
"MDC_MODEL_TABLES"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/