I_CABusinessLockReasonEnhcdTxT

DDL: I_CABUSINESSLOCKREASONENHCDTXT Type: view_entity COMPOSITE

Business Lock Reason - Text

I_CABusinessLockReasonEnhcdTxT is a Composite CDS View that provides data about "Business Lock Reason - Text" in SAP S/4HANA. It reads from 2 data sources (dd07t, I_CABusinessLockReasonText) and exposes 11 fields with key fields CABusinessProcess, CABusinessLockReasonEnhanced, Language, CABusinessLockReasonEnhanced, Language. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
dd07t _MultReasonText union_all
I_CABusinessLockReasonText I_CABusinessLockReasonText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_CABusinessProcess _BusProcess $projection.CABusinessProcess = _BusProcess.CABusinessProcess

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Lock Reason - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CABusinessProcess CABusinessProcess Process
KEY CABusinessLockReasonEnhanced Lock Reason
KEY Language Language Report Text Language
CABusinessLockReasonName CABusinessLockReasonName
_BusProcess _BusProcess
CABusinessProcess Process
KEY CABusinessLockReasonEnhanced Lock Reason
KEY Language Report Text Language
CABusinessLockReasonName
_BusProcess _BusProcess
_Language _Language

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CABusinessLockReasonEnhcdTxT.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_CABusinessLockReasonEnhcdTxT AS
SELECT
  CABusinessProcess,
  cast( CABusinessLockReason as lockrenh_kk ) AS CABusinessLockReasonEnhanced,
  Language,
  CABusinessLockReasonName
FROM I_CABusinessLockReasonText
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CABusinessProcess AS _BusProcess ON CABusinessProcess = _BusProcess.CABusinessProcess  -- association [1..1]
-- UNION ALL with additional select branch(es): dd07t
;