Fcdm_Keyfigures_Read_GI

DDL: FCDM_KEYFIGURES_READ_GI SQL: V_FCDM_GI Type: view

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)

SourceAliasJoin Type
matdoc matdoc from

Annotations (7)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/