A_ComplaintPartnerFunctionText

DDL: A_COMPLAINTPARTNERFUNCTIONTEXT Type: view_entity CONSUMPTION

Consumtion View of Partner Function Text

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

Data Sources (1)

SourceAliasJoin Type
R_ComplaintPartnerFunctionText R_ComplaintPartnerFunctionText from

Associations (1)

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

Annotations (12)

NameValueLevelField
EndUserText.label Consumtion View of Partner Function Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
OData.entitySet.name PartnerFunctionText view
OData.entityType.name PartnerFunctionText_Type view
ObjectModel.dataCategory #TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction PartnerFunction Partner Functn
KEY Language Language Report Text Language
PartnerFunctionName PartnerFunctionName Name
_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 A_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 A_ComplaintPartnerFunctionText AS
SELECT
  PartnerFunction,
  Language,
  PartnerFunctionName
FROM R_ComplaintPartnerFunctionText
LEFT OUTER JOIN A_ComplaintPartnerFunction AS _PartnerFunc ON PartnerFunction = _PartnerFunc.PartnerFunction  -- association [0..1]
;