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

You use this method to create a link to an entry in the link server and store the link in the clipboard of the presentation server. Use the insert function to transfer this link to the open document in the office application. In this way, you can integrate both the fixed value and the link to the object in the document.

CALL METHOD link_server->copy_link_item_to_clipboard
     EXPORTING item_name    = item_name
               no_flush     = no_flush
     IMPORTING error        = error
               retcode      = retcode.

Description of parameters

Parameter

Optional

Description

item_name

 

Technical name of the object to which a link is to be placed on the clipboard

Note

The user can create links to individual cells, columns, or rows of tables using the following additions:

RnCm: Selets the cell with row number n and column number m.

RnC$Name: Selects the cell with the line number n in column ‘name’

R0Cm: Selects an entire column with column number m.

R0C$Name: Selects an entire column with the name ‘name’.

RnC0: Selects an entire row with row number n.

Note

Refer to the notes under the method add_table_item2 about specifying column names.

Leaving content frame