I got an .xpo file from an older version of AX with some code of interest and because it had a few thousand lines, it wasn’t exactly easy to navigate. At least splitting it by object would make my life much easier. Fortunately I looked at the internet and found exactly the right tool for this task: xpoTools. It’s not well-documented, but what I needed didn’t require much anyway. After installation, I simply ran the following (Powershell) code:
cd c:\Temp\XPO\
ls *.xpo | Import-Xpo | Split-Xpo -Xpp
Comments
Post a Comment