C_ExsTxMatStockByKeyDate

DDL: C_EXSTXMATSTOCKBYKEYDATE Type: view CONSUMPTION

Excise Tax Closing Stock For a Key Date

C_ExsTxMatStockByKeyDate is a Consumption CDS View that provides data about "Excise Tax Closing Stock For a Key Date" in SAP S/4HANA. It reads from 1 data source (I_ExsTxMaterialStockAggrgn) and exposes 9 fields.

Data Sources (1)

SourceAliasJoin Type
I_ExsTxMaterialStockAggrgn I_ExsTxMaterialStockAggrgn from

Parameters (1)

NameTypeDefault
P_KeyDate vdm_v_key_date

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CETXMATSTKBYKDT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Excise Tax Closing Stock For a Key Date view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelingPattern #ANALYTICAL_QUERY view
VDM.viewType #CONSUMPTION view
Analytics.query true view
Metadata.allowExtensions true view
OData.publish true view

Fields (9)

KeyFieldSource TableSource FieldDescription
Material Material Vehicle Model
Plant Plant Valuation Area
StorageLocation StorageLocation StorageLocation
Batch Batch Lot No.
InventoryStockType InventoryStockType Stock Type
InventorySpecialStockType InventorySpecialStockType Special Stock Type
CompanyCode CompanyCode Receiver Company Code
MaterialBaseUnit MaterialBaseUnit Valuation Unit
MatlWrhsStkQtyInMatlBaseUnit MatlWrhsStkQtyInMatlBaseUnit Quantity

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_ExsTxMatStockByKeyDate.
-- 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.
-- Parameters: P_KeyDate : vdm_v_key_date

CREATE VIEW C_ExsTxMatStockByKeyDate AS
SELECT
  Material,
  Plant,
  StorageLocation,
  Batch,
  InventoryStockType,
  InventorySpecialStockType,
  CompanyCode,
  MaterialBaseUnit,
  MatlWrhsStkQtyInMatlBaseUnit
FROM I_ExsTxMaterialStockAggrgn
;