I_BusinessProcess

DDL: I_BUSINESSPROCESS SQL: IFIBUSPROCESS Type: view BASIC

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. It is exposed through 5 OData services (UI_HCMAPPROVETIMESHEET, UI_HCMCOMPLIANCE, UI_HCMCOMPLIANCE_EMP, ...). It is used in 2 Fiori applications: Approve Timesheets (S/4HANA / Version 4), My Timesheet (S/4HANA / Version 4).

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

OData Services (5)

ServiceBindingVersionContractRelease
UI_HCMAPPROVETIMESHEET UI_HCMAPPROVETIMESHEET V2 C1 NOT_RELEASED
UI_HCMCOMPLIANCE UI_HCMCOMPLIANCE_V2 V2 C1 NOT_RELEASED
UI_HCMCOMPLIANCE_EMP UI_HCMCOMPLIANCE_EMP_V2 V2 C1 NOT_RELEASED
UI_HCMMYTIMESHEET API_HCMMYTIMESHEET V2 C2 NOT_RELEASED
UI_HCMMYTIMESHEET UI_HCMMYTIMESHEET V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F2585A Approve Timesheets (S/4HANA / Version 4) Analytical With this app, you as a manager can quickly view all pending approvals of your direct reports and approve timesheets using desktop or mobile devices.
F3074A My Timesheet (S/4HANA / Version 4) Transactional You, as an employee, can use this app to manage your time entries quickly and efficiently using a desktop or a mobile device.

Approve Timesheets (S/4HANA / Version 4)

Business Role: Manager - HR Info

With this app, you as a manager can quickly view all pending approvals of your direct reports and approve timesheets using desktop, tablet or mobile devices. This app provides the following key features: Review timesheets for all your employees and view time entry compliance at a glance. View all time entries pending approval or that have already been approved. Filter time entries based on a date range, on specific attributes, or per employee. View designation and contact information of each employee. Approve or reject records by week.

My Timesheet (S/4HANA / Version 4)

Business Role: Employee - HR Info

You, as an employee, can use this app to manage your time entries quickly and efficiently using a desktop or a mobile device. You can use this app to do the following: enter time records for the chosen personnel assignment using form entry or assignments. create or import assignments and manage them. create and manage assignment groups. use horizontal or grid view for time entries. view the calendar for a chosen month on a desktop device, and for a given week on a mobile device. copy and paste time records. access the to-do list. switch between the allowed data entry profiles for a given time entry.

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      

};