I_ValuationArea

DDL: I_VALUATIONAREA Type: view_entity BASIC Package: PLANT

Valuation Area

I_ValuationArea (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Valuation Area · Database & Data Management

I_ValuationArea is a Basic CDS View (Dimension) that provides data about "Valuation Area" in SAP S/4HANA. It reads from 1 data source (t001k) and exposes 3 fields with key field ValuationArea. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F0547B). Part of development package PLANT.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-PL-2CL
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageDatabase and Data Management for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t001k t001k from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (16)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Valuation Area view
ObjectModel.representativeKey ValuationArea view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.sapObjectNodeType.name ValuationArea view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.technicalName IVALUATIONAREA view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F0547B ASQL_F0547B C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ValuationArea bwkey Valuation Area
CompanyCode bukrs Company Code
_CompanyCode _CompanyCode

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_ValuationArea.
-- 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_ValuationArea AS
SELECT
  bwkey AS ValuationArea,
  bukrs AS CompanyCode
FROM t001k
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [1..1]
;