I_ChmlCustMatlLifeCycleStsText
CCM Lifecycle Status - Txt
I_ChmlCustMatlLifeCycleStsText is a Basic CDS View that provides data about "CCM Lifecycle Status - Txt" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ChmlCustMatlLifeCycleStatus. It has 1 association to related views. Part of development package EHFND_RAP_CCM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | CCM Lifecycle Status - Txt | view | |
| AbapCatalog.sqlViewName | ICCMLFCYCSTST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ChmlCustMatlLifecycleStatus | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ChmlCustMatlLifeCycleStatus | |||
| DomainValue | domvalue_l | |||
| ChmlCustMatlLifecycleStsTxt | ||||
| _Language | _Language | |||
| _ChmlCustMatlLifeCycleStsVH | _ChmlCustMatlLifeCycleStsVH |
@EndUserText.label: 'CCM Lifecycle Status - Txt'
@AbapCatalog.sqlViewName: 'ICCMLFCYCSTST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED // no sensitive data exposed
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'ChmlCustMatlLifecycleStatus',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #MASTER
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked:true
define view I_ChmlCustMatlLifeCycleStsText
as select from dd07t
// parent-child relation of the composition is based on the Sample Fix domain value helps see https://wiki.wdf.sap.corp/wiki/display/SuiteCDS/VDM+CDS+Code+List+Views+and+Services
association to parent I_ChmlCustMatlLifeCycleStsVH as _ChmlCustMatlLifeCycleStsVH on $projection.ChmlCustMatlLifeCycleStatus = _ChmlCustMatlLifeCycleStsVH.ChmlCustMatlLifeCycleStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras preserving type ) as Language,
key cast(domvalue_l as ehfnd_ccm_lc_status ) as ChmlCustMatlLifeCycleStatus,
@Consumption.hidden: true
domvalue_l as DomainValue,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
cast(ddtext as ehfnd_ccm_lc_status_text) as ChmlCustMatlLifecycleStsTxt,
_Language,
_ChmlCustMatlLifeCycleStsVH
}
where
as4local = 'A'
and as4vers = '0000'
and domname = 'EHFND_CCM_LC_STATUS'
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