I_RFM_SDPartnerFunctionVH

DDL: I_RFM_SDPARTNERFUNCTIONVH Type: view BASIC

Value help for partner functions in SD

I_RFM_SDPartnerFunctionVH is a Basic CDS View that provides data about "Value help for partner functions in SD" in SAP S/4HANA. It reads from 2 data sources (tpaer, tpart) and exposes 2 fields with key field PartnerFunction.

Data Sources (2)

SourceAliasJoin Type
tpaer p inner
tpart pt left_outer

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRFMSDPARTFUNCVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Value help for partner functions in SD view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction tpaer parvw Task Processor
PartnerFunctionName tpart vtext Wgh.Dat.Ty.Txt.

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 I_RFM_SDPartnerFunctionVH.
-- 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.

CREATE VIEW I_RFM_SDPartnerFunctionVH AS
SELECT
  p.parvw AS PartnerFunction,
  pt.vtext AS PartnerFunctionName
INNER JOIN tpaer AS p ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tpart AS pt ON /* join condition not captured in parsed metadata */
;