Skip to main content

Notifications

Announcements

No record found.

Community blogs

Featured

Latest blog posts

View all
Like ( 0 )
Find files in folder and subfolders

public container findFilesInFoldersAndSubFolder(String255 _folderPath) { InteropPermission permission; permission = new InteropPermission(InteropKind::ClrInterop); permission.assert(); boolean directoryExist = System.IO.Directory::Exists(_folderP...

Sukhvir 80
Like ( 0 )
Add Dynamics AX user to sharepoint group

In AX 4.0, it is allowed to link an AX user to a particular Sharepoint site group from main menu -> Administration -> Users -> User relations button -> Web sites tab. Unfortunately, this is removed from AX 2009. However, we can still a...

Sukhvir 80
Like ( 0 )
Writing parameterised store procedure

Here is the job which help you how to handle store procedure.  Please see attachment for more detail.    

Sukhvir 80
Like ( 0 )
Creating XML File

Hi All, As in Dynamics AX, XML is widely used , so I got a code which will help to create XML file. void CreateXMLFile(){  XmlDocument doc; XmlElement nodeXml; XmlElement nodeTable; XmlElement nodeAccount; XmlElemen...

Sukhvir 80
Like ( 0 )
More about AX File extensions

I found good information which I want to share with all of you, some times we wonder as to what a particular ax system file is and what it does now you can bank upon the list given below for all such enigma. Dynamics AX uses a lot of file ext...

Sukhvir 80
Like ( 0 )
Create master setup form from master table with X++ code

This code is used to create a simple form with overview and general tab when table name is passed to it. Before creating the form make sure the table contains overview, identification and description field group as per the best practice. Also chec...

Sukhvir 80
Like ( 0 )
Dynamics AX 2009, Restoring a Backup of a SQL Database to another Domain or Enviro...

Looking into the possibilities where we need to restore a Microsoft Dynamics AX database to a different environment. 1. When moving a production database from one AD Domain to another AD Domain 2. When restoring a production database into a te...

Sukhvir 80