I_CnsldtnTaskLogHeader

DDL: I_CNSLDTNTASKLOGHEADER SQL: ICNSLDTNTLHDR Type: view BASIC Package: ODATA_CS_GENERICLOG

Interface for FINCS_LOG_HEADER

I_CnsldtnTaskLogHeader is a Basic CDS View that provides data about "Interface for FINCS_LOG_HEADER" in SAP S/4HANA. It reads from 1 data source (fincs_log_header) and exposes 29 fields with key field CnsldtnTaskLogUUID. It has 1 association to related views. Part of development package ODATA_CS_GENERICLOG.

Data Sources (1)

SourceAliasJoin Type
fincs_log_header fincs_log_header from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CnsldtnVersionT _VersionT $projection.ConsolidationVersion = _VersionT.ConsolidationVersion

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICNSLDTNTLHDR view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Interface for FINCS_LOG_HEADER view
VDM.viewType #BASIC view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnTaskLogUUID cnsldtnlognumber Consolidation Log GUID
ConsolidationChartOfAccounts cnsldtnchartofaccounts Cons. COA
ConsolidationDimension cnsldtndimension Dimension
ConsolidationDocumentType cnsldtndocumenttype Document Type
ConsolidationGroup Cons. Group
GroupCurrency cnsldtngroupcurrency Ledger curr.
ConsolidationLedger cnsldtnledger Ledger
CnsldtnLogHeaderDate cnsldtnlogdate Log Date
CnsldtnLogHeaderTime cnsldtnlogtime Log Time
ConsolidationMethod cnsldtnmethod Method
ConsolidationTask cnsldtntask Task
TaskType cnsldtntasktype Task category
ConsolidationUnit Cons. Unit
ConsolidationVersion Version
ConsolidationVersionText
ExternalId externalid SRM Reference
FiscalPeriod fiscalperiod Tax period
FiscalYear G/L Fiscal Year
IsConsolidationTaskTestRun iscnsldtntestrun Test Run
CnsldtnIsCumulative is_cumulative Is Cumulative
CnsldtnTaskLogMessageType status Workflow Status
CnsldtnIsUpdateMode update_mode Update mode
UserID userid User Name
CnsldtnLogHeaderDateTime UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
CnsldtnTaskLogHeaderGroupID logid_timestamp Log Compound ID
FiscalYearPeriod Fiscal Year Period
ReferenceApplicationJobName applicationjobname Job Name
ApplicationJob applicationjobcount Job No.
JobStepNumber 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 I_CnsldtnTaskLogHeader.
-- 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: ICNSLDTNTLHDR

CREATE VIEW I_CnsldtnTaskLogHeader AS
SELECT
  cnsldtnlognumber AS CnsldtnTaskLogUUID,
  cnsldtnchartofaccounts AS ConsolidationChartOfAccounts,
  cnsldtndimension AS ConsolidationDimension,
  cnsldtndocumenttype AS ConsolidationDocumentType,
  cast(cnsldtngroup as fincs_consolidationgroup preserving type ) AS ConsolidationGroup,
  cnsldtngroupcurrency AS GroupCurrency,
  cnsldtnledger AS ConsolidationLedger,
  cnsldtnlogdate AS CnsldtnLogHeaderDate,
  cnsldtnlogtime AS CnsldtnLogHeaderTime,
  cnsldtnmethod AS ConsolidationMethod,
  cnsldtntask AS ConsolidationTask,
  cnsldtntasktype AS TaskType,
  cast( cnsldtnunit as fincs_consolidationunit preserving type ) AS ConsolidationUnit,
  cast(cnsldtnversion as fincs_consolidationversion preserving type ) AS ConsolidationVersion,
  _VersionT[1: Language = $session.system_language].ConsolidationVersionText AS ConsolidationVersionText,
  ExternalId,
  FiscalPeriod,
  cast(fiscalyear as fis_gjahr_no_conv preserving type ) AS FiscalYear,
  iscnsldtntestrun AS IsConsolidationTaskTestRun,
  is_cumulative AS CnsldtnIsCumulative,
  status AS CnsldtnTaskLogMessageType,
  update_mode AS CnsldtnIsUpdateMode,
  UserID,
  cast(timestamp as fincs_timestamp preserving type) AS CnsldtnLogHeaderDateTime,
  logid_timestamp AS CnsldtnTaskLogHeaderGroupID,
  cast( yearperiod as fins_fyearperiod ) AS FiscalYearPeriod,
  applicationjobname AS ReferenceApplicationJobName,
  applicationjobcount AS ApplicationJob,
  stepcount AS JobStepNumber
FROM fincs_log_header
LEFT OUTER JOIN I_CnsldtnVersionT AS _VersionT ON ConsolidationVersion = _VersionT.ConsolidationVersion  -- association [0..1]
;