‎2008 Jun 23 9:21 AM
I am working on a smartform.When I am trying to see the output In VL02N,it shows an error that output cannot be displayed.When I am seeing the processing logic it says "Font family ARIAL not maintained".But in my progrrame I am not using ARIAL font anywhere.what can be the reasons????
‎2008 Jun 23 9:23 AM
‎2008 Jun 23 9:23 AM
‎2008 Jun 23 9:23 AM
hi,
put BREAK-POINT statement in ur code then it will allow you debug the smartform.
‎2008 Jun 23 9:24 AM
Hi,
If iam not wrong, ARIAL font is maintained in the smartform and not in the program.
First get the smartform name thru TNAPR table.
Then check within the smartform, u will be assiging Smartstyle name, go to that smart style and check for ARIAL font in the paragraph/charcter format.
Revrt back if any issues,
regards,
Naveen
‎2008 Jun 23 9:26 AM
You can debug smartform by keeping break-points, and break-points can be given through program lines.
insert static breakpoint in your code simply as
BREAK-POINT.
so now when we issue output to our smartform,it will open up in debug mode.
But sometimes when you face a problem when no output is generated for your smartform though it seems to be fine in debug mode fr breakpoints inserted, then Other way to debug your smartform is
go to transaction SMARTFORM_TRACE and click on the SWITCH ON botton for abap breakpoints-error...
now your smartform will stopt at those errors in debug mode
and you can easily trace the errors
Try this out,it really helps
Thanks
reward if useful
Sas
‎2008 Jun 23 9:28 AM
‎2008 Jun 23 9:35 AM
Hi,
Check the style for the smartform you have used.
and regarding debugging of smartform put a statement BREAK-POINT in any program lines of smartform.
Otherwise you can put a breakpoint on the function module which is generated for your smartform.
I hope this will help you.