Microsoft Dynamics AX 2012 R3 is an Enterprise Resource Planning (ERP) application. Use this tag for questions relating to this final update to the 2012 version, being replaced by Microsoft Dynamics AX 7. Do not use this tag regarding earlier versions or other ERP applications.
Questions tagged [dynamics-ax-2012-r3]
229 questions
0
votes
1 answer
Get cell types when reading and parsing excel files
I am trying to read and parse and excel and some unclear things come into play as usual for me.
Here is what i have:
while (true)
{
comVariantCell1 = cells.item(row, 1).value().variantType();
comVariantCell2 = cells.item(row,…

Olaru Mircea
- 2,570
- 26
- 49
0
votes
1 answer
How to customize the Operation Triggers?
I want to customize the operation triggers in AX 2012 R3 Retail SDK. I need to catch the trigger and to write some business logic there in trigger class.
Can anyone please guide how to do that? I need to use the I-Interface classes as well which…
0
votes
2 answers
DmfEntityProxy not found in AX 2012
Openning DMFParameters form shows next error:
Error Assembly containing type Microsoft.Dynamics.AX.Framework.Tools.DMF.ServiceProxy.DmfEntityProxy is not referenced.
Error Object 'CLRObject' could not be created

Matej
- 7,517
- 2
- 36
- 45
0
votes
1 answer
Create active copy of VendInvoiceInfoTable and VendInvoiceInfoLines
I'm trying to modify VendInvoiceInfoTable and VendInvoiceInfoLines, and some related data, by code.
I need to create the working copy of those tables (a copy with a ParmId set) so that I can make my changes before copying back, as the GUI does.
Is…

AnthonyBlake
- 2,334
- 1
- 25
- 39
0
votes
1 answer
Create a Slipstream package of my additional Help content for AX 2012 Help Server
I would like the create a Slipstream package of my additional Help content, for a customizes installation medium of the AX 2012 R3 Help Server.
According to the MS documentation this should be possible for Help content updates.…

Carsten Cors
- 2,505
- 2
- 14
- 21
0
votes
0 answers
Suspend a transactions using code with Example
I know that POS keeps all the suspended transactions in SalesTransactions table. And all the lines related to the transactions are kept in TransactionsData field of SalesTransactions table. My requirement is to create the transaction in…
0
votes
3 answers
Finding an inventory dimension
I am trying to get an inventDim record if it exists or create a new one otherwise.
InventDim inventDim;
inventDim.InventLocationId = "220";
inventDim = InventDim::findOrCreate(inventDim);
info(inventDim.inventDimId);
I am sure that…

Olaru Mircea
- 2,570
- 26
- 49
0
votes
1 answer
Get query in controller
I have these two versions of getting the query in my controller class,
prePromptModifyContract method:
this.parmReportContract().parmQueryContracts().lookup(this.getFirstQueryContractKey())
and
this.getFirstQuery()
There is a strange mélange in…

Olaru Mircea
- 2,570
- 26
- 49
0
votes
1 answer
How to prevent the X button on a form to save data
Whenever I click the (X) button on my form, it still keeps the data. I want to be able to close the form using the (X) button and not save any data. Does anyone have an idea of why is this happening?
Scenario:
Form1 has a button [enter car…

JoseStack
- 167
- 2
- 12
0
votes
1 answer
Retail webApi services AX7
We are trying to access AX7 data via retail services using webAPi such as
https://AX---.cloud.dynamics.com/commerce/customer
so that we can directly use the data for our mobile App.
I am not good at retailsdk part. Can anyone provide the list of…

Mohd Saddaf khan
- 289
- 2
- 14
- 26
0
votes
1 answer
Table relation error value not within the range
Ax 2012 R3. I’ve created a new table to hold group data (let’s call it AgencyTable); I’ve created a RefRecId that references AgencyTable and extends RefRecId (lets call it AgencyTableRefRecId).
I’ve created another new table called RatingsTable, to…

Celeste
- 106
- 1
- 13
0
votes
1 answer
Using a the class PurchJournalMatch_Invoice which requires a form as a parameter
Is there any way to make use of the functionality of a class which requires a form parameter, but call from a class?
For example, I am looking to automate some purchase invoice matching to purchase order receipts, and the classes which are used to…

AnthonyBlake
- 2,334
- 1
- 25
- 39
0
votes
2 answers
Iteration over VendTransOpen
This happens in Accounts Payable -> Journals -> Payments -> Payment Journal.
I choose to see the Lines for a journal and from Functions I select Settlement. I am not sure if this is the same for everyone else.
So, when clicking Settlement,…

Olaru Mircea
- 2,570
- 26
- 49
0
votes
0 answers
Dynamics AX 2012 R3 on Azure, unable to RDP
I used this link https://azure.microsoft.com/en-us/marketplace/partners/microsoft/microsoft_dynamics_lcs/ and provisioned an instance of Dynamics AX 2012 R3 on Azure, it took a long time to Deploy and finally it did, but how do i access the…
0
votes
1 answer
Prevent adding white space in VATNum
In TaxVatNumTable form, i need to eliminate white spaces in the field VATNum when a new record is inserted. Now, what i already did is to override the modifiedField method on the TaxVatNumTable:
public void modifiedField(FieldId _fieldId)
{
…

Olaru Mircea
- 2,570
- 26
- 49