C_RecipientLocationCodeTP

DDL: C_RECIPIENTLOCATIONCODETP Type: view_entity CONSUMPTION

Consumption of Recipient Location

C_RecipientLocationCodeTP is a Consumption CDS View that provides data about "Consumption of Recipient Location" in SAP S/4HANA. It reads from 1 data source (R_RecipientLocationCodeTP) and exposes 4 fields with key field RecipientLocationCode.

Data Sources (1)

SourceAliasJoin Type
R_RecipientLocationCodeTP R_RecipientLocationCodeTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Consumption of Recipient Location view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey RecipientLocationCode view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
Metadata.allowExtensions true view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RecipientLocationCode RecipientLocationCode Recipient Loc.
RecipientLocationTextlocalized
LastChangeDateTime LastChangeDateTime Timestamp
_RecipientLocationText _RecipientLocationText

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_RecipientLocationCodeTP.
-- 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_RecipientLocationCodeTP AS
SELECT
  RecipientLocationCode,
  _RecipientLocationText.RecipientLocationText : localized AS RecipientLocationTextlocalized,
  LastChangeDateTime
FROM R_RecipientLocationCodeTP
;