Dynamics CRM 业务规则和或条件

Dynamics CRM Business Rule And or conditions

以下问题是转储 CRM 考试问题。我在CRM online上复现了这个问题,看起来答案应该是3。但是根据dump paper是2。

这里是问题:

You are creating a business rule for the account records. The business rule will perform an action if the record has Country set to the United States and City set to either Redmond or San Francisco. You need to identify the minimum number of condition sets required to implement this logic. What should you identify?

A. 1
B. 2
C. 3
D. 4

看起来像 2,一个 AND 和一个 OR 条件 (country AND (city OR city))

您对高级查找和业务规则感到困惑。

在高级查找中,您需要 3 个条件:

  1. 国家=美国;和
  2. 州=雷德蒙德;或者
  3. 州 = 旧金山

然而,这个问题问的是业务规则,它可以将条件组合成 ANDOR 组,所以你只需要 2:

  1. 国家=美国;和
  2. 州 = 雷德蒙德或州 = 旧金山