I_FldLogsValuationType

DDL: I_FLDLOGSVALUATIONTYPE SQL: IFLVT Type: view COMPOSITE

Field Logistics Valuation type

I_FldLogsValuationType is a Composite CDS View that provides data about "Field Logistics Valuation type" in SAP S/4HANA. It reads from 1 data source (I_ProductValuationBasic) and exposes 4 fields with key fields Material, Plant, ValuationType.

Data Sources (1)

SourceAliasJoin Type
I_ProductValuationBasic I_ProductValuationBasic from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLVT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Field Logistics Valuation type view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Product Product Sold
KEY Plant ValuationArea Valuation Area
KEY ValuationType ValuationType Valuation Type
ValuationCategory ValuationCategory Valuation Cat.

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_FldLogsValuationType.
-- 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: IFLVT

CREATE VIEW I_FldLogsValuationType AS
SELECT
  Product AS Material,
  ValuationArea AS Plant,
  ValuationType,
  ValuationCategory
FROM I_ProductValuationBasic
;