Sometimes we need to loop through values at the form level. The following code loops (for loop) the SalesParmTable in the CloseOk() Form method.
//Create Lines
for (localSalesParmTable = salesParmTable_ds.getFirst();
localSalesParmTable;
localSalesParmTable = salesParmTable_ds.getNext())
{
....Implementation....
}
Showing posts with label element.selectMode. Show all posts
Showing posts with label element.selectMode. Show all posts
Monday, July 11, 2011
Tuesday, March 8, 2011
Languages in AX 2009 - Using a the LanguageTable form for Lookup building- AX 2009
Today I had a requirement to only show the following language across the whole application:
Because the requirement said "Across the application" I decided to modify the LanguageTable form to be shown as a lookup in every instance of the LanguageID across the application.
The following are the steps I took:
- en-us
- fr
- it
Because the requirement said "Across the application" I decided to modify the LanguageTable form to be shown as a lookup in every instance of the LanguageID across the application.
The following are the steps I took:
Subscribe to:
Posts (Atom)