Dynamics User Group
Site
Search
User
Site
Search
User
Dynamics 365 for Finance and Operations/AX User Group
Dynamics NAVAX
Forums
Blogs
More
Cancel
New
Dynamics 365 for Finance and Operations/AX User Group requires membership for participation - click to join (it's free)
Dynamics NAVAX
All things Dynamics AX
Home
Contact author
Subscribe by email
More
Cancel
Posts RSS
Atom
More
Cancel
Monthly archive list
November 2020
(1)
October 2020
(1)
September 2020
(1)
June 2020
(2)
May 2020
(1)
April 2020
(1)
January 2020
(1)
October 2019
(1)
September 2019
(1)
July 2019
(2)
June 2019
(1)
April 2019
(3)
February 2019
(1)
January 2019
(2)
November 2018
(1)
October 2018
(3)
September 2018
(5)
August 2018
(1)
July 2018
(1)
June 2018
(2)
May 2018
(2)
April 2018
(3)
March 2018
(1)
January 2018
(4)
December 2017
(3)
November 2017
(1)
October 2017
(2)
September 2017
(2)
August 2017
(2)
July 2017
(5)
June 2017
(2)
May 2017
(1)
April 2017
(1)
March 2017
(2)
February 2017
(1)
January 2017
(3)
December 2016
(2)
November 2016
(6)
October 2016
(6)
September 2016
(4)
August 2016
(1)
July 2016
(1)
June 2016
(2)
May 2016
(1)
April 2016
(4)
July 2012
(1)
June 2012
(4)
May 2012
(2)
April 2012
(4)
March 2012
(6)
February 2012
(4)
January 2012
(5)
November 2011
(1)
July 2011
(2)
June 2011
(5)
May 2011
(1)
Related
Related Tags
Android
ApiApp
AX
AX X++
AX2012
AX2012R3
ax7
Azure
D365O
Development
Dyn365FO
Dynamics 365 For Operations
Flow
General
Integration
iPhone
Mobile
MSDyn365FO
Restful
SOAPUI
Tip
WebServices
Workflow
X++
Xpp
Blog post list
Tags
Contact author
Subscribe by email
More
Cancel
By date
By view count
By comment count
Descending
Ascending
Workflow error: "User 123 has no access to menu item PurchReqTable"
munib
I recently was helping a client set their security and I found a weird one. The workflow would stop with an error "User 123 has no access to menu item PurchReqTable". This even though they already had access to all the workflow menu items and the purchase requisition form. The key that is required is the Miscellaneous key.
2011-6-30
Original post
Workflow
AX
2762 views
2 comments
over 9 years ago
More
Cancel
Microsoft Dynamics AX 2009 on iPhone
munib
I am passionate about this topic as I have been working on it for a while with the team in my company. We have developed an iPhone solution for Microsoft Dynamics AX which allows users to do the following: Workflow approval - View and action workflow. eg. Approve/Reject Alerts - Receive/view notifications Entities - Browse records in AX - this is extendable to allow you view any record in AX. We have basic records like Customers, Items etc by default but this is extendable Here are some screenshots: Main Menu on the iPhone Alerts on the iPhone …
2011-6-23
Original post
iPhone
General
Workflow
AX
3483 views
2 comments
over 9 years ago
More
Cancel
Online (Bing) translator for AX using a shortcut key
munib
Keeping in theme with the last post, I will talk about another simple use for web services in AX. I will use Microsoft (Bing) Translator to automatically translate fields with just a shortcut key (in this example I will take over the Ctrl+Z shortcut). In \Classes\SysSetupFormRun add a new method. Copy and paste below. Make sure to replace the API ID with your own. Sign up to Microsoft API . Public static server void translate(str _text = "") { //ar,bg,zh-CHS,zh-CHT,cs,da,nl,en,et,fi,fr,de,el,ht,he,hu,id,it,ja,ko,lv,lt,no,pl,pt,ro,ru,sk,sl,es,sv,th,tr,uk,vi //Arabic Bulgarian Chinese…
2011-6-21
Original post
WebService
AX
AX X++
43771 views
0 comments
over 9 years ago
More
Cancel
Update exchange rate using Yahoo Web Service
munib
In this example I am using Yahoo's online currency converter to update the exchange rates table. An idea would be to put this code in a batch class, which you can schedule to run daily. static void YahooCurrencyUpdate(Args _args) { Currency currency; ExchRates exchRates; str uri; str exchRate = ""; str fromCurrency, toCurrency; System.Net.HttpWebRequest httpRequest = null; System.Net.HttpWebResponse httpResponse = null; CLRObject clro = null; System.IO.Stream stream = null; System.IO.StreamReader streamReader = null; ; while select currency { fromCurrency…
2011-6-19
Original post
WebService
AX X++
4390 views
0 comments
over 9 years ago
More
Cancel
How to run AX2012 HyperV on Virtualbox (Hardware Virtualization)
munib
In my last post " How to run AX2012 HyperV on Virtualbox (Step by step guide) " I wrote how you can run a HyperV image using Virtualbox. If these steps don't work for you, there are a few things to check: 1. Mount the vhd disks using IDE controllers. Not SATA, which is the VirtualBox default if you use the wizard. Follow instruction below exactly– don’t make the mistake of clicking next -> next. Wizard will set it up as SATA controllers. 2. Hardware virtualization must be turned on your PC/Laptop. This is a BIOS setting. Have a look at this link as it may assist. http://www.microsoft.com…
2011-6-6
Original post
AX
HyperV
AX2012
VirtualBox
2339 views
0 comments
over 9 years ago
More
Cancel