Thursday, June 26, 2014

Open Axapta form in Maximize mode

If we want to open any Ax form in Maximize mode than we have to create a Run method of form as Below

public void run()
{
    #WinApi
    ;
    super();
    WinApi::showWindow(this.hWnd(), #SW_SHOWMAXIMIZED);
}


Thanks

Customer transaction automatic settlement for specific customer groups only

Hi Friends, Recently I come to the requirement of my company where I have to automatic settle the customer transaction for the speci...