I'm using this method to transfer a internal table to word document.....it's all ok....but i need my word table with frame....i don`t know how do it....the method has a tabla parameters called properties but i don´t know how to use it......
DATA: properties TYPE TABLE OF dpprops WITH HEADER LINE.
properties-propname = 'BORDERS'.
properties-propval = '1'.
APPEND properties.
CALL METHOD link_server->add_table_item2
EXPORTING
item_name = 'T001'
CHANGING
data_table = t001[]
fields_table = fields_table[]
properties = properties[].
Any idea?