
Yes, it's possible to change the default selection in the "Assign" pop-up window from "To Me" to "To User or Team" in Dynamics 365 Sales. However, it's important to understand that this is not a direct, supported setting that you can change through the UI. You'll need to use a client-side JavaScript customization.
Here's how you can achieve this:
1. Using JavaScript and Xrm.Utility.openEntityForm (Recommended):
Xrm.Utility.openEntityForm to open the Assign form with the "To User or Team" lookup field pre-populated with a dummy value.openAssignForm).
Xrm.Utility.openEntityForm("systemuser", null, formParameters) opens the Assign form for the "systemuser" entity (which represents users or teams).formParameters object is used to pass parameters to the Assign form.assignType: 1 sets the default selection to "User or Team."2. Using a Business Rule (Less Reliable, More Complex):
Important Considerations:
Recommendation:
Xrm.Utility.openEntityForm (Option 1) is the recommended approach. It provides the most reliable and direct way to change the default selection in the "Assign" pop-up.By using the JavaScript customization, you can effectively change the default selection in the "Assign" pop-up window. Remember to test thoroughly and consider the user experience.