web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Customer experience | Sales, Customer Insights,...
Suggested Answer

Form Switch - Opportunity Record

(0) ShareShare
ReportReport
Posted on by 123

Hi,

I am struggling to find a straight forward JavaScript to do a form switch when using an option set.

I have two opportunity forms - Direct Sale (70BFE66D-3235-4A2C-BDF7-154F3F93ED35) and Indirect Sale (FAB5966D-5748-EC11-8C62-00224800AEB0)

I have a option set field with Direct (519790000) and Indirect (519790001) values.

Can someone share a script that I can use onload and onchange.

Thanks

Damesh

I have the same question (0)
  • Suggested answer
    a33ik Profile Picture
    84,331 Most Valuable Professional on at

    Hello Damesh,

    Check this - gist.github.com/.../204d031d95090b469465d305828f1c8c it should address your scenario.

  • Suggested answer
    Abdul Wahab Profile Picture
    12,119 Moderator on at

    Hi Damesh Peri,

    Here you are: 

    // A namespace defined for the sample code
    // As a best practice, you should always define
    // a unique namespace for your libraries
    var Test = window.Test || {};
    (function () {
    // Define some global variables
    let controls = {
    aw_choice: "aw_choice"
    };
    let aw_choiceValue = {
    ONE: 809790000,
    TWO: 809790001,
    THREE: 809790002
    };

    // Code to run in the form OnLoad event
    this.formOnLoad = function (executionContext) {
    try {
    let formContext = "";
    let choiceValue = "";
    let formItem = "";
    let entityFormOptions = {
    entityName: "maa_test",
    formId: "",
    entityId: ""
    };

    formContext = executionContext.getFormContext();
    formItem = formContext.ui.formSelector.getCurrentItem();
    choiceValue = this.getValue(formContext, controls.maa_choice);
    entityFormOptions.entityId = this.getId(formContext);

    if (choiceValue === maa_choiceValue.ONE) {
    entityFormOptions.formId = "00a54fa4-4251-4cec-9419-289fd6673005";
    }
    else if (choiceValue === maa_choiceValue.TWO) {
    entityFormOptions.formId = "61433d49-9091-ed11-aad0-00224814a850";
    }
    else if (choiceValue === maa_choiceValue.THREE) {
    entityFormOptions.formId = "3bfcfab1-9091-ed11-aad1-00224818a74c";
    }
    else {
    entityFormOptions.formId = "00a54fa4-4251-4cec-9419-289fd6673005";
    }
    if (formItem.getId() !== entityFormOptions.formId) {
    Xrm.Navigation.openForm(entityFormOptions).then();
    }

    } catch (e) {
    this.openAlertDialog("Error from formOnLoad: " + "e: " + e + ". e.mesage: " + e.message);
    }
    }

    this.getId = function (formContext) {
    let iD = "";
    try {
    iD = formContext.data.entity.getId();
    } catch (e) {
    this.openAlertDialog("Error from getId: " + "e: " + e + ". e.mesage: " + e.message);
    }
    return iD;
    }

    this.getValue = function (formContext, attribute) {
    let value = "";
    try {
    if (this.getControl(formContext, attribute) != "") {
    value = formContext.getAttribute(attribute).getValue();
    }
    } catch (e) {
    this.openAlertDialog("Error from getValue: " + "e: " + e + ". e.mesage: " + e.message);
    }
    return value;
    }

    this.getControl = function (formContext, control) {
    let controlValue = ""
    try {
    if (formContext.getControl(control)) {
    controlValue = formContext.getControl(control);
    }
    } catch (e) {
    this.openAlertDialog("Error from getControl: " + "e: " + e + ". e.mesage: " + e.message);
    }
    return controlValue
    }

    this.openAlertDialog = function (alertStrings) {
    try {
    Xrm.Navigation.openAlertDialog(alertStrings).then();
    } catch (e) {
    Xrm.Navigation.openAlertDialog("Error from openAlertDialog: " + "e: " + e + ". e.mesage: " + e.message).then();
    }
    }
    }).call(Test);

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > Customer experience | Sales, Customer Insights, CRM

#1
Tom_Gioielli Profile Picture

Tom_Gioielli 70 Super User 2025 Season 2

#2
Gerardo Rentería García Profile Picture

Gerardo Rentería Ga... 33 Most Valuable Professional

#3
Daniyal Khaleel Profile Picture

Daniyal Khaleel 32 Most Valuable Professional

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans