R_ComplaintPartnerFunction

DDL: R_COMPLAINTPARTNERFUNCTION Type: view_entity TRANSACTIONAL

Partner Function

R_ComplaintPartnerFunction is a Transactional CDS View that provides data about "Partner Function" in SAP S/4HANA. It reads from 1 data source (I_PartnerFunction) and exposes 3 fields with key field PartnerFunction. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PartnerFunction I_PartnerFunction from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_ComplaintPartnerFunctionText _Text $projection.PartnerFunction = _Text.PartnerFunction

Annotations (9)

NameValueLevelField
EndUserText.label Partner Function view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction PartnerFunction Partner Functn
SDDocumentPartnerType SDDocumentPartnerType Partner Type
_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 R_ComplaintPartnerFunction.
-- 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 R_ComplaintPartnerFunction AS
SELECT
  PartnerFunction,
  SDDocumentPartnerType
FROM I_PartnerFunction
LEFT OUTER JOIN R_ComplaintPartnerFunctionText AS _Text ON PartnerFunction = _Text.PartnerFunction  -- association [0..*]
;