I'm new to Mibuso, so I'm confused why we put BC discussions in NAV Three Tier, but everyone else does, so I will give it a try :-)
I'm also new to BC developement. I have with VS Code AL created a few test extensions from tutorials, but now I have a real task. I have a process in BC that has looong runtime and it creates database locks. In the Database logs overview I can see that the locks are created by codeunit 1639 and I would like to see the code of this codeunit.
How can I do this?
0
Answers
You could install an extension in VSCode: AZ AL Dev Tools. With this tool you get a table with the standard objects. (like in old development environment). The tool has other verry usefull features.
Option 2: is to unpack some where the source files installed on de installation DVD.
Good luck.
Greetings,
Carolien
I'm running BC Saas, so installation DVD is not available.
You can also extract the source code from your .alpackages in VSCode by opening any of the app file with a ZIP tool (like WinRAR of 7Zip) and view the AL files there.
Hi SanderDk
This looks promising, but the .aplackages contains 4 .app files with a lot of folders with src code. The .al files are named and not numbered, so I can only see the codeunit number if I open the files.
Do you have a suggestion how I can search the .al source codes in these .app files to find a specific codeunit no. like 1639?
Personally when I need to search throw the AL file I use a tool called GrepWin (https://tools.stefankueng.com/grepWin.html)
There you can search for "codeunit 1639" and it will show the file with that text :-)