I_WorkflowAgentRuleText

DDL: I_WORKFLOWAGENTRULETEXT SQL: IWRKFLWAGNTTXT Type: view BASIC

Workflow Definition Agent Rule Text

I_WorkflowAgentRuleText (Basic)

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

Cross Applications

I_WorkflowAgentRuleText is a Basic CDS View (Dimension) that provides data about "Workflow Definition Agent Rule Text" in SAP S/4HANA. It reads from 2 data sources (swd_flxruse, swd_flxrutx) and exposes 6 fields with key fields WorkflowScenarioDefinition, WorkflowScenarioDefinitionVers, WorkflowAgentRule, Language. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-BMT-WFM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
swd_flxruse _reuse inner
swd_flxrutx _text from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IWRKFLWAGNTTXT view
EndUserText.label Workflow Definition Agent Rule Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
Analytics.dataCategory #DIMENSION view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey WorkflowAgentRule view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY WorkflowScenarioDefinition swd_flxruse wfd_id Number of workflow definition
KEY WorkflowScenarioDefinitionVers swd_flxruse version XML Vers.
KEY WorkflowAgentRule swd_flxruse ruse_label Workflow : Label
KEY Language swd_flxrutx language Report Text Language
_Language _Language
WorkflowAgentRuleText swd_flxrutx text Text, 255 Characters

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_WorkflowAgentRuleText.
-- 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: IWRKFLWAGNTTXT

CREATE VIEW I_WorkflowAgentRuleText AS
SELECT
  _reuse.wfd_id AS WorkflowScenarioDefinition,
  _reuse.version AS WorkflowScenarioDefinitionVers,
  _reuse.ruse_label AS WorkflowAgentRule,
  _text.language AS Language,
  _text.text AS WorkflowAgentRuleText
FROM swd_flxrutx AS _text
INNER JOIN swd_flxruse AS _reuse ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;