I_InspLotDynamicRule
Dynamic modification rule
I_InspLotDynamicRule is a Basic CDS View (Dimension) that provides data about "Dynamic modification rule" in SAP S/4HANA. It reads from 1 data source (qddr) and exposes 5 fields with key field InspLotDynamicRule. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qddr | qddr | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_InspLotDynRuleStage | _InspLotDynRuleStage | $projection.InspLotDynamicRule = _InspLotDynRuleStage.InspLotDynamicRule |
| [0..1] | I_InspLotDynRuleStage | _InspLotDynRuleInitStage | $projection.InspLotDynamicRule = _InspLotDynRuleInitStage.InspLotDynamicRule and $projection.InspLotDynRuleInitStage = _InspLotDynRuleInitStage.InspLotDynRuleStage |
| [0..*] | I_InspLotDynamicRuleText | _Text | $projection.InspLotDynamicRule = _Text.InspLotDynamicRule |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Dynamic modification rule | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Metadata.allowExtensions | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AbapCatalog.sqlViewName | IINSPDYNRULE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | InspLotDynamicRule | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.sapObjectNodeType.name | InspectionLotDynamicRule | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspLotDynamicRule | |||
| InspLotDynRuleInitStage | prstufeanf | |||
| _InspLotDynRuleStage | _InspLotDynRuleStage | |||
| _InspLotDynRuleInitStage | _InspLotDynRuleInitStage | |||
| _Text | _Text |
@EndUserText.label: 'Dynamic modification rule'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Analytics.dataCategory: #DIMENSION
@Metadata.allowExtensions:true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #MANDATORY
@AbapCatalog.sqlViewName: 'IINSPDYNRULE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'InspLotDynamicRule'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER }
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #ANALYTICAL_DIMENSION ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.sapObjectNodeType.name: 'InspectionLotDynamicRule'
define view I_InspLotDynamicRule
as select from qddr
association [0..*] to I_InspLotDynRuleStage as _InspLotDynRuleStage on $projection.InspLotDynamicRule = _InspLotDynRuleStage.InspLotDynamicRule
association [0..1] to I_InspLotDynRuleStage as _InspLotDynRuleInitStage
on $projection.InspLotDynamicRule = _InspLotDynRuleInitStage.InspLotDynamicRule
and $projection.InspLotDynRuleInitStage = _InspLotDynRuleInitStage.InspLotDynRuleStage
association [0..*] to I_InspLotDynamicRuleText as _Text on $projection.InspLotDynamicRule = _Text.InspLotDynamicRule
{
@ObjectModel.text.association: '_Text'
key cast( dynregel as vdm_qdynregel preserving type ) as InspLotDynamicRule,
prstufeanf as InspLotDynRuleInitStage,
//Assocations
_InspLotDynRuleStage,
_InspLotDynRuleInitStage,
_Text
}
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