P_MAINTOPERATIONEXECSTAGECODE
P_MAINTOPERATIONEXECSTAGECODE is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_MaintOperationExecStageCode | view | from | BASIC | Maint. Operation Execution Stage Code |
@AbapCatalog.sqlViewName: 'PMAINOPEXESTAGEC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Maint. Operation Execution Stage Code'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
define view P_MaintOperationExecStageCode as select from eam_mopexcphase
left outer join eam_mopexcphasec on eam_mopexcphasec.maintopexecutionphasecode = eam_mopexcphase.maintopexecutionphasecode
{
key cast( eam_mopexcphase.maintopexecutionphasecode as eam_premainpost_cds preserving type ) as MaintOperationExecStageCode,
eam_mopexcphase.maintopexecstagegroupcode as MaintOpExecStageGroupCode,
coalesce(eam_mopexcphasec.codeisinactive , eam_mopexcphase.codeisinactive ) as CodeIsInactive,
coalesce(eam_mopexcphasec.sequencenumber , eam_mopexcphase.sequencenumber ) as SequenceNumber
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EAM_MOPEXCPHASE",
"EAM_MOPEXCPHASEC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/