Entering content framepaste_special Locate the document in its SAP Library structure

You use this method to call the dialog box for inserting the contents of the clipboard in the office document

CALL METHOD document->paste_special
     EXPORTING prompt_user = prompt_user
               no_flush    = no_flush
     IMPORTING error       = error
               retcode     = retcode.

Description of parameters

Parameter

Optional

Description

prompt_user

X

Flags whether the method should call the corresponding dialog box in the office application when it is executed.

Note

This method should only be executed when the user responds to the dialog box in the office application. Otherwise, only fixed values and not links will be inserted in the document.

Leaving content frame