C_MSPWSettings

DDL: C_MSPWSETTINGS SQL: CMSPWSETTINGS Type: view CONSUMPTION Package: RFM_STORE_MOVE_PROD_WORKLIST

MPW: Customizing Settings

C_MSPWSettings is a Consumption CDS View that provides data about "MPW: Customizing Settings" in SAP S/4HANA. It is exposed through 1 OData service (UI_RFM_STORE_MOVEPRODWL). Part of development package RFM_STORE_MOVE_PROD_WORKLIST.

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMSPWSETTINGS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_STORE_MOVEPRODWL UI_RFM_STORE_MOVEPRODWL V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Store Store
InfoAutomUpdateTimeInMinutes
UnprocessedSalesConsideration _BasicSettings UnprocessedSalesConsideration
@AbapCatalog.sqlViewName: 'CMSPWSETTINGS'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S

define view C_MSPWSettings
  as select distinct from I_MoveProdWlSettingsForStore
{
  key Store,
  
      coalesce( _BasicSettings.InfoAutomUpdateTimeInMinutes, 1 )  as InfoAutomUpdateTimeInMinutes,
      @Semantics.booleanIndicator: true
      _BasicSettings.UnprocessedSalesConsideration
}