I_ProdCmplncSrvcReqExtStatus
Dimension view for PC Service Request External Status
I_ProdCmplncSrvcReqExtStatus is a Basic CDS View that provides data about "Dimension view for PC Service Request External Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProdCmplncSrvcReqExtStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProdCmplncSrvcReqExtStatusT | _Text | $projection.ProdCmplncSrvcReqExtStatus = _Text.ProdCmplncSrvcReqExtStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPCSERVREQEXTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Dimension view for PC Service Request External Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ProdCmplncSrvcReqExtStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdCmplncSrvcReqExtStatus | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPCSERVREQEXTS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Dimension view for PC Service Request External Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'ProdCmplncSrvcReqExtStatus'
@ObjectModel.usageType:{ serviceQuality: #A, // < 1 msec
sizeCategory: #S, // < 1.000
dataClass: #META }
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ProdCmplncSrvcReqExtStatus
as select from dd07l
association [0..*] to I_ProdCmplncSrvcReqExtStatusT as _Text on $projection.ProdCmplncSrvcReqExtStatus = _Text.ProdCmplncSrvcReqExtStatus
{
@ObjectModel.text.association: '_Text'
key cast(dd07l.domvalue_l as prodcmplncsrvcreqextstatus) as ProdCmplncSrvcReqExtStatus,
cast ( case dd07l.domvalue_l
when 'NEW' then 0 // New -> Neutral (gray)
when 'IN_PROCESS' then 0 // In Progress -> Neutral (gray)
when 'READY' then 3 // Ready -> Positive (green)
when 'FINISHED' then 3 // Completed -> Positive (green)
when 'FIN_WO_CHG' then 3 // Completed Without Change -> Positive (green)
when 'REJECTED' then 1 // Rejected -> Negative (red)
when 'IN_CLFCTN' then 2 // In Clarification -> Critical (orange)
else 0
end as prodcmplncsrvcreqextstscritlty ) as ProdCmplncSrvcReqExtStsCritlty,
_Text
}
where
dd07l.domname = 'PRODCMPLNCSRVCREQEXTSTATUS'
and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_PRODCMPLNCSRVCREQEXTSTATUST"
],
"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