CRMS4_IU_C_UMOCON

DDL: CRMS4_IU_C_UMOCON Type: view_entity

Utilities Service Order by Con. Object

CRMS4_IU_C_UMOCON is a CDS View that provides data about "Utilities Service Order by Con. Object" in SAP S/4HANA. It reads from 2 data sources (afih, aufk) and exposes 3 fields with key field haus.

Data Sources (2)

SourceAliasJoin Type
afih afih inner
aufk aufk left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Utilities Service Order by Con. Object view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY haus iloa tplnr Functional loc.
aufnr afih aufnr SettlementOrder
autyp aufk autyp Order category

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 CRMS4_IU_C_UMOCON.
-- 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.

CREATE VIEW CRMS4_IU_C_UMOCON AS
SELECT
  iloa.tplnr AS haus,
  afih.aufnr AS aufnr,
  aufk.autyp AS autyp
INNER JOIN afih ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN aufk ON /* join condition not captured in parsed metadata */
;