Skip to main content

Posts

Showing posts from January, 2019

Email alerts after management report

Email alerts after management report //In GeneralLedgerParameters - created new table for emailsetup template for reportname and assign grid in this form Fields = REportname,usergroup,Emailtemplate. //Email template available in Organization administration <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> </head> <body> Hi,<br> <br> %ReportName% report has been generated on %GeneratedDate% by %GeneratedBy%.<br> <br> Please find the below link to access the report.<br> <a href="%ReportUrl%">%ReportName%</a> <br> <br> </body> </html> //Added new field in FinancialReportversion-Emailflag class DFRG_EmailAlerts {     public static void main(Args _args)     {         FinancialReportVersion  financialReportVersion, financialReportVersionLocal;         int  ...

Project creation for a model in Visual studio for Dynamics 365 for operations.

Project creation for a model in Visual studio for Dynamics 365 for operations. Sign In Home Share RSS   Chaitanya Golla on 23 Feb 2018 9:39 PM Hi, To customize a AOT element we need to assign it to a project in Visual Studio.While creating model we will be given option to create a project but we can create a project and later add reference to the required existing model.  Below steps provide us walk through this scenario. Step 1: Create a new project in Visual Studio(VS) through the path File > New > Project Step 2: Select the template as Dynamics 365 > Unified Operations and name the project. Select create directory for solution checkbox. I have given project name as "CG_DataEntityOperations". Step 3: By default model assumed to be Fleet Management and layer to be ISV as shown below. Step 4: To change it to the required model, right click on the project and select proper...