Hi,
does anyone know how to programatically (webapi9?) change the default-app-name, which can be manually set in settings/administration/systemsettings/general/ .. which has the default "Dynamics 365 -- custom"?
Because this is showed in the menu top/left by the "Dynammics 365"-Pulldown.
thx, PeB
*This post is locked for comments
Hi,
It is an attribute of Organization entity:
Attribute name is defaultcrmcustomname
I guess you want to use it when you are provisioning new custumers. You can create a solution with ondemand workflow and use workflow tools to set OrgDbSettings: https://github.com/demianrasko/Dynamics-365-Workflow-Tools/blob/master/msdyncrmWorkflowTools/msdyncrmWorkflowTools/Class/OrgDBSettingsUpdate.cs
FetchXML:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false" > <entity name="organization" > <attribute name="defaultcrmcustomname"/> <order attribute="name" descending="false" /> </entity> </fetch>
You may be able to update it via Web API too.
Mohamed Amine Mahmoudi
83
Super User 2025 Season 1
Community Member
54
Victor Onyebuchi
6