Sales accelerator FAQs
This article answers frequently asked questions about sales accelerator in Dynamics 365 Sales and Sales premium.
How do I add the Up next widget to an entity form?
You can add the Up next widget only to managed entity forms. To add the Up next widget to a managed entity form, create a solution, modify the XML files, and then import the solution.
Create a solution
- Go to Settings > Solutions, and then create an empty solution; for example, AddWidget.
- Add a Form to the solution.
- Save the changes and publish the customizations.
- Export the created AddWidget solution as UnManaged.
- Delete the solution AddWidget from the organization.
- Extract the zip file of the downloaded solution.
Modify the XML files
In the file
solution.xml
, change the<Managed>
value to 1.In the
customizations.xml
file, delete the parameter<systemform unmodified="1">
.On the Summary tab, select the
<column>
where you want to add the widget.Add the
<section>
tag as follows:<section name="CadenceWidget" showlabel="false" showbar="false" id="{<NEW_GUID_G1>}" IsUserDefined="0" layout="varwidth" columns="1" labelwidth="115" celllabelalignment="Left" celllabelposition="Left" labelid="{<NEW_GUID_G2> }"> <labels> <label description="Cadence Widget" languagecode="1033" /> </labels> <rows> <row> <cell id="{<NEW_GUID_G3>}" showlabel="false" colspan="1" rowspan="6" labelid="{<NEW_GUID_G4> }"> <labels> <label description="Cadence widget" languagecode="1033" /> </labels> <control id="CadenceWidgetControl" classid="{F9A8A302-114E-466A-B582-6771B2AE0D92}" uniqueid="{<NEW_GUID_G5>}" isunbound="true"> <parameters /> </control> </cell> </row> <row /> <row /> <row /> <row /> <row /> </rows> </section>
Replace all the
<NEW_GUID_G>
occurrences by generating a new GUID for each place.In the
<controlDescriptions>
node, add a child node:<controlDescription forControl="{<GUID_G5>}"> <customControl formFactor="2" name="MscrmControls.AcceleratedSales.CadenceWidgetControl"> <parameters /> </customControl> <customControl formFactor="0" name="MscrmControls.AcceleratedSales.CadenceWidgetControl"> <parameters /> </customControl> <customControl formFactor="1" name="MscrmControls.AcceleratedSales.CadenceWidgetControl"> <parameters /> </customControl> </controlDescription>
Replace the
<GUID_G5>
incustomizations.xml
with the GUID_G5 generated from step 11.Save the changes and zip the folder.
Import the solution
- Open Dynamics 365 and go to Settings > Solutions.
- Import the zipped solution.
- Publish all customizations.
- Verify that the Up next widget successfully shows up on the form.
How do I add the sales accelerator site map to my custom app?
Use the site map designer in the app designer to add the sales accelerator site map to your custom app.