I_CAValueAdjustmentTypeVH

DDL: I_CAVALUEADJUSTMENTTYPEVH SQL: ICAVALADJTYPEVH Type: view COMPOSITE

IVA or FVA

I_CAValueAdjustmentTypeVH is a Composite CDS View that provides data about "IVA or FVA" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CAValueAdjustmentType.

Data Sources (1)

SourceAliasJoin Type
dd07l DomainFixedValue from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICAVALADJTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey CAValueAdjustmentType view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #COMPOSITE view
EndUserText.label IVA or FVA view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CAValueAdjustmentType dd07l domvalue_l Lower Value
CAValueAdjustmentTypeText DomainValueText ddtext Short text

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_CAValueAdjustmentTypeVH.
-- 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: ICAVALADJTYPEVH

CREATE VIEW I_CAValueAdjustmentTypeVH AS
SELECT
  DomainFixedValue.domvalue_l AS CAValueAdjustmentType,
  DomainValueText.ddtext AS CAValueAdjustmentTypeText
FROM dd07l AS DomainFixedValue
;