這篇SAP社區博客裏,個人一位同事介紹了SAP Marketing裏contact facet數據模型的存儲表: blogs.sap.com/2016/07/01/…sql
主要是這兩張表:ui
CUAND_CE_IC_ROOTspa
CUAND_CE_IC_FCETcode
如今個人需求是:對系統裏Contact的Origin Data數據來源渠道個數從高到低的順序進行排序:cdn
解決方案:開發兩個CDS viewblog
@AbapCatalog.sqlViewName: 'SQL_VIEW_NAME'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Contact Origin tool'
define view zcontact_origin as select from cuand_ce_ic_root as a
inner join
cuand_ce_ic_fcet as b on a.db_key = b.parent_key {
key a.db_key,
a.name_text,
a.smtp_addr,
b.db_key as children_key,
b.id_origin
}
複製代碼
@AbapCatalog.sqlViewName: 'ZCONCOUNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'count aggregation'
define view ZCONTACT_COUNT as select from zcontact_origin {
key zcontact_origin.db_key,
zcontact_origin.smtp_addr,
count(*) as facet_count
} group by db_key, smtp_addr
複製代碼
最後的效果:排序
要獲取更多Jerry的原創文章,請關注公衆號"汪子熙": 開發