I_ChgRecLifecycleStatus
Change Record Lifecycle Status
I_ChgRecLifecycleStatus 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. It has 1 association to related views. Part of development package VDM_PLMB_CR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | value | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ChgRecLifecycleStatusTxt | _Text | _Text.ChangeRecordLifecycleStatus = $projection.ChangeRecordLifecycleStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICHGRECLIFECYCLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Change Record Lifecycle Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | ChangeRecordLifecycleStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordLifecycleStatus | domvalue_l | Lifecycle Status | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ICHGRECLIFECYCLE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Lifecycle Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B,
dataClass: #TRANSACTIONAL,
sizeCategory: #S}
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel.representativeKey: 'ChangeRecordLifecycleStatus'
define view I_ChgRecLifecycleStatus
as select from dd07l as value
association [0..1] to I_ChgRecLifecycleStatusTxt as _Text on _Text.ChangeRecordLifecycleStatus = $projection.ChangeRecordLifecycleStatus
{
@ObjectModel.text.association: '_Text'
@EndUserText.label: 'Lifecycle Status'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 , ranking: #LOW}
key domvalue_l as ChangeRecordLifecycleStatus,
_Text
}
where value.domname = '/IAM/ISSUE_LCYCLE_STAT_CD' and ( value.domvalue_l = '60' or value.domvalue_l = '05' or value.domvalue_l = '10' or value.domvalue_l = '09')
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