Skip to main content

Posts

Showing posts with the label basic

Menus Name for Ax 4.0

I am sharing here Menus name for Ax 4.0 standard. We know this version is outdated but when we started to search for some information on Ax 4.0 then did not get even lot of searching so I am sharing here to get it easily. Menu Name General ledger Bank CRM Accounts receivable Accounts payable Inventory management Master planning Production Human Resources Project Basic Administration

Number sequence cleanup activity in MSD Axapta

  1. Click Navigation Pane node: Basic -> Setup -> Number sequences -> Number sequences. 2. Select the number sequence line. 3. To perform cleanup of number sequence of current selection Click the Clean up -> Click on Current menu button. Form name: NumberSequenceCleanUp 4. To perform cleanup of number sequence of current selection Click the Clean up -> Click on All menu button. 5. Click the OK button.

Get number sequence code through code in MSD axapta

To Create a new number sequence Basic>Setup>NumberSequence>NumberSequence e.g. test_NS with format ######_NS Now in any form Where the Table e.g. test_NumberSequence is used, override create method of test_NumberSequence under DataSource Node and do the following //1. in class declaration of form public class FormRun extends ObjectRun { numberSeq numberSeq; } //2. in create method of test_NumberSequence public void create(boolean _append = false) { super(_append); numberSeq = NumberSeq::newGetNumFromCode("test_NS", true,true); if (numberSeq) { test_NumberSequence.NS_id = numberSeq.num(); } }