I_ChgImpactOrderEffectivity
Order Effectivity
I_ChgImpactOrderEffectivity is a Basic CDS View that provides data about "Order Effectivity" in SAP S/4HANA. It reads from 1 data source (mpe_bom_ps_rel) and exposes 3 fields with key field OrderID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mpe_bom_ps_rel | ChgImpactParameffec | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICHGIMPORDEFF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Order Effectivity | view | |
| ObjectModel.representativeKey | OrderID | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | mpe_bom_ps_rel | aufnr | |
| Material | mpe_bom_ps_rel | matnr | ||
| EffectivityParameterVariant | mpe_bom_ps_rel | techs |
@AbapCatalog.sqlViewName: 'ICHGIMPORDEFF'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MASTER}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Order Effectivity'
@ObjectModel.representativeKey: 'OrderID'
define view I_ChgImpactOrderEffectivity as select from mpe_bom_ps_rel
as ChgImpactParameffec
{
key ChgImpactParameffec.aufnr as OrderID,
ChgImpactParameffec.matnr as Material,
ChgImpactParameffec.techs as EffectivityParameterVariant
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_BOM_PS_REL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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