CONVT_CODEPAGE, CX_SY_CONVERSION_CODEPAGE

A character set conversion is not possible.
At the conversion of a text from codepage '4110' to codepage '4102':
- 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 'ZXXXXXXX' 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 2. If this number is 0, the second error case, as
mentioned above, has occurred.

Hi,
I have also come across this error when i was trying to upload a cProject form cProject 3.1 to cProject 4.0.
as mentioned by you, Where do we make these changes and how?
Can you pleas let me know the steps involved.
Thanks in advance
Amit
[email protected]

Similar Messages

  • Error converting XSTRING to STRING (unicode, codepage)

    Hi all,
    I have a problem converting data from an external file into SAP.
    The file is uploaded via an application created in web dynpro, where I use the upload functionality. This returns the file in the XSTRING format, and  then use the following to convert (where l_xstring is the file and l_string is how I want the file):
      l_string TYPE string,
      l_xstring TYPE xstring,
      convt = cl_abap_conv_in_ce=>create( input = l_xstring ).
      convt->read( IMPORTING data = l_string ).
    This worked perfectly - until I recieved a file containing russian characters
    The SAP system (BI) is in Unicode, so this should be ok.
    I get a:
    CONVT_CODEPAGE
    CX_SY_CONVERSION_CODEPAGE
    Error, when trying to run it.
    Also the following migth be helpful:
    At the conversion of a text from codepage '4110' to codepage '4102':
    - 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 'CL_ABAP_CONV_IN_CE============CP' 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 18141. If this number is 0, the second error case, as
    mentioned above, has occurred.
    I have tried setting the codepage parameter of the READ method, but to no success.
    Anyone ??
    -Tonni

    Friend,
    Call the FM like below....
    CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
      EXPORTING
        IM_XSTRING        = x
       IM_ENCODING       = 'UTF-8'
    IMPORTING
       EX_STRING         = x.

  • Conversion error in RSTXLITF

    hello all,
    I want to migrate order long texts with program RSTXLITF
    from SAP 4.6C (code page 1100) to ERP 6.0 (code page 4110?)
    but I got dump CONVT_CODEPAGE -
    CX_SY_CONVERSION_CODEPAGE
    how must we fill the parameters???
    Dataset name                                               /home/usr/file_4711
    Test import without saving        X
    Overwrite existing objects
    Print statistics
    Character set no. (code page)
    Only character set conversion
    warm regards
    Andreas

    that wasn't successful....
    anyone who has knowledge with this prg. in ERP 6.0?
    A.

  • Error on line read dataset p_zfile into it_int

    hi while executing this below code..
    open dataset p_zfile for input in text mode ENCODING DEFAULT.
        if sy-subrc = 0.
          v_one = 1.
          do.
            v_no = v_no + 1.
         *read dataset pzfile  into it_record*_ this is giving short dump as below
    code to read file
    end do
    short dump
    the following error is being prompted
    CONVT_CODEPAGE
    CX_SY_CONVERSION_CODEPAGE
    A character set conversion is not possible.
    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
    where
    it_record is type infile_struct,
    and infile_struct is as below
    types: begin of infile_struct,
            data(1150)           type c,
           end of infile_struct.
    and p_zfile is used in fm call file_get_nam
    please suggest this code is working fine in 4.6 c not upgraded to SAP ECC 6.0 this error is occuring in the code
    regarda
    arora

    here is code
    open dataset p_infile for input in text mode ENCODING DEFAULT.
    f sy-subrc = 0.
          v_one = 1.
          do.
            v_no = v_no + 1.
            read dataset p_infile into in_record.        if sy-subrc = 0. here dump is occuring at last record i deleted the last record in the file but again the dump comes on last record only when all records are read and finally when the cursor come to read dataset statement last time
              if v_no <> v_one.
                split in_record at v_tab into wa_record-idno
                                              wa_record-stonumber
                                              wa_record-stolineno
                                              wa_record-sched_line
                                              wa_record-pur_group
                                              wa_record-frmplant
                                              wa_record-frmstglocatin
                                              wa_record-toplant
                                              wa_record-tostglocation
                                              wa_record-material
                                              wa_record-matdesc
                                              wa_record-quantity
                                              wa_record-dockdate
                                              wa_record-splinst1
                                              wa_record-splinst2
                                              wa_record-splinst3
                                              wa_record-splinst4
                                              wa_record-delete
                                              wa_record-block.

  • Error is "CONVT_CODEPAGE" and exception is "CX_SY_CONVERSION_CODEPAGE"

    Dear experts,
    How are you?
    The runtime error was occured as follows :
    1) Error : CONVT_CODEPAGE
    2) Exception : CX_SY_CONVERSION_CODEPAGE
    3) System Environment : R/3 470*110, non-unicode system
    4) Transaction : PA20
        Language Key : 3
        Program : CL_ABAP_CONV_IN_CE======CP
    5) Source code extract :
    000280         raise exception type cx_parameter_invalid_type
    000290           exporting parameter = paramstr type = typestr.
    000300       endif.
    000310     when 'C'.
    000320       len = strlen( uccp ).
    000330       if len <> 4.
    000340         paramstr = 'UCCP'.
    000350         typestr = len.
    000360         shift typestr right.
    000370         concatenate 'C(' typestr ')' into typestr.
    000380         raise exception type cx_parameter_invalid_type
    000390           exporting parameter = paramstr type = typestr.
    000400       endif.
    000410     when 'g'.
    000420       len = strlen( uccp ).
    000430       if len <> 4.
    000440         paramstr = 'UCCP'.
    000450         typestr = len.
    000460         shift typestr right.
    000470         concatenate 'STRING(' typestr ')' into typestr.
    000480         raise exception type cx_parameter_invalid_type
    000490           exporting parameter = paramstr type = typestr.
    000500       endif.
    000510     when others.
    000520       paramstr = 'UCCP'.
    000530       typestr = t.
    000540       raise exception type cx_parameter_invalid_type
    000550         exporting parameter = paramstr type = typestr.
    000560     endcase.
    000570     x = uccp.
         >     SYSTEM-CALL CONVERT ID 41
    000590                                          " EXPORTING
    000600       BUFFER x
    000610                                          " IMPORTING
    000620       DATA char
    000630                                          " CHANGING
    000640       CINFO cl_abap_conv_in_ce=>uccp_cinfo.
    000650   ENDMETHOD.
    I referenced the notes 864789,865885, and 832232.
    But I couldn't resolve it.
    Would you please help me?
    Thanks.
    Regards,
    Soyeon Rhee

    Dear Prashant,
    Thank you for your advice.
    The source code is as follows:
    Source code extract
    000280         raise exception type cx_parameter_invalid_type
    000290           exporting parameter = paramstr type = typestr.
    000300       endif.
    000310     when 'C'.
    000320       len = strlen( uccp ).
    000330       if len <> 4.
    000340         paramstr = 'UCCP'.
    000350         typestr = len.
    000360         shift typestr right.
    000370         concatenate 'C(' typestr ')' into typestr.
    000380         raise exception type cx_parameter_invalid_type
    000390           exporting parameter = paramstr type = typestr.
    000400       endif.
    000410     when 'g'.
    000420       len = strlen( uccp ).
    000430       if len <> 4.
    000440         paramstr = 'UCCP'.
    000450         typestr = len.
    000460         shift typestr right.
    000470         concatenate 'STRING(' typestr ')' into typestr.
    000480         raise exception type cx_parameter_invalid_type
    000490           exporting parameter = paramstr type = typestr.
    000500       endif.
    000510     when others.
    000520       paramstr = 'UCCP'.
    000530       typestr = t.
    000540       raise exception type cx_parameter_invalid_type
    000550         exporting parameter = paramstr type = typestr.
    000560     endcase.
    000570     x = uccp.
    >     SYSTEM-CALL CONVERT ID 41
    000590                                          " EXPORTING
    000600       BUFFER x
    000610                                          " IMPORTING
    000620       DATA char
    000630                                          " CHANGING
    000640       CINFO cl_abap_conv_in_ce=>uccp_cinfo.
    000650   ENDMETHOD.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 5                             SY-DBCNT 0
    SY-FDPOS 5                             SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY
    SY-UCOMM BACK                          SY-TITLE &#54532;&#47196;&#44536;&#47016; OM_START
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
        13 METHOD       UCCP
           CL_ABAP_CONV_IN_CE============CP
           CL_ABAP_CONV_IN_CE============CM003         58
           CL_ABAP_CONV_IN_CE
        12 METHOD       GET_UCCP_PREFIX_CONSTANTS
           CL_HROM_KEY_GENERATOR=========CP
           CL_HROM_KEY_GENERATOR=========CM00C         13
           CL_HROM_KEY_GENERATOR
        11 METHOD       CHECK_ARRAYTYPE_PREFIX
           CL_HROM_KEY_GENERATOR=========CP
           CL_HROM_KEY_GENERATOR=========CM007         17
           CL_HROM_KEY_GENERATOR
        10 METHOD       DELETE_DYN_ARRAYTYPE
           CL_HROM_KEY_GENERATOR=========CP
           CL_HROM_KEY_GENERATOR=========CM005         17
           CL_HROM_KEY_GENERATOR
         9 METHOD       DELETE_ONE_QUERY
           CL_HR_ST_COLUMNS_BASE=========CP
           CL_HR_ST_COLUMNS_BASE=========CM00L         17
           CL_HR_ST_COLUMNS_BASE
         8 METHOD       DELETE_ONE_SELECTION
           CL_HR_ST_ADHOC_SELECTION======CP
           CL_HR_ST_ADHOC_SELECTION======CM006         28
           CL_HR_ST_ADHOC_SELECTION
         7 METHOD       CLEAN_UP
           CL_HR_ST_ADHOC_SELECTION======CP
           CL_HR_ST_ADHOC_SELECTION======CM001         74
           CL_HR_ST_ADHOC_SELECTION
         6 METHOD       IF_HR_SEARCHTOOL_FAVORITES~END_OF_OBJECTMANAGER
           CL_HR_ST_ADHOC_SELECTION======CP
           CL_HR_ST_ADHOC_SELECTION======CM00D          6
           CL_HR_ST_ADHOC_SELECTION
         5 METHOD       DESTROY
           CL_HR_OBJECTMANAGER===========CP
           CL_HR_OBJECTMANAGER===========CM002         76
           CL_HR_OBJECTMANAGER
         4 FUNCTION     NF_GM_CALL_OBJMAN_FUNCTION
           SAPLOM_NAVFRAMEWORK_OO_OBJ
           LOM_NAVFRAMEWORK_OO_OBJU10                  72
         3 FORM         EM_EVENT_TO_CURRENT_OBJECTS
           SAPLOM_NAVFRAMEWORK_OO_OBJ
           LOM_NAVFRAMEWORK_OO_OBJF03                 171
         2 FUNCTION     NF_GM_CREATE
           SAPLOM_NAVFRAMEWORK_OO_OBJ
           LOM_NAVFRAMEWORK_OO_OBJU12                 292
         1 EVENT        START-OF-SELECTION
           OM_START_NF
           OM_START_NF                                 19
    I appreciate your help.
    Best regards,
    Soyeon Rhee

  • CONVT_CODEPAGE errror

    I have a program which generates a flat file to be FTPed to another Unix Server from SAP. In this file if there are Non-English characters then they are not being interpreted properly at Unix Level. For Example :
    There is a MATNR in MARA as 'FORFAIT RÉPARATION'. I have highlighted the character in question as BOLD & ITALIC.
    This material is transferred to the flat file, when you open this file in AL11 on SAP Screen, it shows you the MATNR as above 'FORFAIT RÉPARATION'.
    But when you logon to SAP at Unix Level, same material is displayed as 'FORFAIT RÃPARATION'.
    Since at Unix Level MATNR name is 'FORFAIT RÃPARATION', it will remain same when FTPed to another Unix Server and thats wrong
    I am using following statement in my program to OPEN the file.
    open dataset pa_file for output in text mode encoding default => Program behaves like above
    open dataset pa_file for output in text mode encoding non-unicode . => it gives a dump, and in the output non-english characters are replaced by '#'.
    Our SAP is ECC 6.0 and similar behaviour is observed for characters like
    Ü
    Á
    ÿ
    Any thoughts/ideas how to resolve it ?

    Hi Rohan
    Check these notes :
    Note 547308 - Shortdump CONVT_CODEPAGE when displaying measure
    Note 752835 - Usage of the file interfaces in Unicode systems
    Note 1057289 - Reasons for CX_SY_CONVERSION_CODEPAGE / CONVT_CODEPAGE
    Note 853665 - LSMW: Dump occurs when file imported from application server

  • ABAP dump CONVT_CODEPAGE in ECC 6.0

    Hi,
    In ECC 6.0 the following error is coming while reading data from Unix file.
    <b>Runtime Errors         CONVT_CODEPAGE
    Except.                CX_SY_CONVERSION_CODEPAGE
    The termination is caused because exception "CX_SY_CONVERSION_CODEPAGE"
    occurred in
    procedure "GET_DATA_FROM_UXFILE" "(FORM)", but it was neither handled locally
    nor declared
    in the RAISING clause of its signature.</b>
    The program logic for opening dataset and reading is as shown below, dump is coming while reading dataset.
      OPEN DATASET INFILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      DO.
        READ DATASET INFILE INTO WA_workarea .
      ENDDO.
    Do we need to change the read command to avoid this dump in ECC 6.0?
    Thanks,
    Sreedevi

    I think syntax Open dataset option ENCODING DEFAULT in unicode system expects a file in UTF-8 encoding.
    It's dumping because read dataset failed to convert a character in the fil to UTF-16.
    You need to convert to UTF-16 before transfer
    try.
        call method cl_abap_conv_in_ce=>create
          exporting
            encoding    = gv_encoding
            endian      = gv_endian
            replacement = '#'
          receiving
            conv        = conv_obj.
        call method conv_obj->convert
          exporting
            input = gv_xstr
            n     = -1
          importing
            data  = gv_str.
      catch cx_root.
        message 'Error during conversion' type 'E'.
    endtry.
    aRs

  • An exception with the type CX_SY_CONVERSION_CODEPAGE occurred

    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

    Hi,
    Pls don't forget to reward points and close the question if you find the answers useful.
    Eddy

  • CONVT_CODEPAGE : Abap Dump while using Transfer statment

    Hi,
    I am getting an abap dumb CONVT_CODEPAGE when the program is executed.
    It is encountered at the Transfer statement.
    The file is opened in legacy text mode.
    So i assume come characters in the file are not being interpretated using the existing system codepage,thus the dump.
    Pls let me know if my analysis is incorrect.
    Can anyone provide me with a workaround ?
    Answers will be rewarded.
    - Rohan

    Hi Rohan
    Check these notes :
    Note 547308 - Shortdump CONVT_CODEPAGE when displaying measure
    Note 752835 - Usage of the file interfaces in Unicode systems
    Note 1057289 - Reasons for CX_SY_CONVERSION_CODEPAGE / CONVT_CODEPAGE
    Note 853665 - LSMW: Dump occurs when file imported from application server

  • CONVT_CODEPAGE  error in DATASET Statement

    Hi All,
    I have used the statement in my custom program scheduled as background
    OPEN DATASET strtemp FOR INPUT ENCODING DEFAULT IN TEXT MODE.
    It resulted in the cancellation of the job
    The rror is ABAP/4 processor: CONVT_CODEPAGE
    Detailed error description:
    Runtime Errors         CONVT_CODEPAGE
    Except.                CX_SY_CONVERSION_CODEPAGE
    Date and Time          11.11.2010 18:05:18
    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 'ZJSHE000' 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 7. If this number is 0, the second error case, as
         mentioned above, has occurred.
    Please help to resolve the issue. The file comes from an EDI system and places in App server.
    The SAP system is unicode enabled.Why this error and how can we reolve this.
    Regards.

    maybe you should use other parameter when doing the open dataset
    instead of OPEN DATASET filename FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    try:
    OPEN DATASET filename FOR INPUT
        IN legacy TEXT MODE
        code page codepage.
    have you searched OSS with the keywords supplied in the note?

  • Short dump CONVT_CODEPAGE in transaction I18N

    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.

    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

  • Shortdump on File upload from unix and CX_SY_CONVERSION_CODEPAGE

    Hi,
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_CONVERSION_CODEPAGE', was no
    caught in
    procedure "OPEN_INPUT_FILE" "(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 '4102' is not known to the system.
    Example: µ is creating problems.
    I have a problem in uploading the file with below format
    F091US122580164           PECOSPHERE C18,3µm,33X4.6MM
    1. I am using a custom program to read the file and then updating internal table
    2. Unicode code system
    Please help to resolve this issue.
    Thanks and Regards,
    Raveendra

    Hi Raveendra,
    Similar problem is faced by me in my current project. The solutions I have suggested are as below. I have not received any confirmation as to which solution to be applied.
    To avoid the dump:
    1. Read the file as a NON UNICODE file.
         -- For this we use open dataset statement as OPEN DATASET <name> IN TEXT MODE FOR INPUT ENCODING NON-UNICODE. The file is read as a non-Unicode file. This avoids the dump but it uploads also the non Unicode data in the system. We need to analyse if this will cause any other effect on the system.
    2. Upload file after removing the special characters
         -- We need to upload the file again in the application server after removing the special characters in it.
    3. Bypass the dump by displaying error message
         -- By using OPEN DATASET........IGNORING CONVERSION ERROR, we can suppress the dump. Here the file is not         read but only the dump is suppressed.
    regards,
    Gaurav

  • Exception 'CX_SY_CONVERSION_CODEPAGE '

    Hi friends,
    In one of my bank transfer report i'm getting the runtime error CONVT_CODE_PAGE with the exception
    CX_SY_CONVERSION_CODEPAGE.I don't what is the reason for this dump and how to correct it.So can anyone of u provide me help on this.
    I'm attaching the detailed description of the dump below.
    Short text
        A character set conversion is not possible.
    What happened?
        At the conversion of a text from codepage '4103' to codepage '1100':
        - 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 'ZFFOCN_A' 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 2. If this number is 0, the second error case, as
        mentioned above, has occurred.
    Thanks in advance,
    Vadivel.

    Hi Eshwar,
    I have posted the code below:
    FORM DATEI_OEFFNEN                                                   *
    die jeweilige Datei (TemSe/File) öffnen                              *
    open current file (either in TemSe or file-system)                   *
    FORM datei_oeffnen.
      IF hlp_temse CA par_dtyp.            "TemSe-Format
        PERFORM temse_oeffnen.
      ELSE.                                "disk-/tape-fmt on file-system
        PERFORM naechster_index USING hlp_renum.
        PERFORM fuellen_regut USING *regut-dtkey.
        ADD 1 TO cnt_filenr.
        hlp_filename    = par_unix.
        hlp_filename+45 = cnt_filenr.
        CONDENSE hlp_filename NO-GAPS.
        DATA i TYPE i.
        i = cl_abap_char_utilities=>charsize.
        IF i = 1.
          OPEN DATASET hlp_filename IN BINARY MODE FOR OUTPUT.
        ELSE.  " unicode system
          OPEN DATASET hlp_filename IN LEGACY BINARY MODE FOR OUTPUT.
        ENDIF.
        IF sy-subrc NE 0.
          IF sy-batch EQ space.
            MESSAGE a182(fr) WITH hlp_filename.
          ELSE.
            MESSAGE s182(fr) WITH hlp_filename.
            STOP.
          ENDIF.
        ENDIF.
      ENDIF.
    Regards,
    Vadivel

  • LOAD_PROGRAM_LOST and  CONVT_CODEPAGE

    Hi Guys! Need very urgent help , may be someone knows this.
    In today our Prod. server has gone mad . In sm21 and st22 are many dumps(> 1000 , and new every 3-5 second) and errors like :
    LOAD_PROGRAM_LOST and  CONVT_CODEPAGE.  From users side the T-codes are reset
    "The program is changed during performance" (i'm see on russian language,It is a literal translation as I shall see in English I shall tell literally). Any help is rewarded. Regards.

    Hi Juan Reyes.
    Yesterday i can't replay to you, the unknow error are on my browser................
    Yes trasport are imported, also the Prepare are start (befor we start Prepare and all ok). In DDXTT we find 460 fields, after some actions we could force will proceed Prepare, (before it's hangs between the phases TOOLIMPD1 and NPREPCRE0 where we can't reset Prepare). All is now good. Thanks and regards.

  • CONVT_CODEPAGE

    Hi All,
    I am running a program which reads the file on Application server and makes changes / addition to this file. But In Production environment, while reading the second record of the file it throws the error "CONVT_CODEPAGE".
    However this programs runs smoothly in other environment with the same file as an input.  Could any one please help me out with kind of action required to take?
    Thanks in advance,
    Jigar

    hi
    good
    Catchable Exceptions
    CX_SY_FILE_OPEN
    Cause: The file is already open (only in Unicode programs)
    Runtime Error: DATASET_REOPEN
    CX_SY_CODEPAGE_CONVERTER_INIT
    Cause: The required conversion is not supported (because you specified an invalid code page or a language with SET LOCALE LANGUAGE not supported during conversion).
    Runtime Error: CONVT_CODEPAGE_INIT (catchable)
    http://www.s001.org/ABAP-Hlp/abapopen_dataset.htm
    reward point if helpful.
    thanks
    mrutyun^

Maybe you are looking for