I_RO_SAFTComplementaryPosting
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)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialDocumentRecord | I_MaterialDocumentRecord | from |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_FromPostingDate | figen_rep_date_from | |
| P_ToPostingDate | figen_rep_date_to |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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