Form Control Event Handler Methods in Dynamics 365
For example, In Dynamics 365 for Operations you can react to the OnClicked event by copying the event handler method for the event and pasting the method into a class.
Create new Class and paste below code in it for SalesEditLines EventHandlers
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
[FormControlEventHandler(formControlStr(SalesEditLines, OK), FormControlEventType::Clicked)]
public static void OK_OnClicked(FormControl sender, FormControlEventArgs e)
{
Args args = new Args();
FormCommandButtonControl callerButton = sender as FormCommandButtonControl; //Retrieves the button that we're reacting to
FormRun form = callerButton.formRun(); //Gets the running SalesEditLines form
//Get the salesId that was selected in the SalesEditLines form
FormDataSource salesParmTable_ds = form.dataSource(formDataSourceStr(SalesEditLines, SalesParmTable)) as FormDataSource;
SalesParmTable salesParmTable = salesParmTable_ds.cursor();
SalesTable salesTable=salesParmTable.salesTable();
if(salesTable.SalesStatus==SalesStatus::Invoiced)
{
//Any Action
}
}
Reference
Reference
Another Sample for OnModified of check box control - AllowEdit text box control based on checkbox selection
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
[FormControlEventHandler(formControlStr(EcoResProductDetailsExtended, Other_CatchWeight), FormControlEventType::Modified)]
public static void Other_CatchWeight_OnModified(FormControl sender, FormControlEventArgs e)
{
FormCheckBoxControl callerButton = sender as FormCheckBoxControl ; //Retrieves the button that we're reacting to
FormRun element = callerButton.formRun();
FormControl catchweightMultipleToSubProject = element.design(0).controlName("Other_CatchweightMultiple");
if(callerButton.checked())
{
catchweightMultipleToSubProject.allowEdit(true);
}
else
{
catchweightMultipleToSubProject.allowEdit(false);
}
}
On Look Up Event for String Control in the form
[FormControlEventHandler(formControlStr(VendBankAccounts, PartyPaymLocationName), FormControlEventType::Lookup)]
public static void PartyPaymLocationName_OnLookup(FormControl sender, FormControlEventArgs e)
{
FormControl callerStr = sender as FormControl; //Retrieves the string that we're reacting to
FormRun form = callerStr.formRun(); //Gets the running VendBankAccounts form
FormDataSource vendBankAccount_ds = form.dataSource(formDataSourceStr(VendBankAccounts, VendBankAccount)) as FormDataSource;
VendBankAccount vendBankAccount = vendBankAccount_ds.cursor();
vendBankAccount.vendPartyPaymLookup(callerStr );
}
Creating License Plate at Item Arrival line creation while Enter non-existing Liecense Plate
public static void InventoryDimensionsGrid_LicensePlateId_OnEnter(FormControl sender, FormControlEventArgs e)
{
FormControl callerStr = sender as FormControl; //Retrieves the string that we're reacting to
FormRun form = callerStr.formRun(); //Gets the running form
FormStringControl InventoryDimensionsGrid_LicensePlateId = form.design(0).controlName("InventoryDimensionsGrid_LicensePlateId");
if(InventoryDimensionsGrid_LicensePlateId.text())
{
WHSLicensePlate::createLicensePlate(InventoryDimensionsGrid_LicensePlateId.text());
}
}
//True parameter append the text but false removes existing text and paste new text
Published on:
Learn moreRelated posts
D365 Sending Email with Customer Account Statement SSRS report as attachment using X++
D365 Sending Email with Customer Account Statement SSRS report as attachment using X++ custTable _custTable; &...
clicking link on info message X++ to Open form
Message::AddAction() method can be used to embed an action within a message sent to the message bar. This method supports adding a singl...
D365 F&O - Create custom workflow in Dynamics 365
This guide will explain every step needed to create your custom workflow in Dynamics 365. Create Enum The base enum is used to define the ...
D365 FO Finance and Operations : AOT Browser
In Dynamics 365 Finance and Operations the AOT is not accessible from the user interface It is only available in a development bo...
D365 FO - Extensible Data Security (XDS)
This post covers D365 FO's Extensible Data Security (XDS) system, which enables the creation of flexible data-security policies beyond the def...
Power BI with D365FO
If you're looking to integrate Power BI with D365FO, this video tutorial is a great resource to get you started. The video tutorial explains t...
D365FO - SQL get security details (such as Security roles, duties and privileges)
Learn how to obtain detailed information about security roles, duties, and privileges in D365FO through SQL queries in this post. Whether you ...
D365 F&O LCS Generate SAS link to Download FASTER large bacpac file
If you've encountered difficulties with downloading large backup .bacpac files from LCS, this tutorial may come in handy! The author shares a ...
D365 FO Computed column in View ( Returning Field in View )
The technique to add a computed column begins with you adding a static method to the view. The method must return a string. The system automat...
D365 F&O setup email notifications on workflows
How to setup email notifications on workflows in D365 F&OToday we’re going to see how to manage workflow notifications in D365 Suppl...


