C_CustomerMaterialVH

DDL: C_CUSTOMERMATERIALVH SQL: CCUSTMATLINFO Type: view CONSUMPTION

Customer Material Value Help

C_CustomerMaterialVH is a Consumption CDS View that provides data about "Customer Material Value Help" in SAP S/4HANA. It reads from 1 data source (I_CustomerMaterial_2) and exposes 10 fields with key fields SalesOrganization, Customer, Material, DistributionChannel.

Data Sources (1)

SourceAliasJoin Type
I_CustomerMaterial_2 I_CustomerMaterial_2 from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CCUSTMATLINFO view
EndUserText.label Customer Material Value Help view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SalesOrganization SalesOrganization Sales Organization
KEY Customer Customer Sold-to Party
KEY Material Product Product Sold
KEY DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
MaterialByCustomer MaterialByCustomer Customer Mat.
MaterialDescriptionByCustomer MaterialDescriptionByCustomer Customer Descr.
_SalesOrganization _SalesOrganization
_DistributionChannel _DistributionChannel
_Customer _Customer
_Product _Product

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 C_CustomerMaterialVH.
-- 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: CCUSTMATLINFO

CREATE VIEW C_CustomerMaterialVH AS
SELECT
  SalesOrganization,
  Customer,
  Product AS Material,
  DistributionChannel,
  MaterialByCustomer,
  MaterialDescriptionByCustomer
FROM I_CustomerMaterial_2
;