Dynamics 365 for Finance and Operations: More Than One Form Was Opened at Once for the Lookup Control

By Matt Thompson | July 16, 2018

In Dynamics 365 for Finance and Operations, when subscribing to a lookup event to modify an existing lookup on a form control, you must remove the super call to the existing lookup. Otherwise, when clicking on the control a message will display stating, “More than one form was opened at once for the lookup control.” An example of the message is shown in the upper right corner of the image below.

Multiple Forms in lookup control

The following steps can be utilized in the lookup event to cancel the super call of the original lookup:

  1. Declare a new variable of type FormControlCancelableSuperEventArgs.
  2. Initialize the new variable with the current FormControlEventArgs parameter ‘e’ and cast it as type FormControlCancelableSuperEventArgs.
  3. Finally, use the new variable and call the CancelSuperCall() method.

Below is an X++ example of subscribing to a lookup event and canceling the super call.

    [FormControlEventHandler(formControlStr(VendCertification, StateId), FormControlEventType::Lookup)]
    public static void StateId_OnLookup(FormControl sender, FormControlEventArgs e)
    {
        // Declare and initialize new variable.
        FormControlCancelableSuperEventArgs formControlCancelSuper = e as FormControlCancelableSuperEventArgs;

        //Custom lookup code can go here.

        // Cancel the super call of lookup control.
        formControlCancelSuper.CancelSuperCall();
    }

Under the terms of this license, you are authorized to share and redistribute the content across various mediums, subject to adherence to the specified conditions: you must provide proper attribution to Stoneridge as the original creator in a manner that does not imply their endorsement of your use, the material is to be utilized solely for non-commercial purposes, and alterations, modifications, or derivative works based on the original material are strictly prohibited.

Responsibility rests with the licensee to ensure that their use of the material does not violate any other rights.

Start the Conversation

It’s our mission to help clients win. We’d love to talk to you about the right business solutions to help you achieve your goals.

Subscribe To Our Blog

Sign up to get periodic updates on the latest posts.

Thank you for subscribing!