I_LglTransWrkflwStartedTaskDet

DDL: I_LGLTRANSWRKFLWSTARTEDTASKDET SQL: ILGLTRANSWFTDET Type: view COMPOSITE

Legal Transaction Workflow Task Details

I_LglTransWrkflwStartedTaskDet (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_LglTransWrkflwStartedTaskDet is a Composite CDS View that provides data about "Legal Transaction Workflow Task Details" in SAP S/4HANA. It reads from 1 data source (P_LglCntntMWorkflowTaskDetail) and exposes 14 fields with key fields LegalTransactionTask, LegalTransactionUUID.

SAP Help Documentation

CategoryCDS Views for Enterprise Contract Management
Data CategoryComposite
StatusLegal Transaction Task Status Name
Purpose
This CDS view will provide the Legal Transaction workflow started task details along with decision comment. This CDS view provides the data to answer the following business questions: What is the ID of Legal Transaction? What is the Title of Legal Transaction? When is the Legal transaction Workflow Task has been Created? When is the Legal Transaction Workflow Task has been Completed? What is the Workflow Task Status and Status Description? Who is Workflow Task current processor and Username? What is the Workflow Task Result? What is the Workflow Task Step Result Description? What is the Workflow Task last decision Comment? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Roles Users who want to use this CDS view must have a role based on the SAP_BCR_A4C_DEV_TST_LCM_PC business role templates. In this role, the user must have authorization to the following: Certain Profiles Access Level Organisation Company code Sales Organisation Purchase Organisation

Structure
Further Important Fields This view relates to the following SAP object types: Legal Transaction and Workflow Task Important fields in this view include the following: Field Name Description LegalTransactionTask Legal Transaction Task LegalTransaction Legal Transaction LegalTransactionTitle Legal Transaction Title LglTransTskCrtnUTCDteTme Legal Transaction Task Creation Date & Time LglCntntMTaskCompltnUTCDteTme Legal Transaction Task Completion Date & Time LegalTransactionTaskStatus Legal Transaction Task Status LegalTransactionTaskStatusName Legal Transaction Task Status Name LegalTransactionTaskCurUsr Legal Transaction Current Processor ID LegalTransactionTaskCurUsrName Legal Transaction Current Processor Name WorkflowTaskResult Legal Transaction Task Result text WorkflowStepResultText Legal Transaction Task result WorkflowTaskResultComment Legal Transaction Task Comment

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentCM-LT
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_LglCntntMWorkflowTaskDetail P_LglCntntMWorkflowTaskDetail from

Annotations (14)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ILGLTRANSWFTDET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.modelingPattern #NONE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Legal Transaction Workflow Task Details view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY LegalTransactionTask LegalTransactionTask Work Item ID
KEY LegalTransactionUUID LegalTransactionUUID Universal Unique Identifier
LegalTransaction LegalTransaction Legal Transaction ID
LegalTransactionTitle LegalTransactionTitle Legal Transaction Name
LglTransTskCrtnUTCDteTme LglTransTskCrtnUTCDteTme Workflow: Creation Time Stamp
LglCntntMTaskCompltnUTCDteTme LglCntntMTaskCompltnUTCDteTme Workflow: Timestamp completion
LegalTransactionTaskStatus LegalTransactionTaskStatus Processing Status of a Work Item
LegalTransactionTaskStatusName LegalTransactionTaskStatusName Workflow: Work Item Status
LegalTransactionTaskCurUsr LegalTransactionTaskCurUsr Actual Agent of Work Item
LegalTransactionTaskCurUsrName _User UserDescription User Description
WorkflowTaskResult WorkflowTaskResult Workflow: Returncode flexible workflow
WorkflowStepResultText Language-dependent text of a workflow definition
WorkflowTaskResultComment WorkflowTaskResultComment
_LegalTransaction _LegalTransaction

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_LglTransWrkflwStartedTaskDet.
-- 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: ILGLTRANSWFTDET

CREATE VIEW I_LglTransWrkflwStartedTaskDet AS
SELECT
  LegalTransactionTask,
  LegalTransactionUUID,
  LegalTransaction,
  LegalTransactionTitle,
  LglTransTskCrtnUTCDteTme,
  LglCntntMTaskCompltnUTCDteTme,
  LegalTransactionTaskStatus,
  LegalTransactionTaskStatusName,
  LegalTransactionTaskCurUsr,
  _User.UserDescription AS LegalTransactionTaskCurUsrName,
  WorkflowTaskResult,
  _WorkflowTaskStepResult[1:Language=$session.system_language].WorkflowStepResultText AS WorkflowStepResultText,
  WorkflowTaskResultComment
FROM P_LglCntntMWorkflowTaskDetail
;