Using the Appian Common Objects 7.2 rules, is it supported to nest ru

Using the Appian Common Objects 7.2 rules, is it supported to nest

rule!APN_logicalExpressionOR

within

rule!APN_logicalExpressionAND?...

OriginalPostID-71567

OriginalPostID-71567

  Discussion posts and replies are publicly visible

Parents
  • Here's a direct mapping to a query that only relies on AND operators. You'll have to create 2 new PVs, and ensure their values are always synchronized to real value.

    pv!date1Filter: if(isnull(pv!date1), date(9999,1,1), pv!date1)
    pv!date2Filter: if(isnull(pv!date2), date(9999,1,1), pv!date2)

    filter: rf!date1Filter > now() AND rf!date2Filter > now()

Reply
  • Here's a direct mapping to a query that only relies on AND operators. You'll have to create 2 new PVs, and ensure their values are always synchronized to real value.

    pv!date1Filter: if(isnull(pv!date1), date(9999,1,1), pv!date1)
    pv!date2Filter: if(isnull(pv!date2), date(9999,1,1), pv!date2)

    filter: rf!date1Filter > now() AND rf!date2Filter > now()

Children
No Data