F3_Mmim_Customer_Vh

DDL: F3_MMIM_CUSTOMER_VH SQL: F3MMIMCUSTOMERVH Type: view

Help-View for Customer (KNA1)

F3_Mmim_Customer_Vh is a CDS View that provides data about "Help-View for Customer (KNA1)" in SAP S/4HANA. It reads from 1 data source (kna1) and exposes 3 fields with key field Customer.

Data Sources (1)

SourceAliasJoin Type
kna1 kna1 from

Annotations (13)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName F3MMIMCUSTOMERVH view
EndUserText.label Help-View for Customer (KNA1) view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Customer kunnr Stock customer
CustomerName name1 PA text
AuthorizationGroup begru AuthorizGroup

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 F3_Mmim_Customer_Vh.
-- 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: F3MMIMCUSTOMERVH

CREATE VIEW F3_Mmim_Customer_Vh AS
SELECT
  kunnr AS Customer,
  name1 AS CustomerName,
  begru AS AuthorizationGroup
FROM kna1
;