P_LOG_CT_Header

DDL: P_LOG_CT_HEADER SQL: PLOGCTHEADER Type: view BASIC

P_LOG_CT_Header is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (fincs_log_header, fincs_log_item) and exposes 13 fields.

Data Sources (2)

SourceAliasJoin Type
fincs_log_header fincs_log_header from
fincs_log_item fincs_log_item left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PLOGCTHEADER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #BASIC view

Fields (13)

KeyFieldSource TableSource FieldDescription
userid fincs_log_header userid User Name
cnsldtntask fincs_log_header cnsldtntask Task
externalid fincs_log_header externalid SRM Reference
fiscalyear fincs_log_header fiscalyear G/L Fiscal Year
fiscalperiod fincs_log_header fiscalperiod Tax period
status fincs_log_header status Workflow Status
UpdateMode
Is_Cumulative
TimeStamp fincs_log_header timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
yearperiod fincs_log_header yearperiod Fiscal Year Period
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_CT_Header.
-- 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.
-- SQL view name: PLOGCTHEADER

CREATE VIEW P_LOG_CT_Header AS
SELECT
  fincs_log_header.userid AS userid,
  fincs_log_header.cnsldtntask AS cnsldtntask,
  fincs_log_header.externalid AS externalid,
  fincs_log_header.fiscalyear AS fiscalyear,
  fincs_log_header.fiscalperiod AS fiscalperiod,
  fincs_log_header.status AS status,
  cast('' as fc_updmode) AS UpdateMode,
  cast('' as fincs_cum_indi) AS Is_Cumulative,
  fincs_log_header.timestamp AS TimeStamp,
  fincs_log_header.yearperiod AS yearperiod,
  fincs_log_header.applicationjobname AS ReferenceApplicationJobName,
  fincs_log_header.applicationjobcount AS ApplicationJob,
  fincs_log_header.stepcount AS JobStepNumber
FROM fincs_log_header
LEFT OUTER JOIN fincs_log_item ON /* join condition not captured in parsed metadata */
;