cancel
Showing results for 
Search instead for 
Did you mean: 

smart form primting mass data

Former Member
0 Kudos

hi,

I want to know about how we can create a Smartforms for mass printing.

Example: - Suppose I have address window, it’s contain customer no. and address information, based on this information I want to print detail of sales order.

For one customer it’s possible if I have in selection criteria parameter statement but I have a problem, if I have in selection criteria select-options statement and I want to print this SF for 1000 customer

regards

arora

Accepted Solutions (1)

Accepted Solutions (1)

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

In driver program, write the logic to get the details of all customers and put it in internal table.Form there use table parameter to pass the data to smartfrom.Then in smartform->Form Intreface->tables

itab like <structure_name>

Here structure_name is the internal table structure in program but should be defined in SE11.Inisde smartfrom,use loop at itab into wa.

In global definiiton->global data,define wa

wa type <structure_name>

Answers (1)

Answers (1)

Former Member
0 Kudos

You need to write new logic,

get the data from tables( Based on selection-screen ) and keep it one internal tables.

here use at new command ( when ever customer number changed ,create one spool request )

Now use smartform ,within smartform ( when ever customer number changed )

Thanks

Seshu