Questions tagged [dynamics-ax-2012-r3]

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.

229 questions
1
vote
1 answer

standardJournalName method from InventJournalName

In InventJournalName table there is JournalNameId column and JournalType. Using: InventJournalNameId inventJournalName; inventJournalName = InventJournalName::standardJournalName(InventJournalType::Movement); I am indeed able to get a…
1
vote
1 answer

VendTransOpen marking with CustVendOpenTransManager

I have a button on VendOpenTrans and implemented its clicked method. I thought this would work but i get an exception and AX closes.. void clicked() { LedgerJournalTrans ledgerJournalTrans; VendTransOpen vto; super(); switch…
1
vote
1 answer

Unexpected Query behaviour

I am trying to execute the following code: static void ProjTableQuery(Args _args) { Query query; QueryBuildDataSource qbds1; QueryBuildDataSource qbds2; QueryBuildRange qbr1; QueryBuildRange qbr2; QueryRun queryRun; ProjTable…
Olaru Mircea
  • 2,570
  • 26
  • 49
1
vote
1 answer

Bring Vendor Name as a column in LedgerTransAccount form

I am trying to bring the vendor name on each line in the TransAccountForm. I have written a small piece of code which gets the vendor name when LedgerDimension from LedgerJournalTrans is available: static void GetVendorName(Args _args) { …
1
vote
0 answers

How to Invoke dmfStagingToSourceFileWriter class in running method of Batch

I'm stuck on creating a batch job that has two tasks -- one for getting data from staging table and another for exporting teh data from staging table to a flat file. The first task requires that I invoke DMFStagingWriter class and it' work fine, my…
1
vote
3 answers

Changes to the document are only allowed in state Draft, because change management is activated

I have several POs that are in "Approved" status. When I open it just to review (I'm not going to change anything, but just to see some details) whatever I do it gives me an error message "Changes to the document are only allowed in state Draft,…
AYETY
  • 698
  • 4
  • 23
  • 38
1
vote
1 answer

XDS Policy - Pass a method to value property in Datasource of a query

I am working on Extensible Data Security(XDS) Policy in Dynamics AX 2012. I have made an X++ query which returns a warehouse number id depending on the currently logged in worker which is working fine. In my query I have 1 datasource…
Omar Iqbal
  • 81
  • 1
  • 2
  • 8
1
vote
1 answer

Microsoft Dynamics AX MPos -Screen Layout

On Screen Layout Designer. When i Right Click on Main Screen design(Receipt panel) , it is showing customize option, there are some columns i can select for my MPos screen. Is it possible to add my own columns or more specifically where it is…
1
vote
2 answers

get number of rows in grid ax 2012

How do I get the number of rows present in a grid at the form initialization on the init method on Dynamics AX 2012 R3?
user3180308
  • 11
  • 1
  • 2
1
vote
1 answer

Customizing services and Triggers in Dynamics AX Retail?

I am not able to find examples or Information related to Customizing Services vs Customizing Triggers in AX 2012 Retail(POS). Can some one provide me the info with examples if possible? Thanks in advance.
Raas
  • 261
  • 8
  • 25
1
vote
2 answers

Selection on Lookup to display name on UI and select RecId ax 2012

I have unbound field on a form. Right now i am showing a look-up on that field using a look-up method which shows All distinct values from a field in a table. Now i changed that name field in table to Recid field. Now i need to display look-up with…
1
vote
3 answers

AX2012 - ListPageGrid does not update

I'm having a lot of trouble adding another field to a ListPageGrid in one of my Microsoft Dynamics AX 2012 - R3 environments. For some background information, I have 4 different environments which I'm trying to do this on. 2 successful, 2…
1
vote
2 answers

How to remove clock symbol in UTCDatetime Field on form(Dynamics ax)?

I have a UTC date time field on form. But i need only date to be displayed so i kept display as date. But i am getting a clock symbol in the field. Is there any way i can remove that symbol?
1
vote
1 answer

What do I do when MorphX won't let me check in?

When I go to check something into MorphX VCS right now, I get the following message: Cannot create a record in SysVersionControlMorphXRevisionTable (SysVersionControlMorphXRevisionTable). The record already exists. With things that have already…
1
vote
1 answer

Batch job and batch classes in 2012 r3

I have problem with my batch job. It was designed for AX 2009 and added to 2012 r3, but after migration it stopped working despite it was working fine in 2009. First errors after trying to run job: "Can not construct an object based on…
user3824908