‎2007 Jun 04 4:34 PM
‎2007 Jun 04 4:48 PM
HI,
in print program put a break point in Function module generated by Smartform.
or go to SE37, give the function module name generated by Smartform and provide a break point in the code.
Regards
SAB
‎2007 Jun 04 4:49 PM
hi,
Either you can 'Activate Debugger' from Utilities in Smartforms OR
In any of your code block you can have Break-point. So that, Debugging will start after this stmnt.
you opened so many threads please close all of those before you post the next quesiton if you problem is solved....
if you have any doubts post the doubts.....
‎2007 Jun 04 5:32 PM
‎2007 Jun 04 5:37 PM
Hi
1) DEBUG Smartform:
One way to debug smartform is to debug the Function Module of that smartforms. If you want to debug particular smartform node that the solution would be, insert a "Program Line" just above the node you want to debug and this program line write a normal abap breakpoint. So whenever you call the smartforms, it will stop at this breakpoint and you can debug onwards.
For script Debugging: Execute RSTXDUBG program to activate the debugger or you can activate the debugger from SE71 utilities -> Activate Debugger
For Smartforms: You can put a breakpoint in the code or you can write explicity BREAK-POINT keyword to debug the smartform
Set the break point in initialization(Global Definitions--> Initialization) of smartform as :
BREAK <USERNAME>. --Works for particular user.
Please don't use BREAK-POINT this will apply all the users who are testing the smartform.
Program stops at break point. After that use Serach and set more break points.
-
>Search the program logic/Textelement/Address via search and set the break point at that code.
Need ur reward points
Regards
Ravi