How to debug ABAP workflow ?
Answers were Sorted based on User's Feedback
Answer / lokesh
First of all, you cannot set breakpoints in a workflow, so I assume you mean that you have set a break-point in a method used in one of the task's used in your workflow?
If so, and if this task-method is a background method (i.e. a non-dialog task), debugging is not possible, since a background method, as the name states, is executed in another context in background.
To see how the workflow passes values from/to the different container's, you can use transaction SWUD (to see if the values needed for your method, are binded correctly).
Other useful tools for workflow error search, are: SWEL (first turn on even trace with SWELS) or simply look at the workitems created to see what kind of errors they may have encountered: SWI2_FREQ f.x.
If background task, I recommend you use SWUS for the specific task in question to create a WorkItem. Find the workitem with SWI2_FREQ, then display it. From there, display Container, to see the outcome.
You can debug the method, from SWO1 for the Object Type owning the method. From SWO1 simply click the test button. Then click "create instance". Execute the method for the object instance and you will be able to debug the method.
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / abaprajaram
SWED OR WORK FLOW LOG SWEL then put the
debugger for the log
Is This Answer Correct ? | 4 Yes | 0 No |
What is the use of abap data dictionary? : abap data dictionary
What are Delivery classes? What data will you want to transport during client copy?
what is the difference between data: begin of ty_emp, eno type i, ename type string, dno type i, end of ty_emp. and types: begin of ty_emp, eno type i, ename type string, dno type i, end of ty_emp.
what types of request are used to transport repository objects?
How do you call a transaction from a report ?
what is 'X' parameter in BAPI?
What are the data types of internal tables?
What are two methods of modifying sap standard tables? : abap data dictionary
What are the different types of luws?
What are the events in classical reports?
could anyone tell me what r real time questions been asked in interviews?i am in urgent need..thanks in advance
Type casting and error handling