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

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
How to cancel form control super method call

 FormControlCancelableSuperEventArgs cancelSuperEventArgs = e as FormControlCancelableSuperEventArgs;cancelSuperEventArgs.CancelSuperCall();#D365FO #Dynamics #X++ #UI 

Ajit 8,755
Like (0)
How To Get Dynamics 365 F&O URL through code - X++

 var app = Microsoft.Dynamics.ApplicationPlatform.Environment.EnvironmentFactory::GetApplicationEnvironment();Str envURL= app.Infrastructure.HostUrl;#D365F&O #Dynamics #Finance #URL

Ajit 8,755
Like (0)
How to get a list of tables (data sources) in an Entity through code - X++

 public void tableList(TableName _tableName)    {        DictDataEntity dictEntity       =     new  DictDataEntity(tableName2Id(_tableName));        int...

Ajit 8,755
Like (0)
How to List Down Data Entities with Data Management Enabled- D365F&O

class demoGetListofDataEntityObjects{    /// <summary>    /// Runs the class with the specified arguments.    /// </summary>    /// <param name = "_args">The specified arguments.&...

Ajit 8,755
Like (0)
Power BI - How to embed a PBIX using Form in D365FO and add in a workspace.

Power BI - How to embed a PBIX using Form in D365FO and add in a workspace.We have an option in D365 to embed PowerBI visuals and run through workspaces. Here I am providing steps to do the same.1. Create a PowerBI report using power BI desktop an...

Ajit 8,755
Like (0)
How to add an Entity in Data Project through code (X++)

         DMFDefinitionGroupEntity   addEntity;        if (DMFQuickImportExportFormHelper::validateEntity(_entityName, _sourceName, DMFOperationType::Export))        { ...

Ajit 8,755
Like (0)
Power BI - How to embed a PBIX in D365FO and add in a workspace.

We have an option in D365 to embed PowerBI visuals and run through workspaces. Here I am providing steps to do the same.1. Create a PowerBI report using power BI desktop and save the file, .pbix file will be saved.  You can refer below youTub...

Ajit 8,755
Like (0)
How to get Azure Blob URL in D365FO

When we are exporting data in Excel or any other format using DIXF, file gets uploaded in Azure Blob and if you need that azure blob URL you can get using below code -DMFEntityExportDetails      exportDetails;you can find exportDeta...

Ajit 8,755