P_LOG_DRR_HEADER_BASIC

DDL: P_LOG_DRR_HEADER_BASIC Type: view_entity BASIC

P_LOG_DRR_HEADER_BASIC is a Basic CDS View in SAP S/4HANA. It reads from 3 data sources (vec_drr, fincs_log_drr, fincs_log_header) and exposes 11 fields.

Data Sources (3)

SourceAliasJoin Type
vec_drr drr inner
fincs_log_drr fincs_log_drr inner
fincs_log_header fincs_log_header from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #BASIC view

Fields (11)

KeyFieldSource TableSource FieldDescription
userid fincs_log_header userid User Name
DataReleaseRequestID fincs_log_drr drruuid DR Request UUID
cnsldtntask vec_drr task Task/Log Entry
externalid fincs_log_drr drruuid_c
UpdateMode fincs_log_header update_mode Update mode
Is_Cumulative fincs_log_header is_cumulative Is Cumulative
TimeStamp fincs_log_header timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
yearperiod vec_drr fiscyearper Period/Year
ReferenceApplicationJobName fincs_log_header applicationjobname Job Name
ApplicationJob fincs_log_header applicationjobcount Job No.
JobStepNumber fincs_log_header stepcount Step no.

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 P_LOG_DRR_HEADER_BASIC.
-- 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 P_LOG_DRR_HEADER_BASIC AS
SELECT
  fincs_log_header.userid AS userid,
  fincs_log_drr.drruuid AS DataReleaseRequestID,
  drr.task AS cnsldtntask,
  fincs_log_drr.drruuid_c AS externalid,
  fincs_log_header.update_mode AS UpdateMode,
  fincs_log_header.is_cumulative AS Is_Cumulative,
  fincs_log_header.timestamp AS TimeStamp,
  drr.fiscyearper AS yearperiod,
  fincs_log_header.applicationjobname AS ReferenceApplicationJobName,
  fincs_log_header.applicationjobcount AS ApplicationJob,
  fincs_log_header.stepcount AS JobStepNumber
FROM fincs_log_header
INNER JOIN fincs_log_drr ON /* join condition not captured in parsed metadata */
INNER JOIN vec_drr AS drr ON /* join condition not captured in parsed metadata */
;