Sign In
Palle Agermark's WebLog
About Dynamics AX development
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Bugs
Dynamics AX 3.0
Dynamics AX 4.0
Pages
Archive
Archives
June 2007
(9)
April 2007
(1)
March 2007
(1)
February 2007
(1)
January 2007
(2)
December 2006
(2)
October 2006
(2)
September 2006
(2)
August 2006
(3)
July 2006
(9)
June 2006
(6)
May 2006
(6)
April 2006
(3)
March 2006
(4)
February 2006
(1)
August 2005
(2)
July 2005
(1)
June 2005
(1)
May 2005
(3)
January 2005
(1)
MSDN Blogs
>
Palle Agermark's WebLog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Palle Agermark's WebLog
Turn off regular expressions in TextBuffer
Posted
over 5 years ago
by
Palle Agermark
1
Comments
When you work with objects of the TextBuffer class they use regular expressions internally when applying operations on the text. So this example probably wouldn't perform as you'd expect, since "<" is a control character used by the regular expression...
Palle Agermark's WebLog
Import data from InfoPath forms to AX 4.0
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Here is a very high-level description on how you can import data from an InfoPath form to AX 4.0: Create the AX web service you want to use (e.g. to create a sales order) Create a new InfoPath form Define the web service as data source in InfoPath...
Palle Agermark's WebLog
AX 4.0 Enterprise Portal and WSS 3.0 - Themes
Posted
over 5 years ago
by
Palle Agermark
1
Comments
When you apply other themes from WSS, like Reflector or Plastic, Enterprise Portal (EP) retains the default theme. This is because EP doesn't ship with style sheets for all the themes of WSS. To customize the EP style sheet to match the WSS theme you...
Palle Agermark's WebLog
Access SharePoint Document Library through UNC Path
Posted
over 5 years ago
by
Palle Agermark
1
Comments
I usually don't just link to other blogs from this blog, but this tip is very helpful and I seem to return to it again and again for reference. So here is the link: http://blogs.msdn.com/solutions/archive/2006/07/19/671873.aspx This posting is provided...
Palle Agermark's WebLog
Deploying AX with other directory servers than Active Directory
Posted
over 5 years ago
by
Palle Agermark
1
Comments
As you may very well know AX can't be deployed with other directory servers than Active Directory (AD). But a product like Microsoft Identity Integration Server (MIIS) allows you to integrate between AD and other directory servers. This will allow you...
Palle Agermark's WebLog
SysImport without confirmation dialog
Posted
over 5 years ago
by
Palle Agermark
1
Comments
If you run a something like the following, you'll be met with a confirmation dialog for existing elements. private void importAOT(str fileName) { SysImportElements sysImport = new SysImportElements(); sysImport.newFile(fileName); sysImport.parmImportAot...
Palle Agermark's WebLog
Create file directory on the AOS fileserver from code
Posted
over 5 years ago
by
Palle Agermark
1
Comments
WinAPIServer does not have createDirectory method, so best option is to use ClrInterop. static void createFileDirectory(Args _args) { FilePath path; new InterOpPermission(InteropKind::ClrInterop).assert(); System.IO.Directory::CreateDirectory(path...
Palle Agermark's WebLog
Remove HTML tags from a string
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Just stumbled on this little, but usefull, method. Web::stripHTML(...) removes HTML tags from a string and returns the actual text of the HTML string. The HTML must be fairly simple though. This posting is provided "AS IS" with no warranties...
Palle Agermark's WebLog
How to disable a configuration key from X++
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Please be aware that by running this code, you'll loose data in any table associated with the configuration key. ConfigurationKeySet configurationKeySet = new ConfigurationKeySet(); ; configurationKeySet.loadSystemSetup(); configurationKeySet...
Palle Agermark's WebLog
What is MST?
Posted
over 5 years ago
by
Palle Agermark
6
Comments
I have been with Microsoft for a little more than four years now and twice my team has been involved in an investigation to figure out what MST, as in AmountMST, is short for. Now by writing this blog post I hope to save us from a potential third investigation...
Palle Agermark's WebLog
Use regular expressions in the Find dialog
Posted
over 5 years ago
by
Palle Agermark
2
Comments
The cross reference in AX is to me a very important tool to stay on top of things. I use it for research trying figure out how things are connected and I use it when I refactor code to see if I need to change any surrounding code. In our development environment...
Palle Agermark's WebLog
Create a project from items checked out with the version control
Posted
over 5 years ago
by
Palle Agermark
7
Comments
I regularly install a new build of AX, so I have to export and import the stuff I'm working on. I have written the following job to help me create a Private Project of whatever is checked out. static void SysCreatePendingObjectsProject(Args _args) { Dialog...
Palle Agermark's WebLog
One piece of code to update a field in multiple tables
Posted
over 5 years ago
by
Palle Agermark
1
Comments
I got inspired by Max Belugins blog post about " Abstract Macros " and I got to think about how I would have solved one of the tasks he once set out to solve with this concept. Basically Max wanted to update a field, of same type, in several tables...
Palle Agermark's WebLog
Missing datatype in the Fincancial Dimension Wizard
Posted
over 5 years ago
by
Palle Agermark
2
Comments
The Fincancial Dimensions Wizard is really helpfull if you need to add new dimensions to the system. It has come to my attention though that it skips an extended datatype which also should be updated. The datatype is DimensionExtCodeId and it is important...
Palle Agermark's WebLog
Dynamics AX 4.0 SP1 Localized is available
Posted
over 6 years ago
by
Palle Agermark
0
Comments
You can now download the localized version of 4.0 SP1. It supports the following 32 countries/regions: Austria, Australia, Belgium, Brazil, Canada, China, Czech Republic, Denmark, Estonia, Finland, France, Germany, Hungary, Iceland, India, Italy, Ireland...
Palle Agermark's WebLog
Dynamics AX 4.0 Service Pack 1 ships
Posted
over 6 years ago
by
Palle Agermark
0
Comments
Dynamics AX 4.0 Service Pack 1 release is available on Customer Source and Partner Source using these links: CS – https://mbs.microsoft.com/customersource/support/downloads/servicepacks/ax40sp1_download.htm PS – https://mbs.microsoft.com/partnersource...
Palle Agermark's WebLog
Display customizable help or status text in the status line
Posted
over 6 years ago
by
Palle Agermark
2
Comments
In the right side of the status line there is a small area where you set custom texts independently of the help text (which is shown to the left). Here is a small job demonstrating this: static void setStatusLineText(Args _args) { ; xUserInfo:...
Palle Agermark's WebLog
Smarter dialogs
Posted
over 6 years ago
by
Palle Agermark
4
Comments
I don’t know about you, but it seems to me that dialogs for jobs in AX gets more and more complicated. I have a feeling a few of them could solve most of the world’s problems with hunger and pollution, if I could only figure out how fill the dialog fields...
Palle Agermark's WebLog
New Channel 9 video
Posted
over 6 years ago
by
Palle Agermark
1
Comments
Watch Michael Fruergaard Pontoppidan explain the cool AX model-driven architecture from your desk in this new Channel 9 video: http://channel9.msdn.com/ShowPost.aspx?PostID=235384 Michael is a co-author of the " Inside Dynamics AX 4.0 " book. Read...
Palle Agermark's WebLog
AOS shutting down clients unexpectedly
Posted
over 6 years ago
by
Palle Agermark
3
Comments
This issue pops up regularly in the AX Dynamics newsgroups and our internal mailling lists. The AOS shuts down clients unexpectedly with the error "The server has terminated the session. The client will now close." This is due to a problem with...
Palle Agermark's WebLog
Inside Microsoft Dynamics AX 4.0 is now shipping
Posted
over 6 years ago
by
Palle Agermark
3
Comments
This book seems to be shipping now. Here is an excerpt from the book description: Dive deep in to the architectural details of Microsoft Dynamics AX to make relationships clear and development tasks easier. The first part of the book is aimed at...
Palle Agermark's WebLog
Analyzing table relations of a Query object
Posted
over 6 years ago
by
Palle Agermark
0
Comments
One of my ISV Buddies asked me how he could write code to analyze the table relations between the data sources of a Query object. Here is the job I wrote for him as an example. I thought it might could be of general interest. static void QueryLinks...
Palle Agermark's WebLog
Upgrade problems caused by field- or table Id conflicts
Posted
over 6 years ago
by
Palle Agermark
0
Comments
When a field or table that is added by a partner or customer in a higher layer than SYS, for example VAR, is subsequently added by Microsoft in the SYS layer with the same, you see a conflict during the synchronization process and consequently an error...
Palle Agermark's WebLog
isTypeTime
Posted
over 6 years ago
by
Palle Agermark
0
Comments
Checking if a certain data field is of the ”time” data type is not as obvious as you may think. Your first few attempts will most likely just tell you that the type of your field is Integer. Here’s a job with a small snippet of code showing you...
Palle Agermark's WebLog
Runtime modification of Auto Design report sections
Posted
over 6 years ago
by
Palle Agermark
1
Comments
When you use Auto Design sections in your reports you don’t have to worry a lot about the design of the report. Everything will print just nicely. But Auto Design is problematic to work with if you want to runtime change one of the reports controls...
Page 1 of 3 (57 items)
1
2
3