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)
Design patterns part 2 -using SysGlobalObjectCache(SGOC)

SysGlobalObjectCache(SGOC) is an LRU cache. This cache removes the least used data in order to make room for new data. The sysglobalobject cache is global across sessions and aos servers. The clearscope of cache is relayed to all aos servers and s...

Srinath Sundaresan 510
Like (0)
Design patterns part 1 -PLUGIN

This is the first entry in the series of patterns related to Dynamics 365 Finance and Operations. Today we discuss about plugins. Why we need plugins ? Plugin allows the addition of features to an existing program. It is a creational pattern whic...

Srinath Sundaresan 510
Like (0)
Real time service check failed

We can check the health of the real time service by using the url   https://[RetailServerHostName]/healthcheck?testname=ping   It would give a result like below Recently we were getting issue with real time service  Error log Sys...

Srinath Sundaresan 510
Like (0)
Find EDT string

Find all EDT string with string length greater than 1260 public static void main(Args _args){ #AOT TreeNode tnode, telement; tnode = TreeNode::findNode(#ExtendedDataTypesPath); telement = tnode.AOTfirstChild(); while (telement) { SysDictTyp...

Srinath Sundaresan 510
Like (0)
Custom Exception handling using business types part 1

All of you must be already familiar with exception handling in Dynamics 365 finops. We can throw an exception by using below statements.   1) throw exception:error; //Not so great without any message or other details   2) throw error(&ld...

Srinath Sundaresan 510
Like (0)
Restore/Import Database with RETAIL functionality

Restoring a Dynamics 365 finops database has become much easier with the export database functionality in LCS. More details here   With the new feature in LCS the database is exported out of Azure SQL and a bacpac file is added to the as...

Srinath Sundaresan 510
Like (0)
Security metadata from Dynamics 365 finance and operations

Security objects in Dynamics 365 finance and operations consists of privileges,duties,roles etc. Dynamics 365 for finance and operations comes with out of the box security objects for most of the business processes. Multiple roles are available ou...

Srinath Sundaresan 510
Like (0)
Organization email template line feeds issue

Organization email templates can used to configure email message templates in Dynamics 365 finops. The email message content can be stored in html format. The html format will replace all '\n' characters with '<br>' tags in h...

Srinath Sundaresan 510