I_InventoryValuationType

DDL: I_INVENTORYVALUATIONTYPE Type: view BASIC

Inventory Valuation Type

I_InventoryValuationType is a Basic CDS View (Dimension) that provides data about "Inventory Valuation Type" in SAP S/4HANA. It reads from 1 data source (t149d) and exposes 4 fields with key field InventoryValuationType.

Data Sources (1)

SourceAliasJoin Type
t149d t149d from

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IFIINVVALTYPE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inventory Valuation Type view
ObjectModel.representativeKey InventoryValuationType view
ObjectModel.sapObjectNodeType.name ProductValuationType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InventoryValuationType Valuation Type
AcctCategoryRef Cust.-Cust.Ref.
InternalPurchasingRule Internal POs
ExternalPurchasingRule External POs

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 I_InventoryValuationType.
-- 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.

CREATE VIEW I_InventoryValuationType AS
SELECT
  cast(bwtar as fis_inventory_valuation_type preserving type ) AS InventoryValuationType,
  cast(kkref as fis_acct_category_ref preserving type ) AS AcctCategoryRef,
  cast(bsint as fis_internal_purchasing_rule preserving type ) AS InternalPurchasingRule,
  cast(bsext as fis_external_purchasing_rule preserving type ) AS ExternalPurchasingRule
FROM t149d
;