Hi Friends,
i gonna mad by applying all notes related to this error but still i am not getting the abap report as bsp application, the notes i applied manualy are listed below
834521
849287
851753
853589
Runtime Error:
Bsp code used
On Create
this handler is called once the page is first created (stateful mode)
it performs a once-off data initialization or object creation
data: listobject type table of abaplist. " occurs 10.
data: report_name type syrepid.
data: output_str type string.
submit ZTEST_YOGESH
using selection-set 'TEST' and return
exporting list to memory .
call function 'LIST_FROM_MEMORY'
tables
listobject = listobject
exceptions
not_found = 1
others = 2.
try.
call function 'WWW_HTML_FROM_LISTOBJECT'
exporting
template_name = 'WEBREPORTING_REPORT'
tables
html = html
listobject = listobject.
CATCH cx_sy_conversion_codepage.
ENDTRY.
+
Layout+
<%@page language="abap"%>
<% data: html_wa type w3html.
clear: html_wa . %>
<% loop at html into html_wa. %>
<%= html_wa %>
<% endloop. %>
could any one give me any light on this, your help would be greatly apreciated.
Thanks
Message was edited by: Murugadass Krishnan