C_PartnerFunctionValHelp

DDL: C_PARTNERFUNCTIONVALHELP SQL: CPARTFUNCVH Type: view CONSUMPTION

Partner Function Value Help

C_PartnerFunctionValHelp is a Consumption CDS View that provides data about "Partner Function Value Help" in SAP S/4HANA. It reads from 1 data source (I_PartnerFunction) and exposes 3 fields with key field PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
I_PartnerFunction I_PartnerFunction from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPARTFUNCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Partner Function Value Help view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction Partner Functn
SDDocumentPartnerType SDDocumentPartnerType Partner Type
PartnerFunctionName

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 C_PartnerFunctionValHelp.
-- 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: CPARTFUNCVH

CREATE VIEW C_PartnerFunctionValHelp AS
SELECT
  cast(PartnerFunction as parvw_unv) AS PartnerFunction,
  SDDocumentPartnerType,
  _Text[ 1:Language = $session.system_language ].PartnerFunctionName AS PartnerFunctionName
FROM I_PartnerFunction
;