I_ChgRecdItemProcgStatusText
Change Record Item Processing Status Des
I_ChgRecdItemProcgStatusText is a Basic CDS View that provides data about "Change Record Item Processing Status Des" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields ChangeRecordItemProcgStatus, Language. Part of development package VDM_PLMB_CR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Change Record Item Processing Status Des | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IPROCGSTUVALTXT | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Item Processing Status Des'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #S, dataClass: #CUSTOMIZING}
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IPROCGSTUVALTXT'
define view entity I_ChgRecdItemProcgStatusText
as select from dd07t
{
key cast(dd07t.domvalue_l as /plmb/cr_item_proc_status ) as ChangeRecordItemProcgStatus,
@Semantics.language: true
key dd07t.ddlanguage as Language,
@Semantics.text: true
dd07t.ddtext as ProcessingStatusDesc
}
where
dd07t.domname = '/PLMB/CR_ITEM_PROC_STATUS'
and dd07t.as4local = 'A'
and dd07t.ddlanguage = $session.system_language
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