SUIM_2X_HEAD_RF

DDL: SUIM_2X_HEAD_RF SQL: SUIM2X_HEADRF Type: view

Get header data SU2X (Function Module)

SUIM_2X_HEAD_RF is a CDS View that provides data about "Get header data SU2X (Function Module)" in SAP S/4HANA. It reads from 13 data sources and exposes 19 fields with key fields ident, tech_name, name.

Data Sources (13)

SourceAliasJoin Type
SUIM_2X_APPL_TYPE appl_type left_outer
df14l df14l left_outer
SUIM_2X_HEAD_OKFLAG okflag_text left_outer
enlfdir rf from
df14l su2x_df14l left_outer
tdevc su2x_tdevc left_outer
tadir su2x_wbo left_outer
SUIM_2X_RF_SUSH_NAME sush_name left_outer
tdevc tdevc left_outer
SUIM_2X_TEXTS texts left_outer
tfdir tfdir left_outer
usob_sm usob_sm left_outer
tadir wbo left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SUIM2X_HEADRF view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Get header data SU2X (Function Module) view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY ident SUIM_2X_APPL_TYPE ident Tree Structure
KEY tech_name enlfdir funcname Sel.Type: Funct.Name
KEY name enlfdir funcname Sel.Type: Funct.Name
ddtext SUIM_2X_APPL_TYPE ddtext Short text
type SUIM_2X_APPL_TYPE type Worklist Type
description SUIM_2X_TEXTS description Well Code Des.
modifier usob_sm modifier User Name
moddate usob_sm moddate Modification date
modtime usob_sm modtime Time
okflag usob_sm okflag Maintenance Mode
okflag_text SUIM_2X_HEAD_OKFLAG ddtext Short text
source tadir srcsystem Source system
author tadir author User Name
devclass tadir devclass Package (Obsolete)
dlvunit tdevc dlvunit Softw. Comp.
ps_posid df14l ps_posid WBS Element
source_su2x tadir srcsystem Source system
author_su2x tadir author User Name
dlvunit_su2x tdevc dlvunit Softw. Comp.

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 SUIM_2X_HEAD_RF.
-- 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: SUIM2X_HEADRF

CREATE VIEW SUIM_2X_HEAD_RF AS
SELECT
  appl_type.ident AS ident,
  rf.funcname AS tech_name,
  rf.funcname AS name,
  appl_type.ddtext AS ddtext,
  appl_type.type AS type,
  texts.description AS description,
  usob_sm.modifier AS modifier,
  usob_sm.moddate AS moddate,
  usob_sm.modtime AS modtime,
  usob_sm.okflag AS okflag,
  okflag_text.ddtext AS okflag_text,
  wbo.srcsystem AS source,
  wbo.author AS author,
  wbo.devclass AS devclass,
  tdevc.dlvunit AS dlvunit,
  df14l.ps_posid AS ps_posid,
  su2x_wbo.srcsystem AS source_su2x,
  su2x_wbo.author AS author_su2x,
  su2x_tdevc.dlvunit AS dlvunit_su2x
FROM enlfdir AS rf
LEFT OUTER JOIN tadir AS wbo ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tfdir ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN SUIM_2X_APPL_TYPE AS appl_type ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN usob_sm ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN SUIM_2X_RF_SUSH_NAME AS sush_name ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tadir AS su2x_wbo ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tdevc AS su2x_tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l AS su2x_df14l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN SUIM_2X_TEXTS AS texts ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN SUIM_2X_HEAD_OKFLAG AS okflag_text ON /* join condition not captured in parsed metadata */
;