I_CostEstimateStatus
Cost Estimate Status
I_CostEstimateStatus is a Basic CDS View that provides data about "Cost Estimate Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key field CostEstimateStatus. It has 1 association to related views. Part of development package FINS_PCP_COSTING_RUN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CostEstimateStatusText | _Text | $projection.CostEstimateStatus = _Text.CostEstimateStatus |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Cost Estimate Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | CostEstimateStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostEstimateStatus | |||
| DomainValue | domvalue_l | |||
| DomainValuePosition | valpos | |||
| _Text | _Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Cost Estimate Status'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel: {
compositionRoot: true,
representativeKey: 'CostEstimateStatus',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
},
// will render in Fiori as dropdown
resultSet.sizeCategory: #XS
}
@Search.searchable: true
define view entity I_CostEstimateStatus
as select from dd07l
association [0..*] to I_CostEstimateStatusText as _Text on $projection.CostEstimateStatus = _Text.CostEstimateStatus
{
@ObjectModel.text.association: '_Text'
@UI.hidden: true
key cast(domvalue_l as fpc_cost_estimate_status) as CostEstimateStatus,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
domvalue_l as DomainValue,
@Analytics.hidden: true
@UI.hidden: true
valpos as DomainValuePosition,
_Text
}
where
domname = 'FPC_COST_ESTIMATE_STATUS'
and as4local = 'A'
and as4vers = '0000';
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