I_RO_SAFTComplementaryPosting

DDL: I_RO_SAFTCOMPLEMENTARYPOSTING SQL: IROSAFTCOMPVAL Type: view COMPOSITE

SAFT RO Complementary Posting

I_RO_SAFTComplementaryPosting is a Composite CDS View that provides data about "SAFT RO Complementary Posting" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 6 fields with key fields CompanyCode, Material, Plant, Supplier, MaterialBaseUnit.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Parameters (2)

NameTypeDefault
P_FromPostingDate figen_rep_date_from
P_ToPostingDate figen_rep_date_to

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IROSAFTCOMPVAL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #COMPOSITE view
EndUserText.label SAFT RO Complementary Posting view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY Material StockIdentifyingMaterial
KEY Plant Plant
KEY Supplier SpecialStockIdfgSupplier
KEY MaterialBaseUnit MaterialBaseUnit
GoodsMovementStkAmtInCCCrcy
@AbapCatalog.sqlViewName: 'IROSAFTCOMPVAL'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking : #BLOCKED_DATA_EXCLUDED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XXL
@VDM.viewType : #COMPOSITE
@EndUserText.label: 'SAFT RO Complementary Posting'
define view I_RO_SAFTComplementaryPosting
  with parameters
          P_FromPostingDate            : figen_rep_date_from,
          P_ToPostingDate              : figen_rep_date_to
  as select from I_MaterialDocumentRecord
{
  key CompanyCode,
  key StockIdentifyingMaterial as Material,
  key Plant,
  key SpecialStockIdfgSupplier as Supplier,
  key MaterialBaseUnit,
  sum( GoodsMovementStkAmtInCCCrcy ) as GoodsMovementStkAmtInCCCrcy
} where MaterialDocumentRecordType = 'MDOC_CP'
  and   PostingDate between $parameters.P_FromPostingDate and $parameters.P_ToPostingDate
  group by CompanyCode, StockIdentifyingMaterial, Plant, SpecialStockIdfgSupplier, MaterialBaseUnit
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALDOCUMENTRECORD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/