I_ValuationTypeByValuationArea

DDL: I_VALUATIONTYPEBYVALUATIONAREA SQL: IVALTYPBYVALAREA Type: view BASIC

Basic view to list valuation type for valuation area

I_ValuationTypeByValuationArea is a Basic CDS View that provides data about "Basic view to list valuation type for valuation area" in SAP S/4HANA. It reads from 1 data source (t149a) and exposes 3 fields with key fields ValuationArea, ValuationType.

Data Sources (1)

SourceAliasJoin Type
t149a t149a from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IVALTYPBYVALAREA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic view to list valuation type for valuation area view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ValuationArea view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ValuationArea bwkey Valuation Area
KEY ValuationType bwtar Valuation Type
AcctCategoryRef kkref Cust.-Cust.Ref.

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_ValuationTypeByValuationArea.
-- 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: IVALTYPBYVALAREA

CREATE VIEW I_ValuationTypeByValuationArea AS
SELECT
  bwkey AS ValuationArea,
  bwtar AS ValuationType,
  kkref AS AcctCategoryRef
FROM t149a
;