Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

debugging

Former Member
0 Kudos
177

Hi all,

Can anybody send information about system debugging and update debugging.

thanks in advance

Venkat

3 REPLIES 3

Former Member
0 Kudos
92

hi venkat,

check this for update debugging

If you set "Update Debbugging" you can debug the codes which works in update tusk.

SAP std often runs the routine (function or form) to update the database in update tusk mode, these routine start as soon as a commit work is done.

The commit is called at the end of the program, so you can't debug them by "normal debbugging" because it ends as soon as the program ends

or----


All the database updates are performed by the update work processes by calling the functions/subroutines in update tasks.

These tasks are executed after a commit work is reached in the application. By default you cannot debug these functions.

TO debug these u need to explicitly activate update debugging.

for system debugging check the below link

http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/5f0640555ae369e10000000a155106/content.htm

If u find it useful plz reward the points

Regards,

Naveen

Former Member
0 Kudos
92

Hi,

Here is something from the help for System debugging

http://help.sap.com/saphelp_nw04/helpdata/en/ef/5f0640555ae369e10000000a155106/content.htm

UPDATE debugging is nothing but the system opens a new session the function which is being called in a UPDATE TASK mode and gets into a debug mode.

You can get the info here

http://help.sap.com/saphelp_nw04/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm

Regards,

Ravi

Note : Please mark all the helpful answers