Entering content frameSyntax documentation screen_update Locate the document in its SAP Library structure

Use this method to determine whether the spreadsheet display should be updatead after each step. By switching off the screen update when you execute a whole set of method calls, you can improve the performance of your application.

Note

Some methods have their own UPDATING parameter, which also controls whether the display is updated. This parameter will override the global setting that you make using SCREEN_UPDATE.

CALL METHOD spreadsheet->screen_update
       EXPORTING updating = updating
                 no_flush = no_flush
       IMPORTING error    = error
                 retcode  = retcode.

Description of parameters

Parameter

Optional

Description

updating

 

Flag to specify whether the screen display should be updated. Possible values:

' ' : Do not update

'X' : Update

 

 

 

Leaving content frame