FAC_SUPPLIERVH

DDL: FAC_SUPPLIERVH SQL: FACSUPPLIER Type: view Package: FINS_FI_ACC_VALIDATION

Value help for supplier

FAC_SUPPLIERVH is a CDS View that provides data about "Value help for supplier" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 2 fields with key field Supplier. Part of development package FINS_FI_ACC_VALIDATION.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FACSUPPLIER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help for supplier view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
AccessControl.personalData.blocking #REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
SupplierName SupplierName Supplier Name

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 FAC_SUPPLIERVH.
-- 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: FACSUPPLIER

CREATE VIEW FAC_SUPPLIERVH AS
SELECT
  Supplier,
  SupplierName
FROM I_Supplier
;