Thursday 13 December 2018

How to debug a batch job in D365 F&O


1) Go to debug menu and select attach to process option.














2) Select the batch.exe process and make sure show processes for all users is selected. 
Note : Batch Service has name batch.exe and its location is (C:\CustomerServiceUnit\DOBind\Packages\Cloud\AosWebApplication\
AosWebApplication.csx\roles\AosWeb\approot\bin ) –at least on locally deployed machines













After attaching the process  symbols will be loaded. When you will execute your batch job at that time you will be able to debug X++ code.

2 comments:

  1. When I am trying to attach to batch.exe, VS is requesting elevated credentials. am on version 10.0.10. Any alternatives?

    ReplyDelete
    Replies
    1. Sorry for the late response. There is nothing changed in 10.0.10 version and I'm also using the same version. Can you sign out from the visual studio and login again with your credentials. once you login, please close and reopen the visual studio. Hope this will solve your problem.

      Delete

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...