A_ChangeRecordLifeCycleStatus

DDL: A_CHANGERECORDLIFECYCLESTATUS Type: view_entity BASIC

Change Record LifeCycle Status

A_ChangeRecordLifeCycleStatus is a Basic CDS View that provides data about "Change Record LifeCycle Status" in SAP S/4HANA. It reads from 1 data source (I_ChgRecordLifecycleStatus) and exposes 3 fields with key field ChangeRecordLifecycleStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChgRecordLifecycleStatus I_ChgRecordLifecycleStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_ChgRecordLifeCycleStatusText _ChangeRecdLifeCycleStatusText $projection.ChangeRecordLifecycleStatus = _ChangeRecdLifeCycleStatusText.ChangeRecordLifecycleStatus and _ChangeRecdLifeCycleStatusText.Language = $session.system_language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Record LifeCycle Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordLifecycleStatus ChangeRecordLifecycleStatus Issue Lifecycle
ChangeRecordLifecycleStatusTxt _ChangeRecdLifeCycleStatusText ChangeRecordLifecycleStatusTxt
_ChangeRecdLifeCycleStatusText _ChangeRecdLifeCycleStatusText

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 A_ChangeRecordLifeCycleStatus.
-- 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 A_ChangeRecordLifeCycleStatus AS
SELECT
  ChangeRecordLifecycleStatus,
  _ChangeRecdLifeCycleStatusText.ChangeRecordLifecycleStatusTxt AS ChangeRecordLifecycleStatusTxt
FROM I_ChgRecordLifecycleStatus
LEFT OUTER JOIN A_ChgRecordLifeCycleStatusText AS _ChangeRecdLifeCycleStatusText ON ChangeRecordLifecycleStatus = _ChangeRecdLifeCycleStatusText.ChangeRecordLifecycleStatus AND _ChangeRecdLifeCycleStatusText.Language = $session.system_language  -- association [0..1]
;