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
aufnr afih aufnr
autyp aufk autyp
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Utilities Service Order by Con. Object'
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}

define view entity CRMS4_IU_C_UMOCON
  as select distinct from iloa
    inner join            afih on afih.iloan = iloa.iloan
    left outer join       aufk on aufk.aufnr = afih.aufnr
{
  key iloa.tplnr as haus,
      afih.aufnr,
      aufk.autyp
}
where
      iloa.tplnr      is not initial
  and iloa.owner = '6' -- order  (Domain : ILOM_OWNER)
//  or iloa.owner = '7' -- order historical

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"AFIH",
"AUFK",
"ILOA"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/