FCO_COST_EST_ACDOCP_SDM
Cost Estimate with group acdocp fields
FCO_COST_EST_ACDOCP_SDM is a CDS View that provides data about "Cost Estimate with group acdocp fields" in SAP S/4HANA. It reads from 1 data source (acdocp) and exposes 6 fields with key fields pmatnr, werks, budat, kdauf, kdpos.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| acdocp | acdocp | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FCOCOSTESTSDM1 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Cost Estimate with group acdocp fields | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | pmatnr | pmatnr | ||
| KEY | werks | werks | ||
| KEY | budat | budat | ||
| KEY | kdauf | kdauf | ||
| KEY | kdpos | kdpos | ||
| KEY | category | category |
@AbapCatalog.sqlViewName: 'FCOCOSTESTSDM1'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Cost Estimate with group acdocp fields'
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
define view FCO_COST_EST_ACDOCP_SDM
as select from acdocp
{
key pmatnr,
key werks,
key budat,
//key costg_from_date,
//key costg_to_date,
key kdauf,
key kdpos,
key category
}
where
pmatnr is not initial
and(
category = 'PLANORD02'
or category = 'PLANORD03'
)
and aufnr is initial
group by
pmatnr,
werks,
budat,
//costg_from_date,
//costg_to_date,
kdauf,
kdpos,
category
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACDOCP"
],
"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