P_Mfrpartprof

DDL: P_MFRPARTPROF SQL: P_MFRPARTPROF_VH Type: view BASIC

P_Mfrpartprof is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (tmppf) and exposes 2 fields with key field ManufacturerPartProfile. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tmppf tmppf from

Associations (1)

CardinalityTargetAliasCondition
[0..*] P_Mfrpartproftext _Text $projection.ManufacturerPartProfile = _Text.ManufacturerPartProfile

Annotations (6)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ManufacturerPartProfile mprof Mfr Part Profile
_Text _Text

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_Mfrpartprof.
-- 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_MFRPARTPROF_VH

CREATE VIEW P_Mfrpartprof AS
SELECT
  mprof AS ManufacturerPartProfile
FROM tmppf
LEFT OUTER JOIN P_Mfrpartproftext AS _Text ON ManufacturerPartProfile = _Text.ManufacturerPartProfile  -- association [0..*]
;