cancel
Showing results for 
Search instead for 
Did you mean: 

Continue with next page in smartfroms

Former Member
0 Kudos

Hi experts,

i ma doing one smartfrom with windows like window1 , Main window,Footer window..in Main window i have a table

if the table having 3 line items it is coming fine..suppose i have 100 line items..we con't display 100 items in a table..so we need to extend page..so it should extend to next pages up to 100 items then footer window should come..how can i achive this...

i ma new to smartfrom..can any body plzz help me out?

Thanks in advance

veena...

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Veena,

Quite an easy solution... In teh footer text element..Go to the conditions tab and tick on "Only after end of main window"...

Your prob should eb solved!

Cheers,

Varna

Former Member
0 Kudos

Hi varna,

Thanks a lot...solved..

Former Member
0 Kudos

hi Varna,

I have a custom print program & a custom smart form.

The Smartform is 4 pages long. 1 first page & 3 next pages.

Rt now when I test, only the 1st page is coming out. Do I need to set up anything in the print program so it all the 4 pages are printed.

Which parameter controls this?

Is it controlled in the control_parameters or output_options in the FM given below.

**********************

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = p_form

IMPORTING

fm_name = w_fm

EXCEPTIONS

no_form = 1

no_function_module = 2

OTHERS = 3.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

  • now call the generated function module

CALL FUNCTION w_fm

EXPORTING

user_settings = 'X'

archive_index = toa_dara

  • ARCHIVE_INDEX_TAB =

archive_parameters = arc_params

control_parameters = ls_control_param

output_options = ls_composer_param

  • TABLES

  • itab = t_itab

EXCEPTIONS

formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

OTHERS = 5.

**************************

rdgs

prasad

Answers (0)