QuestionQ208

Configure business process automation

A bank uses a Common Data Service solution to manage clients.

Bank representatives conduct client credit checks while the client is present. Credit checks can take up to five minutes to finish.

Bank policy requires the bank representative's app to remain blocked until the credit checks are complete.

You need to show a model-driven app while credit checks are running, asking the bank representative and client to wait for the credit check to finish.

Which function should you use?

  • A Xrm.Navigation.openWebResource("prefix.myPoliteMessage.html")
  • B Xrm.Navigation.openAlertDialog(myPoliteMessage)
  • C Xrm.Utility.openWebResource("prefix_myPoliteMessage.html")
  • D Xrm.Utility.showProgressIndicator(myPoliteMessage)
Explanation

Xrm.Utility.showProgressIndicator(message) displays a progress dialog with the supplied message and blocks the model-driven app UI until Xrm.Utility.closeProgressIndicator closes it. This meets the requirement to prevent the representative from interacting with the app while the credit check is still running.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!