C_RO_SAFTProductC

DDL: C_RO_SAFTPRODUCTC SQL: CROSAFTPRODTYPEC Type: view CONSUMPTION

Product Type for RO SAFT - Cube

C_RO_SAFTProductC is a Consumption CDS View (Cube) that provides data about "Product Type for RO SAFT - Cube" in SAP S/4HANA. It reads from 2 data sources (I_StRpJournalEntryHeaderLog, P_RO_SAFTJournalEntryItemExc) and exposes 16 fields with key fields StatryRptCategory, StatryRptgEntity, StatryRptRunID, Product.

Data Sources (2)

SourceAliasJoin Type
I_StRpJournalEntryHeaderLog Log inner
P_RO_SAFTJournalEntryItemExc P_RO_SAFTJournalEntryItemExc inner

Parameters (3)

NameTypeDefault
P_FromPostingDate figen_rep_date_from
P_ToPostingDate figen_rep_date_to
P_AlternativeGLAccountIsUsed saft_ro_alt_gl_account_flag

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CROSAFTPRODTYPEC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
Analytics.dataCategory #CUBE view
Analytics.internalName #LOCAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Type for RO SAFT - Cube view
Metadata.allowExtensions true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY StatryRptCategory I_StRpJournalEntryHeaderLog StatryRptCategory Report ID
KEY StatryRptgEntity I_StRpJournalEntryHeaderLog StatryRptgEntity Reporting Entity
KEY StatryRptRunID I_StRpJournalEntryHeaderLog StatryRptRunID Report Run ID
KEY Product Product Product Product Sold
MaterialType Product MaterialType Material Type
ProductGroup Product ProductGroup Product Sold Group
ProductName Product ProductName Description
ProductStandardID Product ProductStandardID GTIN
ValuationClass Product ValuationClass Valuation Class
BaseUnit Product BaseUnit Unit of Measure
SourceUnitOfMeasureFactor Product SourceUnitOfMeasureFactor
AlternativeUnit Product AlternativeUnit Base UoM
TargetUnitOfMeasure UomAltUnit SourceUnitOfMeasureFactor
ConversionFactor Product ConversionFactor
RO_SAFTGoodsService Product RO_SAFTGoodsService
ItemIsReportingRelevant

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_RO_SAFTProductC.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: CROSAFTPRODTYPEC
-- Parameters: P_FromPostingDate : figen_rep_date_from, P_ToPostingDate : figen_rep_date_to, P_AlternativeGLAccountIsUsed : saft_ro_alt_gl_account_flag

CREATE VIEW C_RO_SAFTProductC AS
SELECT
  Log.StatryRptCategory AS StatryRptCategory,
  Log.StatryRptgEntity AS StatryRptgEntity,
  Log.StatryRptRunID AS StatryRptRunID,
  Product.Product AS Product,
  Product.MaterialType AS MaterialType,
  Product.ProductGroup AS ProductGroup,
  Product.ProductName AS ProductName,
  Product.ProductStandardID AS ProductStandardID,
  Product.ValuationClass AS ValuationClass,
  Product.BaseUnit AS BaseUnit,
  Product.SourceUnitOfMeasureFactor AS SourceUnitOfMeasureFactor,
  Product.AlternativeUnit AS AlternativeUnit,
  UomAltUnit.SourceUnitOfMeasureFactor AS TargetUnitOfMeasure,
  Product.ConversionFactor AS ConversionFactor,
  Product.RO_SAFTGoodsService AS RO_SAFTGoodsService,
  'X' AS ItemIsReportingRelevant
INNER JOIN P_RO_SAFTJournalEntryItemExc ON /* join condition not captured in parsed metadata */
INNER JOIN I_StRpJournalEntryHeaderLog AS Log ON /* join condition not captured in parsed metadata */
;