Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards
SOLVED

Need to add filters at Schema level in Schema Edit Tab in Adobe Campaign Classic

Avatar

Level 5

 

Hello All,

 

I Need to add filters at Schema level in Schema in Edit Tab in Adobe Campaign Classic

 

Filter : trp_creation_dt > current_date – 365 AND trp_provider_id = ‘mcd’

Please suggest something, this is really urgent, Kindly add your thoughts and references

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,

 

I share with you some useful documentation links:

- Creating filters

- Functions

(Functions link, goes to Standard documentation but the majority of them can be applied to classic)

 

Additionally, I give you a possible solution as a guidance, to solve your issue. Add it inside your schema under Administration/Configuration/Data Schemas.

<sysFilter name="customFilter">
    <condition expr="@trp_creation_dt > (GetDate() - 365) AND @trp_provider_id = 'mcd'"/>
</sysFilter>

The GetDate () function here helps us to get the current date minus 365 days allowing us to be more precise when filtering.

 

Regards, 

Celia

 

 

 

 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

HI @Shruti1,

 

I share with you some useful documentation links:

- Creating filters

- Functions

(Functions link, goes to Standard documentation but the majority of them can be applied to classic)

 

Additionally, I give you a possible solution as a guidance, to solve your issue. Add it inside your schema under Administration/Configuration/Data Schemas.

<sysFilter name="customFilter">
    <condition expr="@trp_creation_dt > (GetDate() - 365) AND @trp_provider_id = 'mcd'"/>
</sysFilter>

The GetDate () function here helps us to get the current date minus 365 days allowing us to be more precise when filtering.

 

Regards, 

Celia