R_ComplaintPartnerFunctionText

DDL: R_COMPLAINTPARTNERFUNCTIONTEXT Type: view_entity TRANSACTIONAL

Partner Function - Text

R_ComplaintPartnerFunctionText is a Transactional CDS View that provides data about "Partner Function - Text" in SAP S/4HANA. It reads from 1 data source (I_PartnerFunctionText) and exposes 5 fields with key fields PartnerFunction, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PartnerFunctionText I_PartnerFunctionText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] R_ComplaintPartnerFunction _PartnerFunc $projection.PartnerFunction = _PartnerFunc.PartnerFunction

Annotations (10)

NameValueLevelField
EndUserText.label Partner Function - Text 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
ObjectModel.dataCategory #TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction PartnerFunction Partner Functn
KEY Language Language Report Text Language
PartnerFunctionName PartnerFunctionName Name
_Language _Language
_PartnerFunc _PartnerFunc

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_ComplaintPartnerFunctionText.
-- 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_ComplaintPartnerFunctionText AS
SELECT
  PartnerFunction,
  Language,
  PartnerFunctionName
FROM I_PartnerFunctionText
LEFT OUTER JOIN R_ComplaintPartnerFunction AS _PartnerFunc ON PartnerFunction = _PartnerFunc.PartnerFunction  -- association [0..1]
;