How to auto populate the Customer/Account field from current login user's customer in Dynamics 365 Portals

Summary : How to auto populate the Customer/Account field from current login user's customer in Dynamics 365 Portals Open your EntityForm or WebForm Step and place the following code on advanced JavaScript field. Code: $(document).ready(function () {     {% if user %}         $("#customerid").val('{{user.parentcustomerid.id}}');         $("#customerid_name").val('{{user.parentcustomerid.name}}');  ...

Enabling Maintenance Mode – CRM Portals

Summary :  Enabling Maintenance Mode – CRM Portals When our website is scheduled for maintenance or is down due to temporary outage. When a customer accesses the website during maintenance, unpredictable behavior and intermittent unavailability might be experienced. As a portal administrator, we can configure...

Field Service WorkOrder Life Cycle in Dynamics 365 CRM

WorkOrder Life Cycle in Dynamics 365 CRM: A work order in dynamics 365 for field service has data on what work has to be done. It's used to coordinate and schedule resources and activities. It will be used for various styles of work, like installations, repairs, or preventive maintenance. A work order is typically created...

Popular Posts