Fcdm_Keyfigures_Read_GI
Read Goods Issues
Fcdm_Keyfigures_Read_GI is a CDS View that provides data about "Read Goods Issues" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 5 fields with key fields matnr, werks, lgort.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| matdoc | matdoc | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_FCDM_GI | view | |
| EndUserText.label | Read Goods Issues | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #AUTOMATED | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | matnr | matbf | ||
| KEY | werks | werks | ||
| KEY | lgort | lgort_sid | ||
| meins | meins | |||
| quantity | matdoc | consumption_qty |
@AbapCatalog.sqlViewName: 'V_FCDM_GI'
@EndUserText.label: 'Read Goods Issues'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #AUTOMATED
@ObjectModel.usageType: {serviceQuality: #X, sizeCategory: #XXL, dataClass: #TRANSACTIONAL}
define view Fcdm_Keyfigures_Read_GI as
select from matdoc {
key matbf as matnr,
key werks as werks,
key lgort_sid as lgort,
meins,
matdoc.consumption_qty as quantity, -- this field contains a quantity > 0 for GIs of type "consumption"
budat
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MATDOC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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