C_RecipientLocationPlantTP

DDL: C_RECIPIENTLOCATIONPLANTTP Type: view_entity CONSUMPTION

Consumption of Recipient Location Plant

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

Data Sources (1)

SourceAliasJoin Type
R_RecipientLocationPlantTP R_RecipientLocationPlantTP projection

Annotations (9)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipientLocationCode RecipientLocationCode Recipient Loc.
KEY Plant Plant Valuation Area
RecipientLocationStatus RecipientLocationStatus
StatusFlagValue StatusFlagValue
LastChangeDateTime LastChangeDateTime Timestamp

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_RecipientLocationPlantTP.
-- 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_RecipientLocationPlantTP AS
SELECT
  RecipientLocationCode,
  Plant,
  RecipientLocationStatus,
  StatusFlagValue,
  LastChangeDateTime
FROM R_RecipientLocationPlantTP
;