EKOG_CDS
EKOG_CDS is a CDS View in SAP S/4HANA. It reads from 2 data sources (t002, te587t) and exposes 6 fields.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | H_EKOG_CDS | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
@AbapCatalog.sqlViewName: 'H_EKOG_CDS'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
define view EKOG_CDS as
select from (ekog inner join t002 on ( ekog.komgrp <> '' or t002.spras <> '')) left outer join te587t
on ekog.mandt = te587t.mandt
and ekog.suchbeg = te587t.suchbeg
and t002.spras = te587t.spras
{
ekog.mandt as MANDT,
ekog.komgrp as KOMGRP,
ekog.prolfdnr as PROLFDNR,
ekog.suchbeg as SUCHBEG,
t002.spras as spras,
te587t.suchbegtxt as SUCHBEGTXT
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EKOG",
"T002",
"TE587T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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