C_ProdCostCollectorKeyStatusVH
Product Cost Collector Key Status
C_ProdCostCollectorKeyStatusVH is a Consumption CDS View that provides data about "Product Cost Collector Key Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatus) and exposes 2 fields with key field SystemStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatus | I_SystemStatus | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPCCKSTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | SystemStatus | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Product Cost Collector Key Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| SystemStatusName |
@AbapCatalog: {
sqlViewName: 'CPCCKSTVH',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Search.searchable: true
@ObjectModel: {
dataCategory: #VALUE_HELP,
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
},
resultSet.sizeCategory: #XS,
representativeKey: 'SystemStatus'
}
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Product Cost Collector Key Status'
define view C_ProdCostCollectorKeyStatusVH
as select from I_SystemStatus
{
@ObjectModel.text.element: ['SystemStatusName']
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
key SystemStatus,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
@Semantics.text: true
_SystemStatusText[1:Language = $session.system_language].SystemStatusName
}
where
SystemStatus = 'I0002' //Released
or SystemStatus = 'I0009' //Confirmed
or SystemStatus = 'I0045' //Technicaly Completed
or SystemStatus = 'I0076' //Deletion Flag
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SYSTEMSTATUS",
"I_SYSTEMSTATUSTEXT"
],
"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