I_BusinessProcess

DDL: I_BUSINESSPROCESS SQL: IFIBUSPROCESS Type: view BASIC Package: FINS_FIS_FICO

Business Process

I_BusinessProcess is a Basic CDS View (Dimension) that provides data about "Business Process" in SAP S/4HANA. It has 1 association to related views. Part of development package FINS_FIS_FICO.

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingAreaText $projection.ControllingArea = _ControllingAreaText.ControllingArea association[0..*] to I_BusinessProcessText as _Text on $projection.ControllingArea = _Text.ControllingArea and $projection.BusinessProcess = _Text.BusinessProcess and _Text.ValidityEndDate >= $session.system_date and _Text.ValidityStartDate <= $session.system_date association[0..*] to I_CurrentBusinessProcessText as _CurrentBusinessProcessText on $projection.ControllingArea = _CurrentBusinessProcessText.ControllingArea and $projection.BusinessProcess = _CurrentBusinessProcessText.BusinessProcess association[1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea

Annotations (15)

NameValueLevelField
EndUserText.label Business Process view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey BusinessProcess view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIBUSPROCESS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea
KEY BusinessProcess prznr
_Text _Text
_ControllingArea _ControllingArea
_ControllingAreaText _ControllingAreaText
_CurrentBusinessProcessText _CurrentBusinessProcessText
@EndUserText.label: 'Business Process'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@ObjectModel.representativeKey: 'BusinessProcess'
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #M
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIBUSPROCESS'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #CHECK //NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.allowExtensions: true 
@Metadata.ignorePropagatedAnnotations: true

//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

@AccessControl.privilegedAssociations: ['_ControllingAreaText']
// ]--GENERATED

@ObjectModel.supportedCapabilities:[#EXTRACTION_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#ANALYTICAL_DIMENSION,#CDS_MODELING_ASSOCIATION_TARGET]

define view I_BusinessProcess
as select distinct from cbpr

  //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

  association [0..1] to I_ControllingArea      as _ControllingAreaText on   $projection.ControllingArea = _ControllingAreaText.ControllingArea
  // ]--GENERATED

  association[0..*] to I_BusinessProcessText as _Text on  $projection.ControllingArea = _Text.ControllingArea 
                                                      and $projection.BusinessProcess = _Text.BusinessProcess 
                                                      and _Text.ValidityEndDate   >= $session.system_date
                                                      and _Text.ValidityStartDate <= $session.system_date
association[0..*] to I_CurrentBusinessProcessText as _CurrentBusinessProcessText on  $projection.ControllingArea = _CurrentBusinessProcessText.ControllingArea 
                                                      and $projection.BusinessProcess = _CurrentBusinessProcessText.BusinessProcess                                                       
  association[1] to I_ControllingArea as _ControllingArea on   $projection.ControllingArea = _ControllingArea.ControllingArea  
{

      //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

      @Consumption.valueHelpDefinition: [ 
        { entity:  { name:    'I_ControllingAreaStdVH',
                     element: 'ControllingArea' }
        }]
      @ObjectModel.text.association: '_ControllingAreaText'
      // ]--GENERATED

@ObjectModel.foreignKey.association: '_ControllingArea' //Inserted by VDM CDS Suite Plugin

  key cast( kokrs as fis_kokrs preserving type ) as ControllingArea,

@ObjectModel.text.association: '_CurrentBusinessProcessText'
  key prznr as BusinessProcess,
@Consumption.hidden: true  
  _Text,
  _ControllingArea,
      //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

      @Consumption.hidden: true
      _ControllingAreaText,
      // ]--GENERATED

_CurrentBusinessProcessText      

};