Opening a Quick Create through JavaScript

Leave a comment

In Dynamics 365, we can open Quick Create forms through JavaScript.

Through Xrm.Utility, we can call openQuickCreate. This takes the parameters:

Xrm.Utility.openQuickCreate(entityLogicalName,createFromEntity,parameters).then(successCallback, errorCallback);

From the documentation, we can see the parameters required:

NameTypeRequiredDescription
entityLogicalNameStringYesThe logical name of the entity to create.
createFromEntityLookupNoDesignates a record that will provide default values based on mapped attribute values.

A lookup object has the following String properties:

  • entityType: the logical name of the entity.
  • id: A string representation of a GUID value for the record.
  • name: The primary attribute value of the record.
parametersObjectNoA dictionary object that passes extra query string parameters to the form. Invalid query string parameters will cause an error.

Valid extra query string parameters are:

  • Default Field Ids, To set default values for a new record form.
  • Custom query string parameters, A form can be configured to accept custom query string parameters.
successCallbackFunctionNoThe function that will be called when a record is created. This function is passed an object as a parameter. This object has a savedEntityReference property with the following properties to identify the record created:

  • entityType: the logical name of the entity.
  • id: A string representation of a GUID value for the record.
  • name: The primary attribute value of the record created.
errorCallbackFunctionNoA function to call when the operation fails.

An object with the following properties will be passed:

  • errorCode, Number. The error code.
  • message, String. A localized error message.

For example, if we want to open the Account quick create form, without setting any parameters, the code is:

var params = {};

 Xrm.Utility.openQuickCreate("account", null, params).then(function () { console.log("Success"); }, function (error) {
    console.log(error.message);
 });

In the first example, let’s say when creating an Account, we would like to create a child account through Quick Create after we tab off the Account field.

Create a new web resource to hold our JavaScript code:

In our code, we will set the name of the child account to “Child account of ” and then get the name of the account entered on the page:

function OpenQC() {

 var thisAccount = {
    entityType: "account",
    id: Xrm.Page.data.entity.getId()
 };
 var callback = function (obj) {
    console.log("Created new " + obj.savedEntityReference.entityType + " named '" + obj.savedEntityReference.name + "' with id:" + 
 obj.savedEntityReference.id);
 }
 var setName = { name: "Child account of " + Xrm.Page.getAttribute("name").getValue() }; 
 Xrm.Utility.openQuickCreate("account", thisAccount, setName).then(callback, function (error) {
    console.log(error.message);
 });

 }

Attach the code to the Account field:

Now create a new account. After typing the name, the Quick Create will open:

Now let’s say we want to open the Contact Quick Create instead. We can change the code to set the parameters of the first name of the contact:

function OpenQC() {
 var thisAccount = {
    entityType: "account",
    id: Xrm.Page.data.entity.getId()
 };
 var callback = function (obj) {
    console.log("Created new " + obj.savedEntityReference.entityType + " named '" + obj.savedEntityReference.name + "' with id:" + 
 obj.savedEntityReference.id);
 }
 var setName = { firstname: "Contact Name for " + Xrm.Page.getAttribute("name").getValue() }; 
 Xrm.Utility.openQuickCreate("contact", thisAccount, setName).then(callback, function (error) {
    console.log(error.message);
 });

 }

Now entering an account brings up the contact quick create form:

Note you must have the Allow quick create check box checked on the entity in Customizations:

If you do not have this checked and you try to run the JavaScript, the create will open in it’s own browser window, e.g. for account:

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

Leave a Reply

Your email address will not be published. Required fields are marked *