Skip to Content
0
Former Member
Sep 28, 2005 at 01:29 PM

An exception with the type CX_SY_CONVERSION_CODEPAGE occurred

139 Views

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:


+Business Server Page (BSP) error


What happened?
Calling the BSP page was terminated due to an error.


SAP Note

The following error text was processed in the system:
An exception with the type CX_SY_CONVERSION_CODEPAGE occurred, but was neither handled locally, nor declared in a RAISING clause


Exception Class CX_SY_CONVERSION_CODEPAGE
Error Name CONVT_CODEPAGE
Program SAPLSURL
Include LSURLF01
Line 309
Long text Bei der Zeichensatzkonvertierung wurde entweder ein Zeichen entdeckt, welches in einer der Codepages nicht dargestellt werden kann, oder festgestellt, daß diese Konvertierung nicht unterstützt wird.


Error type: Exception

Your SAP Business Server Pages Team+



i am using
Component version SRM 4.0 ( SRM Server 5.0 )
SAP_BASIS 640 ( highest support - SAPKB64011 )
SAP_ABA 640 ( highest support - SAPKA64011 )
Unicode system - Yes

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