SWW_SDDL_SWWWITEXT

DDL: SWW_SDDL_SWWWITEXT SQL: SWW_V_SWWWITEXT Type: view

Workflow: Language dependent work item text

SWW_SDDL_SWWWITEXT is a CDS View that provides data about "Workflow: Language dependent work item text" in SAP S/4HANA. It reads from 2 data sources (SWW_SDDL_SWWWIHEAD, swwwitext) and exposes 71 fields with key fields wi_id, wi_lang.

Data Sources (2)

SourceAliasJoin Type
SWW_SDDL_SWWWIHEAD SWW_SDDL_SWWWIHEAD left_outer
swwwitext swwwitext from

Parameters (1)

NameTypeDefault
timeZoneUpdate tznzone

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SWW_V_SWWWITEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Workflow: Language dependent work item text view

Fields (71)

KeyFieldSource TableSource FieldDescription
KEY wi_id SWW_SDDL_SWWWIHEAD wi_id WorkItem ID
KEY wi_lang swwwitext wi_lang Language
wi_text swwwitext wi_text Work item text
clientNULLaswitextCreatedDateZonlo
clientNULLaswitextCreatedTimeZonlo
crea_tmp swwwitext crea_tmp Created On
error_code error_code INT4
top_task top_task Top Task
top_wi_id top_wi_id Top Level Workflow
createdDateZonlo createdDateZonlo
createdTimeZonlo createdTimeZonlo
completedDateZonlo completedDateZonlo
completedTimeZonlo completedTimeZonlo
wi_type wi_type Type
wi_stat wi_stat Status
wi_cruser wi_cruser Creator
wi_chckwi wi_chckwi Workflow
wi_rh_task wi_rh_task Task
wi_prio wi_prio Priority
wi_comp_ev wi_comp_ev Completion by event
wi_forw_by wi_forw_by Forwarder
retry_cnt retry_cnt Repeat counter
max_retry max_retry Repeat counter
wi_release wi_release Work Instruction Version Release
wf_type wf_type Workflow Type
def_guid def_guid Unique ID
prs_profil prs_profil Persistence Profile
aging_state aging_state Data Aging Version
wi_creator wi_creator Creator
wi_rhtext wi_rhtext Task text
wi_cbfb wi_cbfb Callback Funct. Mod.
tclass tclass Classification
note_exist note_exist Attachments
notify notify Notification
step_id step_id WF Step ID
wi_aagent wi_aagent Agent
wi_aaddr wi_aaddr Address
wi_craddr wi_craddr Address
wi_confirm wi_confirm Confirm
wi_disable wi_disable Lock flag
wi_reject wi_reject Rejectable
cb_done cb_done Callback flag
no_deadl no_deadl Deadlines
wi_dh_stat wi_dh_stat Deadline Status
exec_time exec_time Time
note_count note_count Attachments
check_stat check_stat After Condition
blocktype blocktype Block Type
parent_wi parent_wi Parent Work Item
rndnumber rndnumber Random Number
wfd_id wfd_id Workflow definition
wfd_version wfd_version Version
wfd_exetyp wfd_exetyp Type
proccat proccat Process Category
wi_text_id wi_text_id Work Item Text ID
code code Water Hazard Cl.
errortype errortype Error type
name name Zone name
workarea workarea Work Area
message message User Message
variable1 variable1 Message Variable
variable2 variable2 Message Variable
variable3 variable3 Message Variable
variable4 variable4 Message Variable
catid catid Vendor Category ID
excp_type excp_type Exception Type
exc_clsnam exc_clsnam Type Name
startedDateZonlo startedDateZonlo
startedTimeZonlo startedTimeZonlo
wi_asts wi_asts Started
guid guid UUID 22 char.

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 SWW_SDDL_SWWWITEXT.
-- 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: SWW_V_SWWWITEXT
-- Parameters: timeZoneUpdate : tznzone

CREATE VIEW SWW_SDDL_SWWWITEXT AS
SELECT
  SWW_SDDL_SWWWIHEAD.wi_id AS wi_id,
  swwwitext.wi_lang AS wi_lang,
  swwwitext.wi_text AS wi_text,
  tstmp_to_dats( swwwitext.crea_tmp, $parameters.timeZoneUpdate, $session.client, 'NULL' ) as witextCreatedDateZonlo AS clientNULLaswitextCreatedDateZonlo,
  tstmp_to_tims( swwwitext.crea_tmp, $parameters.timeZoneUpdate, $session.client, 'NULL' ) as witextCreatedTimeZonlo AS clientNULLaswitextCreatedTimeZonlo,
  swwwitext.crea_tmp AS crea_tmp,
  error_code,
  top_task,
  top_wi_id,
  createdDateZonlo,
  createdTimeZonlo,
  completedDateZonlo,
  completedTimeZonlo,
  wi_type,
  wi_stat,
  wi_cruser,
  wi_chckwi,
  wi_rh_task,
  wi_prio,
  wi_comp_ev,
  wi_forw_by,
  retry_cnt,
  max_retry,
  wi_release,
  wf_type,
  def_guid,
  prs_profil,
  aging_state,
  wi_creator,
  wi_rhtext,
  wi_cbfb,
  tclass,
  note_exist,
  notify,
  step_id,
  wi_aagent,
  wi_aaddr,
  wi_craddr,
  wi_confirm,
  wi_disable,
  wi_reject,
  cb_done,
  no_deadl,
  wi_dh_stat,
  exec_time,
  note_count,
  check_stat,
  blocktype,
  parent_wi,
  rndnumber,
  wfd_id,
  wfd_version,
  wfd_exetyp,
  proccat,
  wi_text_id,
  code,
  errortype,
  name,
  workarea,
  message,
  variable1,
  variable2,
  variable3,
  variable4,
  catid,
  excp_type,
  exc_clsnam,
  startedDateZonlo,
  startedTimeZonlo,
  wi_asts,
  guid
FROM swwwitext
LEFT OUTER JOIN SWW_SDDL_SWWWIHEAD ON /* join condition not captured in parsed metadata */
;