‎2008 May 23 10:33 AM
Hi ,
I am opening word document using container method.
I type some text in that word document.
Once i save that document control comes to the Abap screen
from where i had called that container.
I want the text typed in the word document to load into to the
internal table.
Can any please tell me which method to be used or provide
me some example code .
Thanks in advance.
Thanks & regards,
Chetan
‎2008 Jun 04 11:24 AM
Try method,
CALL METHOD DOCUMENT-SAVE_DOCUMENT_TO_TABLE
IMPORTING
RETCODE = RETCODE
CHANGING
DOCUMENT_TABLE = DATA_TABLE
DOCUMENT_SIZE = DATA_SIZE.
Venkat.
‎2008 Jun 04 11:26 AM
Refer to this interface u may get some more info.
I_OI_DOCUMENT_PROXY
Venkat.