MB-910 Describe Dynamics 365 Sales Practice Question
Exhibit
Refer to the exhibit. PowerShell snippet: Get-CrmBusinessProcessFlow -Name "Opportunity Sales Process" | Select-Object -Property Name, Stages
Refer to the exhibit. A sales admin runs the PowerShell command and wants to retrieve the stages of the 'Opportunity Sales Process' Business Process Flow. However, the command returns no stages. What is the most likely reason?
⚠ Common exam trap
Candidates often assume the cmdlet accepts the friendly name (like 'Opportunity Sales Process') because it appears in the UI, but the underlying API requires the GUID, leading to empty results when only the name is provided.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The cmdlet requires the Business Process Flow ID, not name
The cmdlet used to retrieve Business Process Flow stages, such as `Get-ProcessFlowStage`, typically requires the unique identifier (GUID) of the Business Process Flow, not its display name. When the name is passed instead of the ID, the cmdlet cannot locate the BPF and returns no stages. This is a common parameter requirement in Dynamics 365 PowerShell modules.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The PowerShell module is not imported
Why it's wrong here
Would cause command not found error.
- ✗
The admin lacks read permissions on the BPF
Why it's wrong here
Would cause error, not empty results.
- ✓
The cmdlet requires the Business Process Flow ID, not name
Why this is correct
The cmdlet may not support filtering by name directly.
- ✗
The name is case-sensitive
Why it's wrong here
BPF names are case-insensitive.
Go deeper
Related to this question
About these practice questions
This MB-910 question is part of Courseiva's 941-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This MB-910 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the MB-910 exam.