R_DeliveryDocDataProcgPrps

DDL: R_DELIVERYDOCDATAPROCGPRPS Type: view_entity BASIC

Pers Data Procg Purpose Assignment

R_DeliveryDocDataProcgPrps is a Basic CDS View that provides data about "Pers Data Procg Purpose Assignment" in SAP S/4HANA. It reads from 1 data source (paf_le_likp_a) and exposes 6 fields with key fields DeliveryDocument, DataController, DataProcessingPurpose, ApplicationObjectName. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
paf_le_likp_a paf_le_likp_a from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_DeliveryDocument _Document $projection.DeliveryDocument = _Document.DeliveryDocument

Annotations (9)

NameValueLevelField
EndUserText.label Pers Data Procg Purpose Assignment view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument vbeln SD Sched. Agmt
KEY DataController data_ctrl_name Data Controller Name
KEY DataProcessingPurpose purp_name Purpose
KEY ApplicationObjectName ao_name Application Object
SDDocumentCategory _Document SDDocumentCategory Document Cat.
_Document _Document

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 R_DeliveryDocDataProcgPrps.
-- 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 R_DeliveryDocDataProcgPrps AS
SELECT
  vbeln AS DeliveryDocument,
  data_ctrl_name AS DataController,
  purp_name AS DataProcessingPurpose,
  ao_name AS ApplicationObjectName,
  _Document.SDDocumentCategory AS SDDocumentCategory
FROM paf_le_likp_a
LEFT OUTER JOIN I_DeliveryDocument AS _Document ON DeliveryDocument = _Document.DeliveryDocument  -- association [1..1]
;