2009 Jul 21 9:14 PM
Hi
How do I debug a script driver program when I am creating an output directlt from a transaction.
2009 Jul 21 9:19 PM
First run the Program RSTXDBUG , this will activate SAP script Debugger
a®
2009 Jul 21 9:19 PM
First run the Program RSTXDBUG , this will activate SAP script Debugger
a®
2009 Jul 21 9:24 PM
I am not asking the method of debugging the sap script but I want to Debug the driver program which is assigned in NACE.
2009 Jul 21 9:26 PM
You have to put a break point or user break point, which make the flow to stop at it... when u hit from Tr.
2009 Jul 21 9:34 PM
If you know the driver program is runs in the foreground (ie transaction not submitting the driver ) then ordinary break-point will stop. other if its runs using submit then
1. copy the standard driver program into custom one and put a
data : x type c.
do.
if x = 'Y'.
exit.
endif.
enddo.
Then apply this program in NACE and run your transaction. Then go to SM50 and select your dialog process and from the top menu choose-->program/session > program> debugging
then change the value of x to Y
a®