parameters: p_rqid type TSP01-RQIDENT.
DATA: MEM_TAB LIKE ABAPLIST OCCURS 10.
DATA: HTML_TAB LIKE w3html OCCURS 10.
SUBMIT RSPOLIST EXPORTING LIST TO MEMORY AND RETURN
WITH RQIDENT = p_RQID
WITH FIRST = '1'
WITH LAST = '0'.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
LISTOBJECT = MEM_TAB
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2.
CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
TABLES
HTML = HTML_TAB
LISTOBJECT = mem_tab.
Basically, run RSPOLIST to get the list to memory, extract the list, and then call the function to generate HTML.
refer this link.
Hi,
Use
call function 'WWW_HTML_FROM_LISTOBJECT' exporting template_name = 'WEBREPORTING_REPORT' tables html = html_tab listobject = itab.
a®
Hi,
Try with this:
CALL FUNCTION 'GUI_RUN'
EXPORTING
command ='IEXPLORE.EXE'
PARAMETER ='C:\Documents and Settings\bhaskarch\Desktop\abc.doc'.
<b>Note:</b>In parameter you give the text file path.
Regards,
Bhaskar
Add a comment