내 커뮤니티 업적 표시줄을 확대합니다.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
해결됨

How we can allow audience ranking and set a limit in the AEP

Avatar

Level 1

Hi Team,

We want to explore options within AEP for setting a limit to the number of members who qualify for a segment.
For example : I am looking of options where we can rank members by their last activity date or their last purchase date and only qualify 10,000 members for an audience.  

Can you help us to provide which approaches we can consider another that audience portal rank feature, as it has limitation to rank only on numeric values attributes?

Thanks.


주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 6

To add one more option (nnakirikanti might have already hinted though), you can use scheduled sql job by using:

  1. Ranking by using: ROW_NUMBER() OVER (PARTITION BY ... ORDER BY ..)
  2. Limiting to 10k records: LIMIT BY 10000

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Community Advisor

@moni268 Quick question do you have Data Distiller SKU? 

 

 

~cheers,

NN.

Avatar

Community Advisor

@moni268 I know that within Audience Composition and Federated Audience Composition, there is a toggle for limiting profiles based on rank. I'm not sure if this answers your question but the link to doc is here:
https://experienceleague.adobe.com/en/docs/experience-platform/segmentation/ui/audience-composition

Avatar

Employee

Hello @moni268 

 

Ideally if you looking to perform limit the number of profiles which qualify for an audience, I recommend looking into the condition activity of Adobe Journey Optimizer.

The profile cap allows you to allow you to provide a limit on the number of profiles for a branch.

 

https://experienceleague.adobe.com/en/docs/journey-optimizer/using/orchestrate-journeys/about-journe...

Avatar

Community Advisor

@moni268 i would suggest looking into: audience composition: Rank and Split 

https://experienceleague.adobe.com/en/docs/experience-platform/segmentation/ui/audience-composition#...

 

Avatar

정확한 답변 작성자:
Level 6

To add one more option (nnakirikanti might have already hinted though), you can use scheduled sql job by using:

  1. Ranking by using: ROW_NUMBER() OVER (PARTITION BY ... ORDER BY ..)
  2. Limiting to 10k records: LIMIT BY 10000