cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple smartforms preview through single print request

Former Member
0 Kudos

Hi

When i select a radio button through my program it need to give preview for my two different smatforms output at a time
for example if my first form has 3 pages ouput and second form has 2 pages of output then i want to get all the
5 pages at a time, like when i entered page down after page 3 it need to display 2nd forms first page as 4th page.

out put how i am getting is:
case1:
i am getting the first form output when i click back button then i am getting second form output
case2:
here i tried with ssf_open,ssf_close function modules and with no_open and No_close control parameters
in this case i am getting second form output only.

Thanks,
Satya.

0 Kudos

Assume you have 5 smartforms for example then to combine set below parameters

IF l_sf_no = 1 .
wa_control_parameters-no_open = space.
wa_control_parameters-no_close = 'X'.

ELSEIF l_sf_no > 1.
wa_control_parameters-no_open = 'X'.
wa_control_parameters-no_close = 'X'.

ELSEIF l_sf_no = 5 .
wa_control_parameters-no_open = 'X'.
wa_control_parameters-no_close = space.

ENDIF.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi Satya...look at FM Start_form and End_form.....hope this is of help. Look at their Documentation on how to use.

Former Member
0 Kudos


Hi,

Thanks for the response but my requirement is for smartforms,
start_form and close_form won't work for smartforms for my requirement.

If any other solutions for my query above,Please respond.

Thanks,
Satya.

0 Kudos

HI Satya....see following topic...http://scn.sap.com/thread/107682

Should be of help.

Albert

Former Member
0 Kudos

Hi John,

I tried this one but its not working, any more inputs on this one.

Thanks,
Satya.