C_PPDSLocationValueHelp

DDL: C_PPDSLOCATIONVALUEHELP Type: view_entity CONSUMPTION

Location

C_PPDSLocationValueHelp is a Consumption CDS View that provides data about "Location" in SAP S/4HANA. It reads from 1 data source (I_LocationBasic) and exposes 9 fields with key field LocationUUID.

Data Sources (1)

SourceAliasJoin Type
I_LocationBasic I_LocationBasic from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Location view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.representativeKey LocationUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY LocationUUID LocationUUID UUID
Location Location Text
LocationDescription
CollaborationPartner CollaborationPartner
BusinessPartnerUUID BusinessPartnerUUID UUID
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
AuthorizationGroup AuthorizationGroup AuthorizGroup
_CollaborationPartner _CollaborationPartner
_BusinessPartner _BusinessPartner

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_PPDSLocationValueHelp.
-- 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_PPDSLocationValueHelp AS
SELECT
  LocationUUID,
  Location,
  _Text[1:Language = $session.system_language].LocationDescription AS LocationDescription,
  CollaborationPartner,
  BusinessPartnerUUID,
  IsBusinessPurposeCompleted,
  AuthorizationGroup
FROM I_LocationBasic
;