udmo_dc_attr_view

DDL: UDMO_V_DC_ATTR SQL: UDMO_V_DC_ATTR Type: view

udmo_dc_attr_view is a CDS View in SAP S/4HANA. It reads from 10 data sources and exposes 25 fields with key field case_guid.

Data Sources (10)

SourceAliasJoin Type
scmg_t_case_attr scmg from
scmgattr_categot scmgattr_categot left_outer
scmgattr_priot scmgattr_priot left_outer
scmgattr_reasont scmgattr_reasont left_outer
scmgattr_sescalt scmgattr_sescalt left_outer
scmgcasetypet scmgcasetypet left_outer
scmgstatprofst scmgstatprofst left_outer
scmgstatt scmgstatt left_outer
udmcaseattr00 udm inner
udmattr_rccodet udmattr_rccodet left_outer

Parameters (1)

NameTypeDefault
language abap.lang

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName UDMO_V_DC_ATTR view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AccessControl.authorizationCheck #CHECK view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY case_guid scmg_t_case_attr case_guid UUID
case_type scmg_t_case_attr case_type Usage Type
ext_key ext_key External key
ext_ref ext_ref External Reference
created_by created_by Version Created By
create_time Time
changed_by changed_by User Name
change_time Time Stamp
closed_by closed_by Closed By
closing_time Closing Time
processor processor User Name
responsible responsible User Name
case_title case_title Title
escal_reason scmg_t_case_attr escal_reason Escalation Reason
category scmg_t_case_attr category Violation Category
priority scmg_t_case_attr priority Workflow priority
stat_orderno scmg_t_case_attr stat_orderno Status
stat_para scmg_t_case_attr stat_para System Status
reason_code scmg_t_case_attr reason_code Return/Change Reason
fin_due_date fin_due_date Process. Deadline
fin_paid_amt fin_paid_amt Paid
fin_kunnr fin_kunnr Customer
fin_bukrs fin_bukrs Company Code
fin_origin fin_origin Origin
status_descr scmgstatprofst stat_ordno_descr Status Descr.

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 udmo_dc_attr_view.
-- 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: UDMO_V_DC_ATTR
-- Parameters: language : abap.lang

CREATE VIEW udmo_dc_attr_view AS
SELECT
  scmg.case_guid AS case_guid,
  scmg.case_type AS case_type,
  ext_key,
  ext_ref,
  created_by,
  cast( create_time as udmo_create_time ) AS create_time,
  changed_by,
  cast( change_time as udmo_change_time ) AS change_time,
  closed_by,
  cast( closing_time as udmo_closing_time ) AS closing_time,
  processor,
  responsible,
  case_title,
  scmg.escal_reason AS escal_reason,
  scmg.category AS category,
  scmg.priority AS priority,
  scmg.stat_orderno AS stat_orderno,
  scmg.stat_para AS stat_para,
  scmg.reason_code AS reason_code,
  fin_due_date,
  fin_paid_amt,
  fin_kunnr,
  fin_bukrs,
  fin_origin,
  scmgstatprofst.stat_ordno_descr AS status_descr
FROM scmg_t_case_attr AS scmg
INNER JOIN udmcaseattr00 AS udm ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgcasetypet ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgstatt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgstatprofst ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgattr_categot ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgattr_reasont ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgattr_priot ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN scmgattr_sescalt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN udmattr_rccodet ON /* join condition not captured in parsed metadata */
;