Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_BR_RptgInvtryTotAmountCube

DDL: C_BR_RPTGINVTRYTOTAMOUNTCUBE SQL: CBRRPTGINVTOTCB Type: view CONSUMPTION

EFD-H005-L012 - Invtry Total Amount Cube

C_BR_RptgInvtryTotAmountCube is a Consumption CDS View (Cube) that provides data about "EFD-H005-L012 - Invtry Total Amount Cube" in SAP S/4HANA. It reads from 1 data source (C_BR_ReportingInventoryCube) and exposes 8 fields with key fields CompanyCode, BusinessPlace.

Data Sources (1)

SourceAliasJoin Type
C_BR_ReportingInventoryCube C_BR_ReportingInventoryCube from

Parameters (5)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id
P_StatryRptRunID srf_report_run_id
P_InventoryDate calendardate
P_NumberOfDays int4

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CBRRPTGINVTOTCB view
AbapCatalog.compiler.compareFilter true view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label EFD-H005-L012 - Invtry Total Amount Cube view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #CUBE view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY BusinessPlace BusinessPlace Business place
Currency Currency Valuation Crcy
BR_SPEDReportRegister
InventoryDate
StockValueInCCCrcy StockValueInCCCrcy Total Value
ReasonCode ReasonCode Reason Code
ResourceSortText

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_BR_RptgInvtryTotAmountCube.
-- 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: CBRRPTGINVTOTCB
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id, P_StatryRptRunID : srf_report_run_id, P_InventoryDate : calendardate, P_NumberOfDays : int4

CREATE VIEW C_BR_RptgInvtryTotAmountCube AS
SELECT
  CompanyCode,
  BusinessPlace,
  Currency,
  'H005' AS BR_SPEDReportRegister,
  $parameters.P_InventoryDate AS InventoryDate,
  StockValueInCCCrcy,
  ReasonCode,
  concat('H005', ReasonCode) AS ResourceSortText
FROM C_BR_ReportingInventoryCube
;