C_ImpctMgmtConfiguration
Impact Management Configuration
C_ImpctMgmtConfiguration is a Consumption CDS View that provides data about "Impact Management Configuration" in SAP S/4HANA. It reads from 1 data source (I_ImpctMgmtConfiguration) and exposes 4 fields with key field ImpctMgmtObjectTypeName. It is exposed through 1 OData service (UI_IMPCTMGMTSCENARIOMANAGE). Part of development package VDM_IMPMGT_MDL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ImpctMgmtConfiguration | I_ImpctMgmtConfiguration | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Impact Management Configuration | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_IMPCTMGMTSCENARIOMANAGE | UI_IMPCTMGMTSCENARIOMANAGE | V2 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ImpctMgmtObjectTypeName | I_ImpctMgmtConfiguration | ImpctMgmtObjectTypeName | Object Type |
| ImpctMgmtObjectSource | I_ImpctMgmtConfiguration | ImpctMgmtObjectSource | ||
| ImpctMgmtEntityName | ||||
| ImpctMgmtObjectDescription | _Text | ImpctMgmtObjectDescription | Object Description |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Impact Management Configuration'
@Metadata.allowExtensions: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity C_ImpctMgmtConfiguration
as select from I_ImpctMgmtConfiguration
association to I_ImpctMgmtFieldNameStdVH as _Fields on I_ImpctMgmtConfiguration.ImpctMgmtEntityName = _Fields.ImpctMgmtTableName
association to I_ImpctMgmtConfigurationT as _Text on I_ImpctMgmtConfiguration.ImpctMgmtObjectTypeName = _Text.ImpctMgmtObjectTypeName
{
@EndUserText.label: 'Object Type'
key I_ImpctMgmtConfiguration.ImpctMgmtObjectTypeName as ImpctMgmtObjectTypeName,
@UI.hidden: true
I_ImpctMgmtConfiguration.ImpctMgmtObjectSource as ImpctMgmtObjectSource,
@UI.hidden: true
upper( I_ImpctMgmtConfiguration.ImpctMgmtEntityName ) as ImpctMgmtEntityName,
@EndUserText.label: 'Object Description'
_Text.ImpctMgmtObjectDescription as ImpctMgmtObjectDescription
}
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