Cloud Kicks (CK) は、Salesforce で靴の在庫を追跡しています。注文のステータスがアクティブに変更されると、注文された靴の在庫が減少します。その時点で、CK Web サイトの SOAP Web サービスを呼び出して、靴の正しい在庫量を表示するように Web サイトを更新する必要があります。 靴の在庫が変更された場合、アプリ ビルダーは何を使用して CK Web サービスと通信する必要がありますか?
正解:A
To communicate to the CK web service when a shoe's inventory has changed, an app builder should use an after-save record-triggered flow. An after-save record-triggered flow is a type of flow that runs after a record is saved and can perform actions such as updating related records, sending emails, calling external services, etc. An after-save record-triggered flow can use an Apex action to invoke a SOAP web service using a WSDL file. [Source]