
END_FORM ends the currently open form and executes the required termination processing. After calling this function module, no more form is active. For further output, you must start a new form using START_FORM.
END_FORM does not replace CLOSE_FORM, that is, you must always close any SAPscript output using CLOSE_FORM.
Function call:
CALL FUNCTION 'END_FORM' IMPORTING RESULT = EXCEPTIONS UNOPENED =
Import parameter:
|
RESULT |
The parameter contains results of the print formatting process. By comparing the corresponding fields of parameter OPTIONS with those of parameter RESULT, you can determine whether the user made changes to any settings on the print control screen. Structure: ITCPP |
Exceptions:
|
UNOPENED |
The current form function could not be executed as the form output was not initialized with OPEN_FORM. |