I_CostEstimateStatusText
Cost Estimate Status - Text
I_CostEstimateStatusText is a Basic CDS View that provides data about "Cost Estimate Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CostEstimateStatus, Language. It has 1 association to related views. Part of development package FINS_PCP_COSTING_RUN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CostEstimateStatus | _CostEstimateStatus | $projection.CostEstimateStatus = _CostEstimateStatus.CostEstimateStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Cost Estimate Status - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | CostEstimateStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostEstimateStatus | |||
| KEY | Language | |||
| DomainValue | dd07t | domvalue_l | ||
| CostEstimateStatusText | ddtext | |||
| _CostEstimateStatus | _CostEstimateStatus |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Cost Estimate Status - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'CostEstimateStatus',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
},
dataCategory: #TEXT
}
@Search.searchable: true
define view entity I_CostEstimateStatusText
as select from dd07t
association [1..1] to I_CostEstimateStatus as _CostEstimateStatus on $projection.CostEstimateStatus = _CostEstimateStatus.CostEstimateStatus
{
key cast(domvalue_l as fpc_cost_estimate_status) as CostEstimateStatus,
@Semantics.language: true
key cast(ddlanguage as spras preserving type) as Language,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
ddtext as CostEstimateStatusText,
_CostEstimateStatus
}
where
domname = 'FPC_COST_ESTIMATE_STATUS'
and as4local = 'A';
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