FCMLDOC_EDGE_DDL
CDS EDGEs Material Ledger f. HANA GRAPH
FCMLDOC_EDGE_DDL is a CDS View that provides data about "CDS EDGEs Material Ledger f. HANA GRAPH" in SAP S/4HANA. It reads from 1 data source (mlrunlist) and exposes 6 fields with key field docref.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mlrunlist | run | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FCMLDOC_EDGE_V | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | CDS EDGEs Material Ledger f. HANA GRAPH | view |
@AbapCatalog.sqlViewName: 'FCMLDOC_EDGE_V'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'CDS EDGEs Material Ledger f. HANA GRAPH'
define view FCMLDOC_EDGE_DDL
as select distinct from mldoc as doc
inner join mlrunlist as run on doc.mandt = run.mandt
and doc.runref = run.runref
and doc.kalnr = run.kalnr
and doc.jahrper = run.jahrper
{
key doc.docref as docref,
doc.runref as runref,
doc.jahrper as jahrper,
run.run_id as run_id,
doc.kalnr as sourcekalnr,
doc.pkalnr as targetkalnr
}
where
doc.mandt = $session.client
and doc.kalnr <> '000000000000'
and doc.xabr = 'X'
and(
doc.posart = 'MI' -- input material
or doc.posart = 'AI'
) -- input activity
and doc.categ = 'VN'
and doc.pkalnr <> '000000000000'
group by
doc.docref,
doc.runref,
doc.jahrper,
run.run_id,
doc.kalnr,
doc.pkalnr;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MLDOC",
"MLRUNLIST"
],
"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