Application Development and Automation 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: 
Read only

smart forms

Former Member
0 Likes
473

hi All,

what type of quetions expected in smart forms.

regards,

devender.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
452

Hi Devender,

check out these links..

http://www.erpgenie.com/abap/smartforms.htm

http://www.allinterview.com/Interview-Questions/SAPScript.html

Reward points if helpful..

Regards,

Goutham.

3 REPLIES 3
Read only

Former Member
0 Likes
453

Hi Devender,

check out these links..

http://www.erpgenie.com/abap/smartforms.htm

http://www.allinterview.com/Interview-Questions/SAPScript.html

Reward points if helpful..

Regards,

Goutham.

Read only

Former Member
0 Likes
452

hi,

Smart forms Frequently Asked Questions

Forcing a page break within table loop

Create a loop around the table. Put a Command node before the table in the loop that forces a NEWPAGE on whatever condition you want. Then only loop through a subset of the internal table (based on the conditions in the Command node) of the elements in the Table node.

Font style and Font size

Goto Transaction SMARTSTYLES.

There you can create Paragraph formats etc just like in sapscript.

Then in your window under OUTPUT OPTIONS you include this SMARTSTYLE and use the Paragraph and character formats.

Line in Smartform

Either you can use a window that takes up the width of your page and only has a height of 1 mm.

Then you put a frame around it (in window output options).

Thus you have drawn a box but it looks like a line.

Or you can just draw "__" accross the page and play with the fonts so that it joins each UNDER_SCORE.

Difference between 'forminterface' and 'global definitions' in global settings of smart forms

The Difference is as follows.

To put it very simply:

Form Interface is where you declare what must be passed in and out of the smartform (in from the print program to the smartform and out from the smartform to the print program).

Global defs. is where you declare data to be used within the smartform on a global scope.

ie: anything you declare here can be used in any other node in the form.

hope this information helps you..

plz reward points if useful..

Read only

Former Member
0 Likes
452

thanks for giving information.