I_CABusinessProcess

DDL: I_CABUSINESSPROCESS Type: view_entity BASIC Package: FKKLOCK

Business Lock Process

I_CABusinessProcess is a Basic CDS View that provides data about "Business Lock Process" in SAP S/4HANA. It reads from 1 data source (tfk080f) and exposes 4 fields with key field CABusinessProcess. It has 2 associations to related views. It is exposed through 1 OData service (UI_CADOCUMENT_MNG). Part of development package FKKLOCK.

Data Sources (1)

SourceAliasJoin Type
tfk080f tfk080f from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CABusinessProcessText _Text $projection.CABusinessProcess = _Text.CABusinessProcess
[1..1] I_CAApplicationArea _ApplArea $projection.CAApplicationArea = _ApplArea.CAApplicationArea

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Lock Process view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CABusinessProcess view
ObjectModel.sapObjectNodeType.name ContrAcctgBusinessProcess view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
UI_CADOCUMENT_MNG UI_CADOCUMENT_MNG V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CABusinessProcess proid
CAApplicationArea
_Text _Text
_ApplArea _ApplArea
@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Business Lock Process'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel: { modelingPattern: #NONE,
                representativeKey: 'CABusinessProcess',
                sapObjectNodeType.name: 'ContrAcctgBusinessProcess',
                supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
                                         #CDS_MODELING_DATA_SOURCE,
                                         #SQL_DATA_SOURCE ],
                usageType: { dataClass: #CUSTOMIZING,
                             serviceQuality: #A,
                             sizeCategory: #S } }

@VDM.viewType: #BASIC

define view entity I_CABusinessProcess
  as select from tfk080f

  association [0..*] to I_CABusinessProcessText as _Text     on $projection.CABusinessProcess = _Text.CABusinessProcess
  association [1..1] to I_CAApplicationArea     as _ApplArea on $projection.CAApplicationArea = _ApplArea.CAApplicationArea

{
      @ObjectModel.text.association: '_Text'
  key proid                                      as CABusinessProcess,

      @ObjectModel.foreignKey.association: '_ApplArea'
      cast( applkc as applk_kk preserving type ) as CAApplicationArea,

      _Text,
      _ApplArea
}