C_ImpctMgmtConfiguration

DDL: C_IMPCTMGMTCONFIGURATION Type: view_entity CONSUMPTION Package: VDM_IMPMGT_MDL

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)

SourceAliasJoin Type
I_ImpctMgmtConfiguration I_ImpctMgmtConfiguration from

Annotations (7)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_IMPCTMGMTSCENARIOMANAGE UI_IMPCTMGMTSCENARIOMANAGE V2 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
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  
}