P_Manufctrnmbr

DDL: P_MANUFCTRNMBR SQL: P_manfctrNmbr_VH Type: view BASIC

P_Manufctrnmbr is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (lfa1) and exposes 2 fields with key field Supplier.

Data Sources (1)

SourceAliasJoin Type
lfa1 lfa1 from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName P_manfctrNmbr_VH view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey Supplier view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier lifnr Vendor no.
Name mcod1 Search Term

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 P_Manufctrnmbr.
-- 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: P_manfctrNmbr_VH

CREATE VIEW P_Manufctrnmbr AS
SELECT
  lifnr AS Supplier,
  mcod1 AS Name
FROM lfa1
;