Dynamics AX Blog - Page 4
SysOperation-Framework: Enable batch processing by defaultIf you want to activate batch processing by default for a function implemented via the SysOperation framework, you can do this by modifying the UI Builder like in the following example. public void build() { super(); this.controller().batchInfo().parmBatchExecute(NoYes::Yes); } The code activates the checkbox Batch processing in the Batch tab. |
Reading the contents of an AXMODEL file
Such information can be read with the Microsoft Dynamics AX 2012 Management Shell: Get-AXModel -File 'c: empdynamicsax2012r3_cl4555332.axmodel' -Details Here's how it looks: Manifest Summary Elements -------- ------- -------- Microsoft.Dynamics.AX.F... {Classes: 3} {ClassesWHSLoadLineI... |
Create cost center by codeIf you are ever embarrassed to have to create a cost center by code, this job may serve as inspiration: static void createCostCenter(Args _args) { str 30 _costCenter = "0815"; // Cost center id to create OMOperatingUnit omOperatingUnit; NumberSeqFormHandler numberSeqFormHandler; NumberSeq numberSeq; if (_costCenter) { if (!OMOperatingUnit::findName( _costCenter, OMOperatingUnitType::OMCostCenter)) { ttsbegin; numberSeq = NumberSeq::newGetNumFromId( OMOperatingUnit::getNumberSequenceReference().NumberSequenceId); omOperatingUnit.clear(); omOperatingUnit.initValue(); omOperatingUnit.omOperatingUnitNumber = numberSeq.num(); omOperatingUnit.Name = _costCenter; // Id used as name omOperatingUnit.NameAlias = _costCenter; omOperatingUnit.omOperatingUnitType = OMOperatingUnitType::OMCostCenter; omOperatingUnit.LanguageId = CompanyInfo::languageId(); if (omOperatingUnit.validateWrite()) { omOperatingUnit.insert(); } ttscommit; } } } |
SysOperation framework: Pass selected records from a temporary tableIn the following scenario, all records of a temporary table are to be passed to a SysOperation construct. For that we need:
Controllerclass TutorialSysOperationController extends SysOperationServiceController { } |
Enter price information on order lines through code and control price searchA common requirement in projects is that sales order lines should be created by code, such as data imports or similar. Recently I had the request that code-generated sales order lines are then to be processed manually, but the price information such as sales price and rebate should be preserved. However, editing certain fields in a sales order line in Dynamics AX triggers price search. This had to be prevented or pointed out to the user at least by a query. Fortunately, there is already one such query, which is controlled by the following fields:
| ||||||||
Split a string with fixed separatorsThe following snippets are meant to show how to extract the individual elements from a string with fixed separators. Variant 1: Convert the string to a container using str2con() static void Job1(Args _args) { str paramAsStr = "Wert1@@Wert2@@Wert3"; container paramAsCon; int i; paramAsCon = str2con(paramAsStr, "@@"); for (i=1;i<=conLen(paramAsCon);i++) { info(conPeek(paramAsCon, i)); } }
static void Job1(Args _args) { str paramAsStr = "Value 1|Value 2|Value 3"; List paramAsList; ListEnumerator le; paramAsList = strSplit(paramAsStr, "|"); le = paramAsList.getEnumerator(); while(le.moveNext()) { info(le.current()); } }
|
|
|
|
|
|
|
The code below is the simplest way to implement a function using the SysOperation framework. Without DataController, Dataprovider and UIBuilder. Only with a service class and a MenuItem.
Service
The runService() method is the actual service method. The SysEntryPointAttribute attribute controls that no further authorization checks are necessary.