cancel
Showing results for 
Search instead for 
Did you mean: 

Printing Summary

0 Kudos

Hi Experts,

I have a requirement, in which the existing script I've to add the summary page in the end. Can you guide me how to print new layout in the existing script. Can we use start_form function, if so plz explain .

Thanks in advance.

Ramachandran

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

Use control_form to display the summary page.

call open_form.

loop at itab into fs.

call write_form.

at end.

call control_form( pass the page name here)

endat.

endloop.

call close_form.

0 Kudos

Thanks for your prompt reply.

Can you explain on which parameter we can pass the page name ?

details on Control_Form Function.

Former Member
0 Kudos

Hi,

If you want your summary on new-page , pass new-page to command parameter of control_form.

OR u can follow this.

call open_form.( pass ur form name)

call start_form ( pass startpage name in startpage parameter)

call write_form

call end_form

call start_form( pass summarypage name in startpage parameter)

call write_form

call end_form

call close_form

Give conditions for printing summary page if required

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, Create a New Page called SUMM and create a window in it with your requirements and

call function 'START_FORM'

exporting

startpage = 'SUMM''.

call function 'WRITE_FORM'

exporting

window = 'SUMMARY'

element = '520'.

surya