Expand my Community achievements bar.

Get ready! An upgraded Experience League Community experience is coming in January.
SOLVED

how to add sysfilters or filters in schema with conditions in adobe campaign classic

Avatar

Level 5

Hi All,

I need to add sysfilters or filters in schema with conditions in adobe campaign please suggest

 

filter : nt_creation_dt > current_date – 365 AND nt_provider_id = ‘elc’

 

thanks in advance

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Shruti1

 

You can use the following documentation to help you to solve the issue: Filter creation and Sysfilter element

For the creation, you should insert the filter inside the schema you want to apply it, editing its XML under (Administration>Configuration>Data Schemas). You can try this solution to guide you:

 

<sysFilter name="customFilter">
    <condition expr="@nt_creation_dt > (GetDate() - 365) AND @nt_provider_id = 'elc'"/>
</sysFilter>

 

Regards, 

Celia

 

 

 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @Shruti1

 

You can use the following documentation to help you to solve the issue: Filter creation and Sysfilter element

For the creation, you should insert the filter inside the schema you want to apply it, editing its XML under (Administration>Configuration>Data Schemas). You can try this solution to guide you:

 

<sysFilter name="customFilter">
    <condition expr="@nt_creation_dt > (GetDate() - 365) AND @nt_provider_id = 'elc'"/>
</sysFilter>

 

Regards, 

Celia