cancel
Showing results for 
Search instead for 
Did you mean: 

FUNCTIONS USAGE

Former Member
0 Kudos

what is use of the functions in sapscript,pls explain in detail

OPEN_FORM

WRITE_FORM

CLOSE_FORM

START_FORM

END_FORM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

OPEN_FORM

SAPscript: Open form printing

The module OPEN_FORM opens layout set printing. This function must be called up before you can work with other layout set functions (WRITE_FORM, ...).

It is not obligatory to enter a layout set name to open it. If a layout set is not specified, one must be opened with START_FORM.

WRITE_FORM

SAPscript: Output text element in form window

The specified element of the layout set window entered is output. The element must be defined in the layout set.

CLOSE_FORM

SAPscript: End layout set printing

Form printing started with OPEN_FORM is completed. Possible closing operations on the form last opened are carried out.

Form printing must be completed by this function module. If this is not carried out, nothing is printed or displayed on the screen.

START_FORM

SAPscript: Start a form

The layout set can be changed in the current print procedure with START_FORM. It is therefore possible to combine several different layout sets in one printer output. Before a new layout set is opened with START_FORM, an open layout set must be closed with END_FORM.

END_FORM

SAPscript: Terminate a form

Closes the current layout set. Final operations required on this layout set are carried out.

CAUTION: END_FORM is not a replacement for CLOSE_FORM.

Reward if u find it useful

Sap Surfer