How to disable debug mode in Apex Application using command line? - oracle

To disable the debug mode for an app it's easy from the workspace.
Does anyone know how to disable it using command line please ?
Thanks.

Related

Can I use PDSOE for "immediate" debugging?

Using ProEnv, I have configured my computer to start the standard debugger in case my Progress application shows a message (press the "Help" button and in the callstack, click on "Debug"), this is done using this ProEnv environment variable:
DLC=C:\PROGRE~1\OpenEdge
My application is started, using the -debugalert switch.
However, now I'm starting working with PDSOE (Progress Developer Studio for OpenEdge) and I would like to start up that debugger, in the mentioned case. I don't know how to do this, because PDSOE is based on Java technology (it's an Eclipse environment).
Does anybody know how to do this?
Thanks in advance
The way to launch the PDSOE variant of the debugger is from within PDSOE, using a "Debug Configuration". If you've run the application this way, the PDSOE debugger is used regardless of whether you use breakpoints or the <debug> button.
If you run the application from a "Launch Configuration", then the <debug> button will launch the standalone debugger.
They're basically functionally equivalent but TL;DR you'll need to run the application using PDSOE's "Debug Configuration".
Double click in the left margin of your source to set a break point (a small blue ball):
Then start your run configuration in debug mode:
You will be prompted to switch to debug perspective.
Add DEBUGGER:INITIATE(). DEBUGGER:SET-BREAK(). anywhere in the code and execute the application (provided you've already run prodebugenable -enable-all from the ProEnv in Admin mode).

visual studio code "launch json" on run, how to set debug console as default

I went to user settings to set the debug console to default (when I try to debug now the default console is terminal. I lose the small debug icons to skip, stop etc even when I manually select debug console). I am watching Python tutorials using Vs Code and his default is debug. How can I do this?
Secondly, when I try to run or debug, I am prompted to open LaunchJS, even if it is already open. I attempted to run it using the debug selection "current file, integrated terminal" and also "Python: Attach". Neither will work although the JSON file has these options. I looked at some MS videos but I am not understanding the problem.
Any help is appreciated. Thanks.
I found the answer at this link: https://code.visualstudio.com/docs/python/python-tutorial
I had not selectd a Python interpreter which establishes a python workspace. Was just trying to run with debugger. A simple program now runs. My guess is that the Python tutorial I selected is too old to follow with this version of VS Code, since I am unfamiliar with any version of VS Code.
Thanks.

How do I enable "Technical Translation" in debug mode on Odoo 10?

I've got two servers running odoo 10. One has "Technical Translation" in the debug mode as the screenshot shows->
However on the other one, there are much less options in debug mode->
What could have led to this and how can I fix it (and including the other missing options)?
Give Administrator -> Settings access right to the user and try again.

Windows Developer not enabled

I'm trying to activate developper option
developpement option
http://img15.hostingpics.net/pics/389038Sanstitre.png
please i try all things but this option still not activated, what should i do thanks first
Have you tried to modify these keys in the registry?
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock\AllowAllTrustedApps
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock\AllowDevelopmentWithoutDevLicense

AvalonEdit CompletionWindow is not showing when break point is enabled

I am using ICSharpCode.AvalonEdit for Text Editor. When I am in debug mode with enabled breakpoints, CompletionWindow is not showing in the TextEditor. When disable the breakpoints then CompletionWindow is showing. Anyone facing this issue ? Because of this, I could not debug the code with breakpoints.
The CompletionWindow closes itself when the TextEditor loses focus.
If you really need to debug focus-sensitive code in a debugger, try using a secondary machine and remote debugger. (the second machine can just be a virtual machine)

Resources