2007 Nov 13 10:06 PM
I'm trying to create a generic label program in smartforms. The concept would be to pass an internal table into the smartform that has all the names and addresses and an itemcode that indicates which format of labels to use (3 x 10, 3 x 8, etc). I would have multiple templates based on the itemcode passed.
My issue is I'm trying to use a template and the labels are coming out top-down in the left-most column then stopping. How can I get it to wrap to the next column and continue?
My format is Loop/Template/Text. I only have 1 row defined in the template. Style is IDWTCERTSTYLE.
Thanks
2007 Nov 13 10:44 PM
My idea is to print the labels from LEFT TO RIGHT and then TOP to BOTTOM...
What you are doing is you are tryig to print TOP to BOTTOM and then LEFT to RIGHT....
LEFT to RIGHT and TOP to BOTTOM is easy to control...
like:
Define 4 columns in your one row...
Assign each cell a text..
Assign some condition so at a time only one cell will be executed... like
I_mod = l_Cnt mod 4.
l_div = l_cnt div 4.
Use this conditions to control your text...
Regards,
Naimesh Patel
2007 Nov 14 1:44 PM
Can you assign commands to the individual cells of a template? To do that, sounds like I need a table instead. Was hoping to use template since the labels are fixed format.
I'm new to both tables and templates.
Thanks