CRMS4_IU_C_UMOCON
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.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA