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
ManagedBy property on the security node in the AOT [AX 2012]
munib
I had recently asked this question to Microsoft and thought I should share. Question: I am trying to make sense of the security AOT property ManagedBy. I can understand if I have to put something there to indicate it is being managed manually but why does best practice accept only the two values (that I found): Manual CodeAnalysis I have searched on msdn for more help but all it says is: ManagedBy Optional This property is for use by automation tools. http://msdn.microsoft.com/en-us/library/gg731858.aspx Answer: This property…
2012-1-23
Original post
General
Security
AX2012
1182 views
0 comments
over 9 years ago
More
Cancel
Business Operation Framework (BOF) [AX 2012]
munib
The Business Operation Framework (BOF) lets you run services on Microsoft Dynamics AX using the Windows Communication Foundation (WCF) framework. The BOF uses an MVC programming pattern. What is a Model View Controller (MVC) Framework? MVC is a framework methodology that divides an application's implementation into three component roles: models, views, and controllers. Model: The model manages the behavior and data of the application domain, responds to requests for information about its state (usually from the view), and responds to instructions to change state (usually from the…
2012-1-22
Original post
BOF
AX2012
1866 views
0 comments
over 9 years ago
More
Cancel
Loop through record from data source [AX 2012]
munib
These are simple code snippets to loop through a record from a data source. Using a while loop salesLine_ds = _salesLine.dataSource(); localSalesLine = salesLine_ds.getFirst(true) as SalesLine; if (localSalesLine) { while (localSalesLine) { //Do your thing localSalesLine = salesLine_ds.getNext() as SalesLine; } } Using a for loop salesLine_ds = _salesLine.dataSource(); for (localSalesLine = salesLine_ds.getFirst(true) ? salesLine_ds.getFirst(true) : salesLine_ds.cursor(); localSalesLine; localSalesLine = salesLine_ds.getNext…
2012-1-19
Original post
General
AX X++
AX2012
Tip
10326 views
0 comments
over 9 years ago
More
Cancel
The element does not have an origin value. This element must have a non-null origin value.
munib
When you compile and you get this error in AX 2012. "The element does not have an origin value. This element must have a non-null origin value." Just restart your AOS. That should sort it out. Original post ... http://dynamicsnavax.blogspot.com/2012/01/element-does-not-have-origin-value-this.html
2012-1-13
Original post
General
AX2012
1872 views
0 comments
over 9 years ago
More
Cancel
Modify Microsoft Dynamics AX 2012 SSRS configuration files using PowerShell
munib
This post is to highlight a pet project I have been working on. Working for a partner I frequently do new environment installations. AX 2012 allows you install multiple SSRS environments on the one machine but it can be tedious with the SSRS configuration file changes. http://technet.microsoft.com/en-us/library/hh389762.aspx I have scripted the process and loaded on here http://dax2012ssrs.codeplex.com . Original post ... http://dynamicsnavax.blogspot.com/2012/01/modify-microsoft-dynamics-ax-2012-ssrs.html
2012-1-4
Original post
SSRS
AX2012
Powershell
1240 views
0 comments
over 9 years ago
More
Cancel