A_ComplaintPartnerFunction

DDL: A_COMPLAINTPARTNERFUNCTION Type: view_entity CONSUMPTION Package: VDM_CMH_SD

Consumtion View of Partner Function

A_ComplaintPartnerFunction is a Consumption CDS View that provides data about "Consumtion View of Partner Function" in SAP S/4HANA. It reads from 1 data source (R_ComplaintPartnerFunction) and exposes 3 fields with key field PartnerFunction. It has 1 association to related views. It is exposed through 1 OData service (API_COMPLAINTPRTNFUNCTION). Part of development package VDM_CMH_SD.

Data Sources (1)

SourceAliasJoin Type
R_ComplaintPartnerFunction R_ComplaintPartnerFunction from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Consumtion View of Partner Function 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 PartnerFunction view
OData.entityType.name PartnerFunction_Type view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_COMPLAINTPRTNFUNCTION API_COMPLAINTPRTNFUNCTION V4 C2 NOT_RELEASED

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 A_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 A_ComplaintPartnerFunction AS
SELECT
  PartnerFunction,
  SDDocumentPartnerType
FROM R_ComplaintPartnerFunction
LEFT OUTER JOIN A_ComplaintPartnerFunctionText AS _Text ON PartnerFunction = _Text.PartnerFunction  -- association [0..*]
;