C_InspLotCustValHelp

DDL: C_INSPLOTCUSTVALHELP SQL: CINSPLOTCUSTVH Type: view CONSUMPTION

Customer Value Help

C_InspLotCustValHelp is a Consumption CDS View that provides data about "Customer Value Help" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 8 fields with key field Customer.

Data Sources (1)

SourceAliasJoin Type
I_Customer I_Customer from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CINSPLOTCUSTVH view
EndUserText.label Customer Value Help view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
CustomerName CustomerName Name of Customer
CityName CityName Name
PostalCode PostalCode Postal Code
Country Country Venue: Ctry/Reg
CustomerAccountGroup CustomerAccountGroup Account group
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

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_InspLotCustValHelp.
-- 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: CINSPLOTCUSTVH

CREATE VIEW C_InspLotCustValHelp AS
SELECT
  Customer,
  CustomerName,
  CityName,
  PostalCode,
  Country,
  CustomerAccountGroup,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_Customer
;