C_RecipientLocationCodeVH

DDL: C_RECIPIENTLOCATIONCODEVH Type: view_entity CONSUMPTION

Recipient Location

C_RecipientLocationCodeVH is a Consumption CDS View that provides data about "Recipient Location" in SAP S/4HANA. It reads from 1 data source (I_RecipientLocationPlant) and exposes 5 fields with key fields RecipientLocationCode, Plant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_RecipientLocationPlant I_RecipientLocationPlant from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_RecipientLocationCode _RecipientLocationCode $projection.RecipientLocationCode = _RecipientLocationCode.RecipientLocationCode

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Recipient Location view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipientLocationCode RecipientLocationCode Recipient Loc.
KEY Plant Plant Valuation Area
RecipientLocationText
RecipientLocationStatus RecipientLocationStatus Rcpt Location Status
_RecipientLocationCode _RecipientLocationCode

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_RecipientLocationCodeVH.
-- 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 C_RecipientLocationCodeVH AS
SELECT
  RecipientLocationCode,
  Plant,
  _RecipientLocationCode._RecipientLocationText[1: Language = $session.system_language ].RecipientLocationText AS RecipientLocationText,
  RecipientLocationStatus
FROM I_RecipientLocationPlant
LEFT OUTER JOIN I_RecipientLocationCode AS _RecipientLocationCode ON RecipientLocationCode = _RecipientLocationCode.RecipientLocationCode  -- association [0..1]
;