Thanks Divyanshu for your Guidance following are the dump facing after run database connection test program ADBC_TEST_CONNECTION
Category | ABAP Programming Error |
Runtime Errors | CONVT_CODEPAGE |
Except. | CX_SY_CONVERSION_CODEPAGE |
ABAP Program | SAPLSDEB |
Application Component BC-CST-LL
Date and Time | 23.06.2014 09:02:40 |
Short Text
A character set conversion is not possible. |
What happened?
During conversion of a text from code page '4110' to code page '4102', | |
one of the following occurred: | |
- characters were discovered that cannot be dislpayed in one of the | |
code pages, or | |
- the conversion could not be performed for some other reason (see | |
below for more details) |
Excerpt from the source buffer from the first character that could not | |
be converted, displayed in hexadecimal form (with the ASCII characters | |
in brackets): | |
A4 3F 2E 00 00 00 00 00 00 00 00 00 00 00 00 00 (.?..............) |
The current ABAP program "SAPLSDEB" had to be terminated, as this conversion | |
would have resulted in incorrect data. |
The number of non-convertible characters is 11. If this number is 0, | |
the second reason stated above applies. |
Error analysis
An exception has occurred which is explained in more detail below. The | |
exception is assigned to class 'CX_SY_CONVERSION_CODEPAGE' and was not caught | |
in procedure | |
"READ_TRACE_FILE" "(FORM)", nor was it propagated by a RAISING clause. |
Since the caller of the procedure could not have anticipated this
exception, the current program was terminated.
The reason for the exception is:
Characters are always displayed in a specific code page. Many code
pages only define a restricted set of characters. If you want to
convert text from one code page to another, and this text contains
characters that which are not defined in one of these code pages, a
conversion error occurs.
A conversion error like this can also occur if one of the code pages
required ('4110' or '4102') is not known in the system.
If the conversion error occurred while reading or writing a file, the
file name was '/usr/sap/DEV/DVEBMGS00/work'. (For more information on this
file: "X | 130 |
12288rwxr-xr-x201406230902402014062309024020140623090240")
Regards