cancel
Showing results for 
Search instead for 
Did you mean: 

Short dump CONVT_CODEPAGE in transaction I18N

Former Member
0 Kudos

Hi,

I'm trying to install the french language into a Solution Manage 4.0 system.

SQL Server 2005 database + Windows 2003 X64

When I run I18N > I18N Menu > I18N Customizing > I18N System Configuration in order to activate french I have a dump (more details bellow).

Same error when I try to run report RSCPINST.

I'm running out of idea, I'm unable to find a way to solve this issue, anybody can help me ?

Thanks in advance,

V.Ch.

Short dump long text :

Runtime Errors CONVT_CODEPAGE

Except. CX_SY_CONVERSION_CODEPAGE

Date and Time 21.01.2008 22:02:16

-


-


Short text

A character set conversion is not possible.

-


-


What happened?

At the conversion of a text from codepage '4110' to codepage '4103':

- a character was found that cannot be displayed in one of the two

codepages;

- or it was detected that this conversion is not supported

The running ABAP program 'SAPLSCP2' had to be terminated as the conversion

would have produced incorrect data.

The number of characters that could not be displayed (and therefore not

be converted), is 1. If this number is 0, the second error case, as

mentioned above, has occurred.

-


-


Error analysis

An exception occurred that is explained in detail below.

The exception, which is assigned to class 'CX_SY_CONVERSION_CODEPAGE', was not

caught in

procedure "CHECK_PROFILE" "(FORM)", nor was it propagated by a RAISING clause.

Since the caller of the procedure could not have anticipated that the

exception would occur, the current program is terminated.

The reason for the exception is:

Characters are always displayed in only a certain codepage. Many

codepages only define a limited set of characters. If a text from a

codepage should be converted into another codepage, and if this text

contains characters that are not defined in one of the two codepages, a

conversion error occurs.

Moreover, a conversion error can occur if one of the needed codepages

'4110' or '4103' is not known to the system.

If the conversion error occurred at read or write of screen, the file

name was 'G:\usr\sap\L1D\SYS\profile\DEFAULT.PFL'. (further information about

the file: "X 2673")

-


-


Missing RAISING Clause in Interface

Program SAPLSCP2

Include LSCP2U23

Row 103

Module type (FORM)

Module Name CHECK_PROFILE

-


-


Trigger Location of Exception

Program SAPLSCP2

Include LSCP2U23

Row 142

Module type (FORM)

Module Name CHECK_PROFILE

-


-


Source Code Extract

-


Line

SourceCde

-


112

fname = a_profilefilename.

113

parname = a_parname.

114

115

open dataset fname for input in text mode encoding default.

116

do.

117

read dataset fname into rec1.

118

if sy-subrc <> 0.

119

if sy-subrc = 8.

120

rec3 = 'OpenErr'.

121

exit.

122

elseif sy-subrc = 4.

123

rec3 = 'NotIn'.

124

exit.

125

else.

126

rec3 = 'rcNot0.'.

127

exit.

128

endif.

129

else.

130

if rec1 np '##*' and

131

rec1 cs parname.

132

rec3 = rec1.

133

exit.

134

endif.

135

endif.

136

enddo.

137

close dataset fname.

138

139

fname = a_defaultfilename.

140

open dataset fname for input in text mode encoding default.

141

do.

>>>>>

read dataset fname into rec1.

143

if sy-subrc <> 0.

144

if sy-subrc = 8.

145

rec2 = 'OpenErr'.

146

exit.

147

elseif sy-subrc = 4.

148

rec2 = 'NotIn'.

149

exit.

150

else.

151

rec2 = 'rcNot0.'.

152

exit.

153

endif.

154

else.

155

if rec1 np '##*' and

156

rec1 cs parname.

157

rec2 = rec1.

158

exit.

159

endif.

160

endif.

161

enddo.

-


Accepted Solutions (0)

Answers (2)

Answers (2)

raguraman_c
Active Contributor
0 Kudos

Hi,

Check [this note.|Note 990971 - Error in character conversion:CX_SY_CONVERSION_CODEPAGE dump] This will solve your problem.

Feel free to revert back.

--Ragu

Former Member
0 Kudos

Hello Vincent,

I have the same problem.

Have you find a solution for this problem?

Kind Regards,

Mischa