C_Customer360Configuration

DDL: C_CUSTOMER360CONFIGURATION Type: view_entity CONSUMPTION

Customer 360 System Configuration

C_Customer360Configuration is a Consumption CDS View that provides data about "Customer 360 System Configuration" in SAP S/4HANA. It reads from 1 data source (I_SAPClient). It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Associations (1)

CardinalityTargetAliasCondition
[1..1] P_SrvcOrderCnfgrd _SrvcOrderCnfgrd 1 = 1

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer 360 System Configuration view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Customer 360 System Configuration'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
    serviceQuality: #B,
    sizeCategory: #S,
    dataClass: #CUSTOMIZING
}
@VDM.viewType: #CONSUMPTION
//! Purpose : System dependant configuration for facet visibility

define view entity C_Customer360Configuration
  as select from I_SAPClient
  association [1..1] to P_SrvcOrderCnfgrd as _SrvcOrderCnfgrd on 1 = 1
{
  @Semantics.booleanIndicator: true
  case _SrvcOrderCnfgrd.NumberOfServiceOrderTypes
   when 0  then 'X'
   else ''
   end as SrvcOrdUIIsInactive //SrvcOrdUIIsInactive  is 'X' means hidden true since Service order related configuration(NumberOfServiceOrderTypes) is 0


}