I_MaintJobControlParameter
Control Parameters for PMJ
I_MaintJobControlParameter is a Basic CDS View that provides data about "Control Parameters for PMJ" in SAP S/4HANA. It reads from 1 data source (t350_conf_ctrl) and exposes 7 fields with key fields Plant, MaintenanceOrderType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t350_conf_ctrl | t350_conf_ctrl | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [1..1] | I_OrderType | _OrderType | $projection.MaintenanceOrderType = _OrderType.OrderType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IMNTJOBCTRLPARM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Control Parameters for PMJ | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | werks | ||
| KEY | MaintenanceOrderType | auart | ||
| MaintJobIsConfWthoutAssgmt | ||||
| MaintJobIsJobAssgmtRestricted | ||||
| MaintJobIsClearResvnAutomatic | ||||
| _Plant | _Plant | |||
| _OrderType | _OrderType |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IMNTJOBCTRLPARM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@EndUserText.label: 'Control Parameters for PMJ'
define view I_MaintJobControlParameter
as select from t350_conf_ctrl
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
association [1..1] to I_OrderType as _OrderType on $projection.MaintenanceOrderType = _OrderType.OrderType
{
@ObjectModel.foreignKey.association: '_Plant'
key werks as Plant,
@ObjectModel.foreignKey.association: '_OrderType'
key auart as MaintenanceOrderType,
cast ('' as flag) as MaintJobIsConfWthoutAssgmt,
cast ('' as flag) as MaintJobIsJobAssgmtRestricted,
cast ('' as flag) as MaintJobIsClearResvnAutomatic,
_Plant,
_OrderType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T350_CONF_CTRL"
],
"ASSOCIATED":
[
"I_ORDERTYPE",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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