Tuesday 21 October 2014

Axapta Application Compilation In CU7

In cu7 we can compile the application by using the below comamnd

-> Go AOS installed server 
-> Open command prompt(cmd) as a administrator

->paste the below code(Before pasting change aos name ,aos number, workers)

->Press Enter .

cd \Program Files\Microsoft Dynamics AX\60\Server\<YOUR AOS NAME>\bin
axbuild.exe xppcompileall /aos=01 /altbin="C:\Program Files (x86)\Microsoft Dynamics AX\60\Client\Bin" /workers=4

NOTE : <your AOS NAME> -    C:\Program Files\Microsoft Dynamics AX\60\Server (Here you can see you AOS name)

(aos = 01) - check your Axapta Server configuration and give the aos number


You should stop the AOS service before you start

@ Rahul Talasila

No comments:

Post a Comment

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...