Cloud Kicks は、顧客サポートの利用率が高いか、中程度か、低いかを示すために、取引先に関連するオープンケースの数とクローズドケースの数を集計したいと考えています。2 つの数値フィールド NUM_Open_Cases__c と NUM_Closed_Cases_c が作成されています。これらのビジネス要件を満たす 2 つの自動化ソリューションはどれですか?
2つの回答を選択してください
正解:A,D
To meet the requirement of summarizing the number of open and closed cases on an Account, two potential automation solutions can be used:
Option A (AppExchange): Salesforce AppExchange offers various pre-built apps and components, including those for case management, which could provide the functionality to summarize cases and categorize customer support utilization. Many apps can handle complex business requirements like case summary roll-ups and could meet the needs without custom development.
Reference:
Option D (Apex): Apex is Salesforce's programming language that allows developers to implement custom logic. In this scenario, Apex could be used to create a trigger or scheduled job that calculates the number of open and closed cases and updates the Account record accordingly. Apex would allow full customization of how the open/closed case numbers are calculated and how customer support utilization (high, medium, low) is determined.
Option B (Validation Rule): Validation Rules enforce data quality by ensuring that certain conditions are met before saving a record. They are not suitable for summarizing data or performing calculations across related records, so this option is not appropriate.
Option C (Approval Process): Approval Processes are used for managing approval workflows, which is unrelated to the case summarization requirement. Therefore, it is not a relevant option here.
In summary, using AppExchange for a pre-built solution or Apex for a custom automation are the best approaches for summarizing open and closed cases on the Account object.
Reference:
Apex Programming Guide
Salesforce AppExchange