I_EstdCostCostingRunStatusText
Estimated Cost Costing Run Status Text
I_EstdCostCostingRunStatusText is a Basic CDS View that provides data about "Estimated Cost Costing Run Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, EstdCostCostingRunStatus. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_EstdCostCostingRunStatus | _EstdCostCostingRunStatus | $projection.EstdCostCostingRunStatus = _EstdCostCostingRunStatus.EstdCostCostingRunStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIESTDCOSTSTATT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | EstdCostCostingRunStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Estimated Cost Costing Run Status Text | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | EstdCostCostingRunStatus | |||
| DomainValue | dd07t | domvalue_l | ||
| EstdCostCostingRunStatusName | ddtext | |||
| _EstdCostCostingRunStatus | _EstdCostCostingRunStatus | |||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'IFIESTDCOSTSTATT',
compiler.compareFilter: true,
preserveKey: true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
representativeKey: 'EstdCostCostingRunStatus',
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER },
dataCategory: #TEXT}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Estimated Cost Costing Run Status Text'
define view I_EstdCostCostingRunStatusText
as select from dd07t
association [0..1] to I_EstdCostCostingRunStatus as _EstdCostCostingRunStatus on $projection.EstdCostCostingRunStatus = _EstdCostCostingRunStatus.EstdCostCostingRunStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras preserving type ) as Language,
key cast(domvalue_l as fml_kala_status) as EstdCostCostingRunStatus,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
ddtext as EstdCostCostingRunStatusName,
_EstdCostCostingRunStatus,
_Language
}
where
domname = 'FML_KALASTATUS'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_ESTDCOSTCOSTINGRUNSTATUS",
"I_LANGUAGE"
],
"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