I_ChgImpactBOMLtstChgState
BOM Header Latest Change States
I_ChgImpactBOMLtstChgState is a Composite CDS View that provides data about "BOM Header Latest Change States" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterial) and exposes 4 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BillOfMaterial | BillOfMaterial | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICHGBOMHDLTSCHG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | BOM Header Latest Change States | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfMaterial | I_BillOfMaterial | BillOfMaterial | |
| KEY | BillOfMaterialCategory | I_BillOfMaterial | BillOfMaterialCategory | |
| KEY | BillOfMaterialVariant | I_BillOfMaterial | BillOfMaterialVariant | |
| BOMHdrLtstIntChgCount |
@AbapCatalog.sqlViewName: 'ICHGBOMHDLTSCHG'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'BOM Header Latest Change States'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@VDM.viewType:#COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ChgImpactBOMLtstChgState
as select from I_BillOfMaterial as BillOfMaterial {
key BillOfMaterial.BillOfMaterial,
key BillOfMaterial.BillOfMaterialCategory,
key BillOfMaterial.BillOfMaterialVariant,
max(BOMHeaderInternalChangeCount) as BOMHdrLtstIntChgCount
}
group by
BillOfMaterial.BillOfMaterial,
BillOfMaterial.BillOfMaterialCategory,
BillOfMaterial.BillOfMaterialVariant
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BILLOFMATERIAL"
],
"ASSOCIATED":
[],
"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