Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

function of sap script

Former Member
0 Likes
420

what is the function of open_form , start_form , write_form ,end_form , close_form ?

2 REPLIES 2
Read only

Former Member
0 Likes
394

Hi,

start_form is used when you have multiple scripts (forms) to be printed in one output. It can be called many times and closed by close_form.

open_form opens the form for printing (called only once) and should be closed with end_form.

For more information, please check this link.

http://help.sap.com/saphelp_nw04/helpdata/en/d6/0db8bb494511d182b70000e829fbfe/frameset.htm

Regards,

Ferry Lianto

Read only

amit_khare
Active Contributor
0 Likes
394

Hi,

Open_form => It assign the form and printer, It should be first.

Start_form => It start Writing mode. You can use write_form in loop to write more than one lines befor End_form.

End_form => It end writing mode of current page and will require to start again through Start_form.

Close_form=> it end the Form. After this you can not start again for created file.

Regards,

Amit

reward all helpful replies.