Debug Business Function in VC2005 ERP 9

spkumar

Member
I followed these steps till the function does not stop at debug points

a. Make sure that no EnterpriseOne software (activeConsole, UTB, BusBuild, etc.) is running. The software must be closed to correctly debug using Visual C++ .NET.
b. Open Microsoft Visual C++ .NET and make sure that all workspaces are closed.
c. From the file menu, choose Open Project.
d. Make sure to choose all file types or Executable Files (.exe) so you can choose the correct executable.
e. Select ACTIVECONSOLE.EXE on path e811\System\bin32
f. From the File menu choose open to open the .c or .h files for the business function (e811\path code\source\Bxxxxxx.c)
g. Set your break points in the code (make sure to set your break points after main processing section).
h. Go to the Debug menu option and click Start.
i. Save the solution file
j. If "No Symbolic Information" message box for activConsole.exe appear click OK and continue.
k. Then the EnterpriseOne login box will appear.
l. Sign into the Oracle J.D. Edwards EnterpriseOne software.
m. Click Tools -> EnterpriseOne Menu in Solution Explorer
n. Launch the application from local web server EnterpriseOne Menu, when the application reaches the business function to Debug, it will display the C code in Visual C++ .NET so that you can step through it.
 
Back
Top