I_CABusinessLockReason
Business Lock Reason
I_CABusinessLockReason is a Composite CDS View that provides data about "Business Lock Reason" in SAP S/4HANA. It reads from 6 data sources and exposes 25 fields with key fields CABusinessProcess, CABusinessLockReason, CABusinessLockReason, CABusinessLockReason, CABusinessLockReason. It has 2 associations to related views. It is exposed through 1 OData service (UI_CADOCUMENT_MNG). Part of development package FKKLOCK.
Data Sources (6)
| Source | Alias | Join Type |
|---|---|---|
| I_CACorrespncDunLockReason | CorrespncDunLockRsn | union_all |
| I_CADunningLockReason | DunLockRsn | from |
| I_CAInterestLockReason | IntrstLockRsn | union_all |
| I_CAInvcgLockReason | InvocgLockRsn | union_all |
| I_CAPaymentLockReason | PaytLockRsn | union_all |
| I_CAPostgAndClrgLockReason | PostgAndClrgLockRsn | union_all |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CABusinessProcess | _BusProcess | $projection.CABusinessProcess = _BusProcess.CABusinessProcess |
| [0..*] | I_CABusinessLockReasonText | _Text | $projection.CABusinessProcess = _Text.CABusinessProcess and $projection.CABusinessLockReason = _Text.CABusinessLockReason |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Business Lock Reason | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.representativeKey | CABusinessLockReason | view | |
| ObjectModel.sapObjectNodeType.name | ContrAcctgBusinessLockReason | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #COMPOSITE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_CADOCUMENT_MNG | UI_CADOCUMENT_MNG | V4 | C1 | NOT_RELEASED |
Fields (25)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CABusinessProcess | BusProc | CABusinessProcess | |
| KEY | CABusinessLockReason | I_CADunningLockReason | CADunningLockReason | |
| CAAuthorizationGroup | I_CADunningLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| CABusinessProcess | ||||
| KEY | CABusinessLockReason | I_CAPaymentLockReason | CAPaymentLockReason | |
| CAAuthorizationGroup | I_CAPaymentLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| CABusinessProcess | ||||
| KEY | CABusinessLockReason | I_CAInterestLockReason | CAInterestLockReason | |
| CAAuthorizationGroup | I_CAInterestLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| CABusinessProcess | ||||
| KEY | CABusinessLockReason | I_CACorrespncDunLockReason | CACorrespncDunLockReason | |
| CAAuthorizationGroup | I_CACorrespncDunLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| CABusinessProcess | ||||
| KEY | CABusinessLockReason | I_CAPostgAndClrgLockReason | CAPostgAndClrgLockReason | |
| CAAuthorizationGroup | I_CAPostgAndClrgLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| CABusinessProcess | ||||
| KEY | CABusinessLockReason | I_CAInvcgLockReason | CAInvcgLockReason | |
| CAAuthorizationGroup | I_CAInvcgLockReason | CAAuthorizationGroup | ||
| _BusProcess | _BusProcess | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Business Lock Reason'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { modelingPattern: #NONE,
representativeKey: 'CABusinessLockReason',
sapObjectNodeType.name: 'ContrAcctgBusinessLockReason',
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE ],
usageType: { dataClass: #CUSTOMIZING,
serviceQuality: #C,
sizeCategory: #S } }
@VDM.viewType: #COMPOSITE
define view entity I_CABusinessLockReason
as select from I_CADunningLockReason as DunLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '01'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
@ObjectModel.foreignKey.association: '_BusProcess'
key BusProc.CABusinessProcess,
@ObjectModel.text.association: '_Text'
key DunLockRsn.CADunningLockReason as CABusinessLockReason,
DunLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
union all select from I_CAPaymentLockReason as PaytLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '02'
or BusProc.CABusinessProcess = '03'
or BusProc.CABusinessProcess = '10'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
key BusProc.CABusinessProcess,
key PaytLockRsn.CAPaymentLockReason as CABusinessLockReason,
PaytLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
union all select from I_CAInterestLockReason as IntrstLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '04'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
key BusProc.CABusinessProcess,
key IntrstLockRsn.CAInterestLockReason as CABusinessLockReason,
IntrstLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
union all select from I_CACorrespncDunLockReason as CorrespncDunLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '07'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
key BusProc.CABusinessProcess,
key CorrespncDunLockRsn.CACorrespncDunLockReason as CABusinessLockReason,
CorrespncDunLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
union all select from I_CAPostgAndClrgLockReason as PostgAndClrgLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '09'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
key BusProc.CABusinessProcess,
key PostgAndClrgLockRsn.CAPostgAndClrgLockReason as CABusinessLockReason,
PostgAndClrgLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
union all select from I_CAInvcgLockReason as InvocgLockRsn
join I_CABusinessProcess as BusProc on BusProc.CABusinessProcess = '05'
or BusProc.CABusinessProcess = '12'
association [1..1] to I_CABusinessProcess as _BusProcess on $projection.CABusinessProcess = _BusProcess.CABusinessProcess
association [0..*] to I_CABusinessLockReasonText as _Text on $projection.CABusinessProcess = _Text.CABusinessProcess
and $projection.CABusinessLockReason = _Text.CABusinessLockReason
{
key BusProc.CABusinessProcess,
key InvocgLockRsn.CAInvcgLockReason as CABusinessLockReason,
InvocgLockRsn.CAAuthorizationGroup as CAAuthorizationGroup,
_BusProcess,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA