I_ChgRecordLifecycleStatus
Change Record LifeCycle Status
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | Domain | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 | |
| 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 |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordLifecycleStatus | |||
| DomainValue | domvalue_l |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record LifeCycle Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE ]
@ObjectModel.representativeKey: 'ChangeRecordLifecycleStatus'
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#VALUE_HELP
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view entity I_ChgRecordLifecycleStatus
as select from dd07l as Domain
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key cast( domvalue_l as /iam/issue_lcycle_stat_cd ) as ChangeRecordLifecycleStatus,
@Consumption.hidden: true
domvalue_l as DomainValue
}
where
Domain.domname = '/IAM/ISSUE_LCYCLE_STAT_CD'
and Domain.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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