Two Fields in ax 2009

Hi friends,

Am beginner of Ax dynamics 2009…How to check the vendor field is empty or not in grid…I hope

anyone help me…

  1. RightClick on the field – choose Filter by field

and then give the value

“” —for checking records which dont have vendor

!""__or checking records which have vendor

press Ok…

regards,

krishna

Check the following link for all shortcuts and utilities for Ax 2012

http://technet.microsoft.com/en-us/library/aa571220.aspx

hi friend,

When I choose PO no, vendor account and PO name should be populated in the form automatically its done.

If I choose vendor account in vendor field, I should have a lookup of PO no related to that vendor. by using lookup method i done it.

my problem is am not choosing a vendor account means the PO no displays the empty lookup.how can i check the Vendor Account Field is Select or not.Suppose select means display the related PO no for Vendor Account Look up otherwise It Should be Displays General Look up for All PO no,PO Name and Vendor Account Number .

How can I solve it…

in the lookup method of form control wrote like this…

public void lookup(FormControl _formControl, str _filterStr)

{

if (vendorAccount)

{

//write code for customized lookup (using systablelookup…etc)

}

else

{

super();

}

}

regards,

krishna