I_ChgRecordLifecycleStatus

DDL: I_CHGRECORDLIFECYCLESTATUS Type: view_entity BASIC

Change Record LifeCycle Status

I_ChgRecordLifecycleStatus (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

ChangeRecordLifecycleStatus · Product Lifecycle Management

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

SAP Help Documentation

CategoryChange Record
StatusChange Record Lifecycle Status
Purpose
This CDS view provides value help for the change record lifecycle status. A change record lifecycle status is a coded representation of the lifecycle status of a change record. It is used in change record processing and indicates the current processing stage of a change record. This view should be used for value help purposes only. The status can be any one of the following: Status Description In Preparation Change record is being prepared Submitted Change record is submitted Approved Change record is approved Incomplete Change record is incomplete In Process Change record is in process Not Applicable Change record is not applicable Cancelled Change record is cancelled Rejected Change record is rejected Awaiting Approval Change record is awaiting approval Closed Change record is closed Completed Change record is completed New New change record Postponed Change record is postponed In Process After Completion Change record is in process after completion Flagged for Deletion Change record is flagged for deletion

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Main CDS parameters and filters The following are the default filters. Change Record Lifecycle Status (ChangeRecordLifecycleStatus) Filters can be selected according to user requirements. Important Fields Important fields in this view include the following: Field Name Description Comment ChangeRecordLifecycleStatus Change Record Lifecycle Status The following are values SAP ships: 01 : In Preparation 09 : Completed 07 : Rejected 05 : In Process 03 : Approved 10 : Canceled 60 : New 08 : Closed 02 : Submitted 04 : Incomplete 06 : Not Applicable 11 : Awaiting Approval 62 : Postponed 63 : In Process After Completion 64 : Flagged for Deletion

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessProduct Lifecycle Management
Application ComponentPLM-CR
CapabilitiesAssociation Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source in SQL Select
PackageProduct Lifecycle Management for SAP S/4HANA Cloud Private Edition
Description This CDS view provides value help for the change record lifecycle status. A change record lifecycle status is a coded representation of the lifecycle status of a change record. It is used in change record processing and indicates the current processing stage of a change record. This view should be used for value help purposes only. The status can be any one of the following: Status Description <p>In Preparation</p> <p>Change record is being prepared </p> <p>Submitted</p> <p>Change record is submitted</p> <p>Approved</p> <p>Change record is approved</p> <p>Incomplete</p> <p>Change record is incomplete</p> <p>In Process</p> <p>Change record is in process</p> <p>Not Applicable</p> <p>Change record is not applicable</p> <p>Cancelled</p> <p>Change record is cancelled</p> <p>Rejected</p> <p>Change record is rejected</p> <p>Awaiting Approval</p> <p>Change record is awaiting approval</p> <p>Closed</p> <p>Change record is closed</p> <p>Completed</p> <p>Change record is completed</p> <p>New</p> <p>New change record</p> <p>Postponed</p> <p>Change record is postponed</p> <p>In Process After Completion</p> <p>Change record is in process after completion</p> <p>Flagged for Deletion </p> <p>Change record is flagged for deletion</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l Domain from

Annotations (13)

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
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey ChangeRecordLifecycleStatus view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.sapObjectNodeType.name ChangeRecordLifecycleStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordLifecycleStatus Issue Lifecycle Status Code
DomainValue domvalue_l Values for Domains: Single Value/Lower Limit

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_ChgRecordLifecycleStatus.
-- 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_ChgRecordLifecycleStatus AS
SELECT
  cast( domvalue_l as /iam/issue_lcycle_stat_cd ) AS ChangeRecordLifecycleStatus,
  domvalue_l AS DomainValue
FROM dd07l AS Domain
;