Single Choice
Easy
QYou notice some performance issues where certain tasks are taking longer than they should. When you investigate the performance issue, you find that there is a While select statement on a form that can be optimized. You suspect there might be other While select statements on forms that could be optimized as well. How can you use the metadata search to find the forms with While select statements?
ID: #9590
X++ Overview in D365 F&O
283 views
Question Info
#9590Q ID
EasyDifficulty
X++ Overview in D365 F&OTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
Justification:
- A. Incorrect: code:”while" will return all code that contains “while,” which is more than you require.
- B. Correct: code:”while" type:form,method will return form methods that use While select in the code.
- C. Incorrect: type:form,method while will try to return form methods with the name “while.”
- D. Incorrect: name:while will try to return any element with the name “while.”
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic