C_InvtryValnCatTemp

DDL: C_INVTRYVALNCATTEMP SQL: CVALUATIONCATG Type: view CONSUMPTION

Inventory valuation category value help

C_InvtryValnCatTemp is a Consumption CDS View that provides data about "Inventory valuation category value help" in SAP S/4HANA. It reads from 1 data source (t149) and exposes 4 fields with key fields ValuationArea, InventoryValuationCategory. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t149 t149 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] C_InvtryValnCatTextTemp _Text $projection.InventoryValuationCategory = _Text.InventoryValuationCategory
[0..1] C_ProductValuationAreaVH _ValuationArea $projection.ValuationArea = _ValuationArea.ValuationArea

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CVALUATIONCATG view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Inventory valuation category value help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ValuationArea bwkey Valuation Area
KEY InventoryValuationCategory bwtty Valuation Cat.
_Text _Text
_ValuationArea _ValuationArea

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_InvtryValnCatTemp.
-- 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: CVALUATIONCATG

CREATE VIEW C_InvtryValnCatTemp AS
SELECT
  bwkey AS ValuationArea,
  bwtty AS InventoryValuationCategory
FROM t149
LEFT OUTER JOIN C_InvtryValnCatTextTemp AS _Text ON InventoryValuationCategory = _Text.InventoryValuationCategory  -- association [0..*]
LEFT OUTER JOIN C_ProductValuationAreaVH AS _ValuationArea ON ValuationArea = _ValuationArea.ValuationArea  -- association [0..1]
;