C_JournalCaseWorkflowItem

DDL: C_JOURNALCASEWORKFLOWITEM Type: view_entity CONSUMPTION

Journal Case Workflow Item for Emails

C_JournalCaseWorkflowItem is a Consumption CDS View that provides data about "Journal Case Workflow Item for Emails" in SAP S/4HANA. It reads from 1 data source (I_WorkflowTask) and exposes 6 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
I_WorkflowTask _WorkflowTask from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Journal Case Workflow Item for Emails view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID I_WorkflowTask WorkflowTaskInternalID Work Item ID
JournalCase _JournalCase JournalCase Case ID
JournalCaseName _JournalCase JournalCaseName Case Description
FiscalPeriod _JournalCase FiscalPeriod Tax period
JournalCaseCategory _JournalCase JournalCaseCategory Category Code
JournalCaseSubcategory _JournalCase JournalCaseSubcategory Subcategory Code

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_JournalCaseWorkflowItem.
-- 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_JournalCaseWorkflowItem AS
SELECT
  _WorkflowTask.WorkflowTaskInternalID AS WorkflowTaskInternalID,
  _JournalCase.JournalCase AS JournalCase,
  _JournalCase.JournalCaseName AS JournalCaseName,
  _JournalCase.FiscalPeriod AS FiscalPeriod,
  _JournalCase.JournalCaseCategory AS JournalCaseCategory,
  _JournalCase.JournalCaseSubcategory AS JournalCaseSubcategory
FROM I_WorkflowTask AS _WorkflowTask
;