Mmim_Matdocaccdocflow

DDL: MMIM_MATDOCACCDOCFLOW SQL: MMIMMDOCACCFLOW Type: view

Material Documents Doc. Flow Accounting

Mmim_Matdocaccdocflow is a CDS View that provides data about "Material Documents Doc. Flow Accounting" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 6 fields.

Data Sources (1)

SourceAliasJoin Type
matdoc mat inner

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName MMIMMDOCACCFLOW view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Documents Doc. Flow Accounting view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
Preceding_Doc matdoc mblnr
MaterialDocumentYear matdoc mjahr
Succeeding_Doc acd belnr
Preceding_Item matdoc zeile
Succeeding_Item acd awitem
CompanyCode acd rbukrs
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'MMIMMDOCACCFLOW'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Documents Doc. Flow Accounting'
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass:#MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE


define view Mmim_Matdocaccdocflow 
as 
select distinct from acdoca as acd inner join matdoc as mat 
 on acd.awref = mat.mblnr  
{
 mat.mblnr as Preceding_Doc,
 mat.mjahr as MaterialDocumentYear,
 acd.belnr as Succeeding_Doc,
 mat.zeile as Preceding_Item, 
 acd.awitem as Succeeding_Item, 
 acd.rbukrs as CompanyCode  
}
where mat.mblnr <> ''


/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACDOCA",
"MATDOC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/