使用CDS view開發SAP Marketing contact的facet追溯工具

這篇SAP社區博客裏,個人一位同事介紹了SAP Marketing裏contact facet數據模型的存儲表: https://blogs.sap.com/2016/07/01/how-does-sap-hybris-marketing-build-the-golden-record-of-an-interaction-contact/sql

主要是這兩張表:ui

CUAND_CE_IC_ROOTcode

CUAND_CE_IC_FCETblog

如今個人需求是:對系統裏Contact的Origin Data數據來源渠道個數從高到低的順序進行排序:排序

解決方案:開發兩個CDS view開發

  1. zcontact_origin
@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
}
  1. zcontact_count
@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

最後的效果:get

要獲取更多Jerry的原創文章,請關注公衆號"汪子熙": 博客

相關文章
相關標籤/搜索