CONNE_IMPORT_WRONG_COMP_TYPE error

hello guyz were having a problem, where implementing a function module and a datasource to be extracted to used by BW, we have 4 different Cluster Dev Boxes, namely: CD1, GDD, TD1, and QD1, the said function Module works in the 3 boxes excpt the CD1 box, the function module dumps and return this error, the function module works well on 3 boxes, GDD, TD1 and QD1. Ive also check and the Function Module is also in the CD1 box already.. thank you very much in advance....
<b>ABAP runtime errors    CONNE_IMPORT_WRONG_COMP_TYPE
       Occurred on     21.12.2005 at 09:48:26
Error when attempting to IMPORT object "MC12VC0ITM_TAB".
What happened?
The current ABAP/4 program "SAPLMCEX " had to be terminated because
one of the statements could not be executed.
This is probably due to an error in the ABAP/4 program.
When attempting to import data, it was discovered that the data
type of the stored data was not the same as that specified in the
program.
What can you do?
Note the actions and input that caused the error.
Inform your SAP system administrator.
You can print out this message by choosing "Print". Transaction ST22
allows you to display and manage termination messages, including keeping
them beyond their normal deletion date.</b>

hi,
take a look oss note 328181
Symptom
If you change an extract structure in the Customizing Cockpit (Transaction LBWE) by importing a support package, a transport or by carrying out an upgrade, this can cause various errors if it had already been activated for update for quite some time:
The initialization on data that was generated before the change no longer works (CONNE_IMPORT_WRONG_COMP_LENG).
Delta requests terminate (CONNE_IMPORT_WRONG_COMP_LENG).
The V3 update is no longer processed.
The update from the extraction queue (update mode "Delta Queued", as of PI(-A) 2002.1) does not finish.
The protocol terminates(CONNE_IMPORT_WRONG_COMP_TYPE)
A change to one of the LIS communication structures which are the basis for the extract structure or, in individual cases, also to further application tables (e.g. MSEG, inventory management) may lead to the same symptoms.
Other terms
LBWE, CONNE_IMPORT_WRONG_COMP_LENG, CONNE_IMPORT_WRONG_COMP_TYPE, IMPORT_ALIGNMENT_MISMATCH, CONNE_IMPORT*, IMPORT, V3, SM13, update, MCEX_UPDATE_02, MCEX_UPDATE_03, MCEX_UPDATE_04, MCEX_UPDATE_05, MCEX_UPDATE_05_1, MCEX_UPDATE_08, MCEX_UPDATE_11, MCEX_UPDATE_12, MCEX_UPDATE_13, MCEX_UPDATE_17, MCEX_UPDATE_17_1, MCEX_UPDATE_18, MCEX_UPDATE_18_1, MCEX_UPDATE_40, MCEX_UPDATE_43, MCEX_UPDATE_44, MCEX_UPDATE_45, MCEX_UPDATE_45_1, MCEX_BW_LO_API
Reason and Prerequisites
When you change a structure, the data which is stored in the old form of the structure can no longer be interpreted correctly.
Since changes can be also be made to extract structures (or to other update-relevant structures) as well as to basic data definitions for an R/3 upgrade or plug-in upgrade and (in very seldom cases) when importing an R/3 standard or plug-in Support Package, the precautions mentioned below should also be followed beforehand.
Solution
You should carry out the following steps before you change a structure:
1. Make sure that the following steps are carried out at a time when no updates are performed so that no data is lost.
2. Start the update collective run directly from within the Customizing Cockpit. Up to PI(-A) 2001.2 , this collective run exclusively concerns the V3 update. As of PI(-A) 2002.1, depending on the update mode setting of the application, the collective run concerns either the V3 update or the update from the extraction queue ("Delta Queued", see Note 505700).
3. Load all data of the respective DataSource into the BW System.
Now you can make the change.
After a change you can no longer use the statistical data already recreated. If such data still exists, you should delete it (Transaction LBWG).
We recommend in particular to upload the data immediately after a restructuring and (after checking in BW) delete them from the restructuring tables.
Moreover, the update log (Transaction LBWF) can no longer be read. Post a document in this case so that the last log entry is overwritten. This log entry then has the correct new format of the extract structure.
As of PI 2000.2 the program RMCEXDELETELOG is available. It can be used to delete log entries.
Remark:
The program RMCEXDELETELOG is available in the current PI 2000.1 patch.
However, no success message is displayed.
You can also import the program from the sapserv computers. It can be found in the directory /general/R3server/abap/note.0328181. However, only German texts have been maintained.
If you forget to process the V3 update before a change the only option is to delete the records that still exist, that is, this data is lost.
To do this,
for V3 update methods, go to the update overview (Transaction SM13), select the records (user *, V2 executed, set date), and select Update records -> Delete -> All records. Do not forget to deactivate the flag "Only incorrect".
for update method "Delta Queued" (as of PI(-A) 2002.1) go to the logistics queue overview (Transaction LBWQ). Mark the queues for the applications concerned one after the other (MCEXnn, nn = number of the logistics application, see Transaction LBWE), and choose the display function. Then choose the display function again to list all entries of the queue. Then select and delete all entries that had been stored before the structure change. In case of a very large number of entries in a queue it may be required to delete the entire contents of the queue. This is possible already on the initial screen of Transaction LBWQ.

Similar Messages

  • Function Module READ_TEXT short dump

    Hi All,
    I've created a bespoke long text object so I can save some long text to it.  I created it by copying the SAP standard long text object for CATS (timesheets) in SE75.  I save to this object using the function module SAVE_TEXT and I read it back using the function module READ_TEXT.  I get a short dump during READ_TEXT which says:
    "CONNE_IMPORT_WRONG_COMP_TYPE
    Error when attempting to IMPORT object "TLINE".
    When importing the object "TLINE", the component no. 1 in the dataset has a different type from the corresponding component of the target object in the program "SAPLSTXD ".
    The data type is "I" in the dataset, but "C" in the program."
    I've looked on OSS (as it's a SAP standard program) but can't find anything.  I get no errors when trying to read the standard object CATS only when I try and read my new object, so I'm thinking that I haven't set it up correctly.  An entry in table STXH occurs for both objects so I know I have saved some long text in my object.
    Can anyone help?
    Gill

    Hi,
    have you passed the correct parameters to the FM.
    try to check the sample...
    data: it_lines like tline occurs 0 with header line.
        CALL FUNCTION 'READ_TEXT'
             EXPORTING
                  CLIENT                  = SY-MANDT
                  ID                      = 'Z056'
                  LANGUAGE                = 'E'
                  NAME                    = L_NAME
                  OBJECT                  = 'VBBP'
             TABLES
                  LINES                   = IT_LINES
            EXCEPTIONS
                 ID                      = 1
                 LANGUAGE                = 2
                 NAME                    = 3
                 NOT_FOUND               = 4
                 OBJECT                  = 5
                 REFERENCE_CHECK         = 6
                 WRONG_ACCESS_TO_ARCHIVE = 7
                 OTHERS                  = 8
    i think it is because of it_lines declaration.
    Regards
    vijay

  • Dump error in db02 CONNE_IMPORT_WRONG_COMP_TYPE

    Dear All,
    When use the t-code db02 and press refresh button for database + history check it give abap runtine error dump.
    it gives this error as runtime error:
    CONNE_IMPORT_WRONG_COMP_TYPE.
    please guide me, it is happening both in Devlopment and well as in production server.
    Thanks
    Bhaskar

    Hi,
    check  Note 657981 - CONNE_IMPORT_WRONG_COMP_TYPE in DB02 for RSORAUD1
    also check Note 997535 - DB02: Problems with History Data.
    regards
    kaushal

  • Error when attempting to IMPORT object "TS_CHECK".

    When using in BI SAP NetWeaver 2004s (700 - SP 15) the transaction ST04old -> Detail analysis menu -> Summary report
    The following short dump occurs:
    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Except.                CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          19.11.2008 15:14:08
    Short text
    Error when attempting to IMPORT object "TS_CHECK".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLSTD4" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "DB02_ORA_FILL_TS_CHECK__CRITOB" "(FUNCTION)", 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:
    When importing the object "TS_CHECK", the component no. 4 in the
    dataset has a different type from the corresponding component
    of the target object in the program "SAPLSTD4".
    The data type is "I" in the dataset, but "N" in the program.
    Missing RAISING Clause in Interface
    Program                                 SAPLSTD4
    Include                                 LSTD4U03
    Row                                     1
    Module type                             (FUNCTION)
    Module Name                             DB02_ORA_FILL_TS_CHECK__CRITOB
    Trigger Location of Exception
    Program                                 SAPLSTD4
    Include                                 LSTD4U03
    Row                                     51
    Module type                             (FUNCTION)
    Module Name                             DB02_ORA_FILL_TS_CHECK__CRITOB
    Source Code Extract
    Line
    SourceCde
    21
    DATA: BEGIN OF TD110.
    22
    INCLUDE STRUCTURE TD110_STRU.
    23
    DATA: END OF TD110.
    24
    25
    CURR_TIME = SY-UZEIT.
    26
    CURR_DATE = SY-DATUM.
    27
    28
    CALL FUNCTION 'GET_DB_ORA_RELEASE'
    29
    IMPORTING
    30
    ORACLE_RELEASE = ORA_REL.
    31
    32
    IF FLAG_REFRESH = 'y'.  FLAG_REFRESH = 'Y'. ENDIF.
    33
    flag_refresh = 'Y': Es soll in jedem Fall auf die DB zugegriffen werd.
    34
    35
    CLEAR TS_CHECK. REFRESH TS_CHECK.
    36
    CLEAR CRITOBJ. REFRESH CRITOBJ.
    37
    CLEAR NR_CRIT_OBJ.
    38
    39
    IF FLAG_REFRESH <> 'Y'.
    40
    41
    Suche zunächst im Arbeitsspeicher !
    42
    CLEAR TS_CHECK_CACHE. READ TABLE TS_CHECK_CACHE.
    43
    IF NOT ( TS_CHECK_CACHE IS INITIAL ) .
    44
    TS_CHECK[] = TS_CHECK_CACHE[].
    45
    CRITOBJ[] = CRITOBJ_CACHE[].
    46
    OK_1 = 'Y'.
    47
    48
    Suche danach in 'MONI' !
    49
    ELSE.
    50
    PERFORM PREPARE_MONIKEY USING 2.
    >>>>>
    IMPORT TS_CHECK CRITOBJ FROM DATABASE MONI(DB) ID MONIKEY.
    52
    53
    IF SY-SUBRC = 0.
    54
    OK_1 = 'Y'.
    55
    TS_CHECK_CACHE[] = TS_CHECK[].
    56
    CRITOBJ_CACHE[] = CRITOBJ[].
    57
    ENDIF.
    58
    ENDIF.
    59
    60
    'Same procedure' für datetime:
    61
    IF NOT ( TD110_CACHE IS INITIAL ).
    62
    DATETIME-MONI_DATE = TD110_CACHE-DATUM.
    63
    DATETIME-MONI_TIME = TD110_CACHE-UZEIT.
    64
    ELSE.
    65
    PERFORM PREPARE_MONIKEY USING 3.
    66
    IMPORT TD110 FROM DATABASE MONI(DB) ID MONIKEY.
    67
    IF SY-SUBRC = 0.
    68
    DATETIME-MONI_DATE = TD110-DATUM.
    69
    DATETIME-MONI_TIME = TD110-UZEIT.
    70
    TD110_CACHE = TD110.
    Only related SDN post is following, but solved by changing permissions for saposcol.
    Only related SAP Note is SAP Note Number 597743 "DB02: Poor entries for critical objects list", but not applicable for current SAP version.
    For me strange is that this issue occurs on the development system, but not on the acceptance and production system.
    Thanks in advance for any assistance.
    KR
    Gidion

    Received the solution from SAP Active Global Support:
    This error occurs due a corruption in the table MONI.
    For solving this issue you need to clean the records of this table via the following path :
    1. Call transaction ST03
    2. With GOTO -> Performance database -> Content of database
    3. Push button Delete data group
    4. Enter ID DB
    5. Continue
    6. Confirm the delete
    If you wish to backup the data before deleting the entry please follow the steps in the note 1000275 "DB02: history data backup procedure".
    Regards,
    Gidion

  • Error in rules while updating from PSA to ODS

    Hi Experts,
    I am trying to load data from PSA to ODS using DTP. For about 101 records I get the following error:
    "Runtime error while executing rule -> see long text     RSTRAN     301"
    On further looking at the long text:
    Diagnosis
        An error occurred while executing a transformation rule:
        The exact error message is:
        Overflow converting from ''
        The error was triggered at the following point in the program:
        GP4808B5A4QZRB6KTPVU57SZ98Z 3542
    System Response
        Processing the data record has been terminated.
    Procedure
          The following additional information is included in the higher-level
         node of the monitor:
         o   Transformation ID
         o   Data record number of the source record
         o   Number and name of the rule which produced the error
    Procedure for System Administration
    When looking at the detail:
    Error Location: Object Type    TRFN
    Error Location: Object Name    06BOK6W69BGQJR41BXXPE8EMPP00G6HF
    Error Location: Operation Type DIRECT
    Error Location: Operation Name
    Error Location: Operation ID   00177 0000
    Error Severity                 100
    Original Record: Segment       0001
    Original Record: Number        2
    Pls can anyone help in deducing and pointing this error to the exact spot in the transformation rule
    Thanks & Regards,
    Raj

    Hi Kazmi:
    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Exception              CX_SY_IMPORT_MISMATCH_ERROR
    Short text
        Error when attempting to IMPORT object "HIST2".
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "RSORAT4M" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
         not caught in
        procedure "AKT_DAY_HIST2" "(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:
        When importing the object "HIST2", the component no. 8 in the
        dataset has a different type from the corresponding component
        of the target object in the program "RSORAT4M".
        The data type is "I" in the dataset, but "P" in the program.
    How to correct the error
        Try to find out why the type of the object should be different.
        There are various possible options:
        1. The type of the imported field has changed in the Data Dictionary.
           Make sure that the type of the imported field matches the type
           of the field in the Data Dictionary.
           If the data cannot be restored from another source, the data must be
           read by the 'old' structure, converted und again eported with the new
           structure, so that future IMPORTs will always function with the new
           structure.
        2. A new program version is active, which no longer fits the dataset.
           Try to solve the error generating the program "RSORAT4M" again. This
           works as follows: Select transaction SE38 in the SAP system. Enter
           the program name "RSORAT4M". Then activate the function 'Generate'.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "CONNE_IMPORT_WRONG_COMP_TYPE" "CX_SY_IMPORT_MISMATCH_ERROR"
    "RSORAT4M" or "RSORAT4M"
    "AKT_DAY_HIST2"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
        To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
        Display the system log by calling transaction SM21.
        Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
        In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught wit
    "AKT_DAY_HIST2" "(FORM)", or its possible occurren
    RAISING clause of the procedure.
    Hope this helps.
    Thanks to you and all
    Raj

  • Development server performance is slow [ Review the error and help me,]

    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Exception              CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          24.12.2007 07:02:58
    Short text
    Error when attempting to IMPORT object "HIST2".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "RSORAT4M" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "AKT_DAY_HIST2" "(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:
    When importing the object "HIST2", the component no. 8 in the
    dataset has a different type from the corresponding component
    of the target object in the program "RSORAT4M".
    The data type is "I" in the dataset, but "P" in the program.
    How to correct the error
    Try to find out why the type of the object should be different.
    There are various possible options:
    1. The type of the imported field has changed in the Data Dictionary.
    Make sure that the type of the imported field matches the type
    of the field in the Data Dictionary.
    If the data cannot be restored from another source, the data must be
    read by the 'old' structure, converted und again eported with the new
    structure, so that future IMPORTs will always function with the new
    structure.
    2. A new program version is active, which no longer fits the dataset.
    Try to solve the error generating the program "RSORAT4M" again. This
    works as follows: Select transaction SE38 in the SAP system. Enter
    the program name "RSORAT4M". Then activate the function 'Generate'.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "CONNE_IMPORT_WRONG_COMP_TYPE" "CX_SY_IMPORT_MISMATCH_ERROR"
    "RSORAT4M" or "RSORAT4M"
    "AKT_DAY_HIST2"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "AKT_DAY_HIST2" "(FORM)", or its possible occurrence must be declared in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    System environment
    SAP-Release 700
    Application server... "UBSDEV"
    Network address...... "10.22.6.68"
    Operating system..... "SunOS"
    Release.............. "5.10"
    Hardware type........ "sun4v"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 11
    Shortdump setting.... "full"
    Database server... "UBSDEV"
    Database type..... "ORACLE"
    Database name..... "UBD"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Apr 2 2006 21:14:52"
    create on........ "SunOS 5.9 Generic_117171-13 sun4u"
    Database version. "OCI_101 "
    Patch level. 52
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "SunOS 5.9, SunOS 5.10"
    Memory consumption
    Roll.... 1117168
    EM...... 0
    Heap.... 0
    Page.... 93315072
    MM Used. 638120
    MM Free. 458608
    User and Transaction
    Client.............. 000
    User................ "DDIC"
    Language key........ "E"
    Transaction......... " "
    Program............. "RSORAT4M"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    Termination occurred in the ABAP program "RSORAT4M" - in "AKT_DAY_HIST2".
    The main program was "RSORAT4M ".
    In the source code you have the termination point in line 163
    of the (Include) program "RSORAT4M".
    The program "RSORAT4M" was started as a background job.
    Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"
    Job Initiator.. "DDIC"
    Job Number..... 06004902
    The termination is caused because exception "CX_SY_IMPORT_MISMATCH_ERROR"
    occurred in
    procedure "AKT_DAY_HIST2" "(FORM)", but it was neither handled locally nor
    declared
    in the RAISING clause of its signature.
    The procedure is in program "RSORAT4M "; its source code begins in line
    161 of the (Include program "RSORAT4M ".
    Source Code Extract
    Line
    SourceCde
    133
    134
    REFRESH HIST2_DAY.
    135
    CLEAR HIST2_DAY.
    136
    137
    HIST2_DAY-SIZE    = TD110-TSSI.
    138
    HIST2_DAY-FREE    = TD110-TSFR.
    139
    HIST2_DAY-USED    = 100 - TD110-TSFRP.
    140
    HIST2_DAY-TABLES  = TD110-TANO.
    141
    HIST2_DAY-INDICES = TD110-TINO.
    142
    HIST2_DAY-TSIZE   = TD110-TASI.
    143
    HIST2_DAY-ISIZE   = TD110-TISI.
    144
    145
    PERFORM new_analysis_db.
    146
    HIST2_DAY-DATE = DATE.
    147
    HIST2_DAY-TIME = TIME.
    148
    APPEND HIST2_DAY.
    149
    ENDFORM.
    150
    Beschaffung neuer Analyse-Daten für Historien <<<
    151
    152
    Historie, Tage >>>
    153
    FORM DELETE_AKT_DAY_HIST2.
    154
    DATA: FLAG VALUE ' '.
    155
    LOOP AT HIST2.
    156
    IF HIST2-DATE = DATE. DELETE  HIST2. FLAG = '*'. ENDIF.
    157
    ENDLOOP.
    158
    IF FLAG NE SPACE. SUBTRACT 1 FROM LOGBUCH-ANZDAYS. ENDIF.
    159
    ENDFORM.
    160
    161
    FORM AKT_DAY_HIST2.                    " Aktualisiere Tage-Historie
    162
    PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie
    >>>>>
    IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.
    164
    IF SY-SUBRC <> 0.
    165
    REFRESH HIST2. CLEAR HIST2.
    166
    PERFORM LOGBUCH_INIT USING 1.
    167
    PERFORM TRANSFORM_ALL_HISTORIES.   " Strukturaenderung fuer Dynami
    168
    PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie
    169
    IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.
    170
    ENDIF.
    171
    READ TABLE HIST2 INDEX 1.
    172
    IF SY-SUBRC <> 0.
    173
    REFRESH HIST2. CLEAR HIST2.
    174
    PERFORM LOGBUCH_INIT USING 1.
    175
    ENDIF.
    176
    PERFORM DELETE_AKT_DAY_HIST2.        " Delete aktuellen Tag
    177
    LOOP AT HIST2_DAY.                   " Füge neue Analyse an
    178
    MOVE-CORRESPONDING HIST2_DAY TO HIST2.
    179
    APPEND HIST2.
    180
    ENDLOOP.
    181
    ADD 1 TO LOGBUCH-ANZDAYS.
    182
    MOVE DATE TO LOGBUCH-LASTDAY.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    0
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20071224
    SY-UZEIT
    070256
    SY-XPROG
    SAPMSSY0
    SY-XFORM
    NEW-LINE
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    2 FORM         RSORAT4M                            RSORAT4M                              163
    AKT_DAY_HIST2
    1 EVENT        RSORAT4M                            RSORAT4M                               73
    END-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       2 Ty.          FORM
    Name  AKT_DAY_HIST2
    SCREEN
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
    0000
    0000
    2222
    0000
    MONIKEY
    --UBD     days    h/2
    0000000000000000000000
    0000000000000000000000
    2254422222667722226232
    DD52400000419300008F20
    MONI
    DB--UBD     days    h/2 ##  ##################################################################
    00000000000000000000000000000F0083300C019880423CCCCBA185073210552E8C0334266086A470B60061642777
    00000000000000000000000000000F1204000802DCF80B619C242588C81881810C0A70020645DC07BF1AFE070ECE1C
    4422544222226677222262320022800003300001090100EE1161721CA580CAFEA65BC607333BC23214789666B6D8BC
    42DD52400000419300008F20000076120120000F291C430000062325261E520B6388C203600303CA0830014245D093
    MONI-CLUSTR
    8912646
    08
    07
    OBJ3
    0000000000000000000000000000000
    0000000000000000000000000000000
    2222222222222222222222222222222
    0000000000000000000000000000000
    OBJ4[]
    Table[initial]
    HIST2[]
    Table[initial]
    SY-SUBRC
    0
    0000
    0000
    HIST2
    00000000000000######################
    000000000000000000000000000000000000
    000000000000000000000000000000000000
    333333333333330000000000000000000000
    00000000000000000C000C000000000C000C
    S2
    0
    0
    2
    0
    KBYTES
    0.0.0.0.0.0.0.1.
    00000000
    0000000C
    No.       1 Ty.          EVENT
    Name  END-OF-SELECTION
    TSN
    000000000000000
    000000000000000
    222222222222222
    000000000000000
    TYP
    00000000000000000
    00000000000000000
    22222222222222222
    00000000000000000
    S3
    0
    0
    2
    0
    LOGBUCH-LASTDAY
    20070315
    00000000
    00000000
    33333333
    20070315
    DATE
    20071224
    00000000
    00000000
    33333333
    20071224
    SY-REPID
    RSORAT4M
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5545453422222222222222222222222222222222
    23F2144D00000000000000000000000000000000
    S5
    0
    0
    2
    0
    S7
    0
    0
    2
    0
    ROOT
    000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000
    222222222222222222222222222222222222222222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SEG_TYPE
    00000000000000000
    00000000000000000
    22222222222222222
    00000000000000000
    S4
    0
    0
    2
    0
    Internal notes
    The termination was triggered in function "CheckSimpleComponent"
    of the SAP kernel, in line 1183 of the module
    "//bas/700_REL/src/krn/runt/abconne.c#16".
    The internal operation just processed is "IMPO".
    Internal mode was started at 20071224070256.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    DoStack2 ( 0x105c65dc0, 0xffffffff7fff9900, 0x1004ffecc, 0x0, 0x20, 0x10315f010 ), at 0x1004ff
    CTrcStack2 ( 0x105c65dc0, 0x0, 0x18800, 0x1031a4d20, 0x100b21370, 0x10315f010 ), at 0x1004ffa6
    __1cQrabax_CStackSave6F_v_ ( 0x103385400, 0x3385400, 0x103a0e490, 0x1021a9af0, 0x100000000, 0x
    ab_rabax ( 0x100000000, 0x31a4c00, 0x103a0d000, 0x3a0d000, 0x2000, 0x0 ), at 0x100b21370
    __1cUCheckSimpleComponent6FkpnICONNE_RD_kpnQDESCRIPTION_CNTL_kCkL6kpknHAB_DATA_kI9D9D_i_ ( 0xf
    __1cRConneCmpCheckList6FkpnICONNE_RD_kpnQDESCRIPTION_CNTL_kppnMImportOpHead_kLpknHAB_DATA_kpk9
    __1cNConneCmpCheck6FkpnICONNE_RD_pknHAB_DATA_kpnQDESCRIPTION_CNTL_ppnMImportOpHead_kLkpLII_i_
    __1cMimport_check6FpnICONNE_RD_ppnMImportOpHead_kpCC_i_ ( 0xffffffff7fffa9a8, 0xffffffff7fffbb
    __1cLab_connread6FIpnLIMPORT_INFO_kpkHpnHAB_DATA_pFpHLp6ppv_ipFppCpLInJEXPO_MODE__i_i_ ( 0xfff
    __1cLexpo_import6F_v_ ( 0x0, 0xfffffffe324a90a4, 0xfffffffe324a90ac, 0x105be9e84, 0x0, 0x105ce
    __1cIab_jimpo6F_v_ ( 0x100000000, 0x5c66400, 0x1, 0x0, 0x0, 0x94 ), at 0x1009d7f64
    __1cIab_extri6F_i_ ( 0x100000000, 0x5cea400, 0x230, 0x1, 0x0, 0x46 ), at 0x1006f9298
    __1cJab_xevent6FpkH_i_ ( 0xfffffffe324a9fe8, 0xfffffffe324a7398, 0x2ac, 0x0, 0x4c, 0x105c6648
    __1cIab_trigg6F_i_ ( 0x105bea340, 0x105c69588, 0x10093cc48, 0x20, 0x215fc00, 0x0 ), at 0x1009
    ab_run ( 0x1062f8288, 0x105c69000, 0x1021b23fc, 0x0, 0x105c6647c, 0x0 ), at 0x100b9346c
    dynpmcal ( 0x106305708, 0x6, 0xc, 0x1035867c8, 0x100589628, 0x1031a4d14 ), at 0x100581e1c
    dynppai0 ( 0x106305708, 0x106306d14, 0x0, 0x1031a4d78, 0x0, 0x105c86004 ), at 0x10057f120
    dynprctl ( 0x106305708, 0x0, 0x103199024, 0x1300, 0x1, 0x128c ), at 0x10057d764
    dynpen00 ( 0x0, 0x106305708, 0x106305708, 0x0, 0x106305708, 0x102a5fc00 ), at 0x100579c64
    TskhLoop ( 0x0, 0xb, 0xffffffff6f408530, 0x0, 0x100288854, 0x0 ), at 0x10028f248
    ThStart ( 0x1, 0x280800, 0x100280800, 0x100000000, 0x1, 0x10319a0c0 ), at 0x1002815f4
    DpMain ( 0x37e6800, 0x3197400, 0x100000000, 0x1, 0x0, 0x0 ), at 0x1001b2e8c
    List of ABAP programs affected
    Index
    Typ
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    RSORAT4M
    0
    21.03.2007
    19:50:50
    98304
    E
    1
    Prg
    SAPMSSY0
    1
    21.03.2007
    19:51:33
    90112
    E
    2
    Prg
    SAPMSSYD
    1
    21.03.2007
    19:51:17
    21504
    E
    3
    Prg
    SAPFSYSCALLS
    1
    09.09.2004
    14:18:32
    11264
    E
    4
    Prg
    RSDBRUNT
    0
    21.03.2007
    19:50:43
    254976
    E
    5
    Typ
    RSSCR
    0
    30.03.2005
    10:21:45
    5120
    6
    Prg
    RSDBSPBL
    0
    30.03.2005
    10:21:58
    72704
    E
    7
    Prg
    SAPDB__S
    0
    30.03.2005
    10:22:01
    19456
    E
    8
    Prg
    RSDBSPMC
    0
    21.03.2007
    19:28:01
    79872
    E
    9
    Typ
    DDSHDESCR
    0
    03.09.1997
    03:05:16
    4096
    10
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    11
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    12
    Prg
    SAPLSABE
    12
    09.09.2004
    14:18:36
    13312
    E
    13
    Prg
    SAPLSECU
    13
    27.03.2007
    17:41:57
    87040
    E
    14
    Typ
    RSSUBINFO
    0
    14.10.1999
    22:01:03
    3072
    15
    Prg
    SAPLSTUP
    15
    08.03.2005
    19:04:31
    74752
    E
    16
    Prg
    SAPLCNDP
    16
    21.03.2007
    16:17:37
    193536
    E
    17
    Prg
    SAPLSCNT
    17
    18.02.2005
    14:16:06
    30720
    E
    18
    Prg
    SAPSHDTV
    17
    05.01.2005
    16:26:16
    36864
    E
    19
    Prg
    SAPFGUICNTL
    1
    18.02.2005
    14:15:08
    24576
    E
    20
    Prg
    SAPLOLEA
    20
    05.07.2005
    13:10:18
    96256
    E
    21
    Prg
    SAPLSGUI
    21
    21.03.2007
    19:51:33
    82944
    E
    22
    Prg
    SAPLSTTM
    22
    05.07.2005
    13:10:18
    69632
    E
    23
    Prg
    SAPLSBDC
    23
    05.07.2005
    13:10:18
    44032
    E
    24
    Prg
    SAPLSFES
    24
    27.03.2007
    17:42:13
    257024
    E
    25
    Prg
    SAPLTHFB
    25
    27.03.2007
    17:38:01
    392192
    E
    26
    Typ
    WPINFO
    0
    26.02.1999
    14:49:01
    6144
    27
    Prg
    SAPLURFC
    27
    15.06.2005
    11:39:01
    22528
    E
    28
    Prg
    SAPLSPLUGIN
    28
    09.09.2004
    14:18:36
    8192
    E
    29
    Typ
    SWCBCONT
    0
    15.11.2000
    17:55:11
    3072
    30
    Typ
    OLE_VERBS
    0
    04.04.1995
    16:02:20
    2048
    31
    Typ
    OLE_PA
    0
    04.04.1995
    16:02:19
    2048
    32
    Typ
    MONI
    0
    31.03.2004
    16:41:21
    5120
    33
    Prg
    CX_SY_IMPORT_MISMATCH_ERROR===CP
    33
    05.07.2005
    13:10:16
    10240
    E
    34
    Typ
    SCX_SRCPOS
    0
    18.05.2004
    14:07:11
    2048
    35
    Prg
    CX_DYNAMIC_CHECK==============CP
    35
    05.07.2005
    13:10:16
    10240
    E
    36
    Prg
    CX_ROOT=======================CP
    36
    05.07.2005
    13:10:16
    11264
    E
    37
    Prg
    CX_NO_CHECK===================CP
    37
    05.07.2005
    13:10:16
    10240
    E
    38
    Prg
    CX_SY_NO_HANDLER==============CP
    38
    05.07.2005
    13:10:16
    10240
    E
    39
    Typ
    SYST
    0
    09.09.2004
    14:18:12
    31744
    Directory of Application Tables
    Name                                     Date       Time       Lngth
    Val.
    Program  RSORAT4M
    SYST                                     09.09.2004 14:18:12   00004612
    00000x00010000000000000000000
    MONI                                       .  .       :  :     00002944
    DB--UBD     days    h/2 00  x0087######00#0####
    ABAP Control Blocks (CONT)
    Index
    Name
    Fl
    PAR0
    PAR1
    PAR2
    PAR3
    PAR4
    PAR5
    PAR6
    Source Code
    Line
    1841
    BRAX
    01
    FFF2
    RSORAT4M
    157
    1842
    comp
    00
    0242
    C000
    00A2
    RSORAT4M
    158
    1844
    BRAF
    05
    0005
    RSORAT4M
    158
    1845
    ccqi
    4C
    0000
    0000
    2610
    0001
    0000
    0000
    2610
    RSORAT4M
    158
    1849
    ENDF
    00
    0000
    RSORAT4M
    159
    1850
    00
    0000
    RSORAT4M
    159
    1851
    PERP
    00
    0000
    RSORAT4M
    161
    1852
    perf
    00
    000C
    RSORAT4M
    162
    1853
    PERP
    80
    0001
    RSORAT4M
    162
    1854
    PERP
    80
    00CC
    RSORAT4M
    162
    1855
    IMPO
    00
    0001
    007B
    007A
    010C
    0000
    00EA
    0000
    RSORAT4M
    163
    1859
    PAR2
    06
    0000
    00EB
    009B
    RSORAT4M
    163
    >>>>>
    IMPO
    07
    0000
    0000
    0000
    0000
    0000
    0000
    0000
    RSORAT4M
    163
    1865
    cmpr
    00
    00CA
    00F8
    0000
    RSORAT4M
    164
    1867
    BRAF
    05
    0016
    RSORAT4M
    164
    1868
    REFR
    00
    0000
    009B
    0000
    RSORAT4M
    165
    1870
    CLEA
    00
    009C
    RSORAT4M
    165
    1871
    perf
    00
    0035
    RSORAT4M
    166
    1872
    PERP
    80
    0001
    RSORAT4M
    166
    1873
    PERP
    80
    0006
    RSORAT4M
    166

    Hi,
    Please apply the following correction manually.
    1. Go to transaction ST03N
    2. Change user from 'Administrator' to 'Expert Mode'.
    3. Go to Collector and performance analysis -> Performance database
       -> Monitoring database -> Contents
    4. Search where further info contains the string "h/2"
    like the following monikeys:
      - 'days  h/2'
      - 'weeks  h/2'
      - 'months  h/2'  
    5. Double click on each, so that they become red and show ** delete
    6. Finally SAVE
    This will remove the corresponding database related history up to the deletion date. It will accumulate anew afterwards.
    How can I identify the monikey that has to be deleted?
    When you load the text of the dump and then jump off to the break point of the debugger you may find the error break point look like:
    "IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY".
    To find the right monikey entry causing the dump you can search for the word 'MONIKEY' within the text of the dump. This can be 'days  h/3' or
    'tabgrowth  2'...
    You can then go back to the procedure above and search where further info contains the monikey that you found in the text of the dump.
    997535     DB02: Problems with History Data.
    Award points if helpful.
    Thanks,
    Tanuj

  • SCM5 - SCM7 Upgrade Error during LiveCache upgrade Step C4

    We are in the process of upgrading our SCM5 system to SCM7 release level. During livecache upgrade step C4 to load transaction data, we are getting error CONNE_IMPORT_WRONG_COMP_TYPE. The dump says that "when importing the object 'OT_ORDERS", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "/SAPAPO/SAPLOM_UPGR_PARALLEL". The data type is "P" in the dataset, but "C in the program".
    Our source livecache version is 7.6.03.12 and target livecache version we are upgrading to is 7.7.04.29. We used BS 7 SR1 liveCache 7.7.04 DVD from service marketplace. We did not use the update DVD since the guide mentioned that customers on SCM5.1 or higher need to run livecache upgrade from update DVD.
    All steps in A, B have already been completed.
    More details from the ST22 dump -
    Error analysis | | An exception occurred that is explained in detail below. | | The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was | | not caught in | | procedure "GET_DB" "(METHOD)", 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: | | When importing the object "OT_ORDERS", the component no. 5 in the | | dataset has a different type from the corresponding component | | of the target object in the program "/SAPAPO/SAPLOM_UPGR_PARALLEL". | | | | The data type is "P" in the dataset, but "C" in the program. Information on where terminated | | Termination occurred in the ABAP program "/SAPAPO/SAPLOM_UPGR_PARALLEL" - in | | "GET_DB". | | The main program was "SAPMSSY1 ". | | | | In the source code you have the termination point in line 3222 | | of the (Include) program "/SAPAPO/OM_UPG_CLASS_IMPCLUT". | | The termination is caused because exception "CX_SY_IMPORT_MISMATCH_ERROR" | | occurred in | | procedure "GET_DB" "(METHOD)", but it was neither handled locally nor declared | | in the RAISING clause of its signature. | | | | The procedure is in program "/SAPAPO/SAPLOM_UPGR_PARALLEL "; its source code | | begins in line | | 3221 of the (Include program "/SAPAPO/OM_UPG_CLASS_IMPCLUT ".
    We are running AIX5.3 and Oracle 10.2.0.2.0.
    Any help here will be greatly appreciated.

    This is exactly the same with OSS 305147 2010. It will be answered in BC-DB-LCA area.

  • Handling unexpected errors/situations in an ABAP program

    Hi,
    if i come across a situation where i need to handle a runtime error unexpectedly what should be my approach.
    for eg. if i build a dynamic select statement and if my logic goes wrong the program flow should proceed normally as if nothing has happened 'with out giving me a short dump' . what if im not sure about the type of error thats going to show up, is there any way?
    your help will be appreciated.
    Regards,
    ravi.

    Hi Ravi
    Not all exceptions can be overridden. FYI, Below are a list of exceptions that can be handled:
    Alphabetical Overview of Catchable Runtime Errors
    Below you find an alphabetical list of all catchable runtime errors. For each runtime error, the predefined exception class assigned is specified which is used to handle the respective runtime error as of Release 6.10. If an exception class is assigned to more than one catchable runtime error, it may contain as many message texts as required which you can find in the Class Builder on the Texts tab.
    Almost all of the runtime errors listed here are combined together in exception groups. These exception groups are also assigned those ABAP keywords at which the runtime errors contained can be caught.
    ADDF_INT_OVERFLOW
    Overflow at addition, type I ( ADD ... UNTIL / ADD ... FROM ... TO)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    ASSIGN_CASTING_ILLEGAL_CAST
    The components of the source field type and the target type which are strings, tables, or references do not have exactly the same offset and type.
    Exception class: CX_SY_ASSIGN_CAST_ILLEGAL_CAST
    ASSIGN_CASTING_UNKNOWN_TYPE
    The type specified at runtime is unknown.
    Exception class: CX_SY_ASSIGN_CAST_UNKNOWN_TYPE
    ASSIGN_FIELD_NOT_IN_RANGE
    The field is not within the RANGE specified.
    Exception class: CX_SY_ASSIGN_OUT_OF_RANGE
    BCD_FIELD_OVERFLOW
    Overflow at conversion / arithmetic operation (type P, with specified length)
    Exception class: CX_SY_CONVERSION_OVERFLOW
    BCD_OVERFLOW
    Overflow at conversion / arithmetic operation (type P)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    BCD_ZERODIVIDE
    Division by 0 (type P)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_ACOS_DOMAIN
    Invalid call of the mathematical function ACOS
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_ASIN_DOMAIN
    Invalid call of the mathematical function ASIN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_ATAN_DOMAIN
    Invalid call of the mathematical function ATAN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_BCD_OVERFLOW
    Overflow at arithmetic operation (all operands of type P)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_COSH_DOMAIN
    Invalid call of the mathematical function COSH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_COSH_OVERFLOW
    Overflow at mathematical function COSH
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_COS_DOMAIN
    Invalid call of the mathematical function COS
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_COS_LOSS
    Inaccurate result of function COS
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_EXP_DOMAIN
    Invalid call of the mathematical function EXP
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_EXP_RANGE
    Overflow or underflow at mathematical function EXP
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_DIV_OVERFLOW
    Overflow at division (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_MINUS_OVERFLOW
    Overflow at subtraction (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_PLUS_OVERFLOW
    Overflow at addition (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_TIMES_OVERFLOW
    Overflow at multiplication (type F)
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_FLOAT_ZERODIVIDE
    Division by 0 (type F)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_INT_ABS_OVERFLOW
    Integer overflow while calculating the absolute value
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_DIV_OVERFLOW
    Integer overflow at division
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_MINUS_OVERFLOW
    Integer overflow at subtraction
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_PLUS_OVERFLOW
    Integer overflow at addition
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_TIMES_OVERFLOW
    Integer overflow at multiplication
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_INT_ZERODIVIDE
    Division by 0 (type I)
    Exception class: CX_SY_ZERODIVIDE
    COMPUTE_LOG10_ERROR
    Invalid call of the mathematical function LOG10
    Exception classes: CX_SY_ARITHMETIC_OVERFLOW, CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_LOG_ERROR
    Invalid call of the mathematical function LOG
    Exception classes: CX_SY_ARITHMETIC_OVERFLOW, CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_MATH_DOMAIN
    Invalid call of a mathematical function
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_MATH_ERROR
    Error performing a mathematical function
    Exception class: None since this runtime error can no longer be caught
    COMPUTE_MATH_LOSS
    Inaccurate result of a mathematical function
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_MATH_OVERFLOW
    Overflow at a mathematical function
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_MATH_UNDERFLOW
    Underflow at a mathematical function
    Exception class: None since exception no longer occurs
    COMPUTE_POW_DOMAIN
    Invalid argument when using powers
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_POW_RANGE
    Overflow or underflow when using powers
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_SINH_DOMAIN
    Invalid call of the mathematical function SINH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_SINH_OVERFLOW
    Overflow at mathematical function SINH
    Exception class: CX_SY_ARITHMETIC_OVERFLOW
    COMPUTE_SIN_DOMAIN
    Invalid call of the mathematical function SIN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_SIN_LOSS
    Inaccurate result of the function SIN
    Exception class: CX_SY_PRECISION_LOSS
    COMPUTE_SQRT_DOMAIN
    Invalid call of the mathematical function SQRT
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TANH_DOMAIN
    Invalid call of the mathematical function TANH
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TAN_DOMAIN
    Invalid call of the mathematical function TAN
    Exception class: CX_SY_ARG_OUT_OF_DOMAIN
    COMPUTE_TAN_LOSS
    Inaccurate result of the function TAN
    Exception class: CX_SY_PRECISION_LOSS
    CONNE_IMPORT_WRONG_COMP_DECS
    Import error; a component of a structured type in the dataset has wrong decimal places
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_COMP_LENG
    Import error; a component of a structured type in the dataset has the wrong length
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_COMP_TYPE
    Import error; a component of a structured type in the dataset has the wrong type
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_DECS
    Import error; a field in the dataset has wrong decimal places
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_LENG
    Import error; a field in the dataset has the wrong length
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_FIELD_TYPE
    Import error; a field in the dataset has the wrong type
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_OBJECT_TYPE
    Import error; type conflict between simple and structured data types
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONNE_IMPORT_WRONG_STRUCTURE
    Import error; type conflict between structured objects
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    CONVT_CODEPAGE
    Character set conversion not possible for one or more characters
    Exception class: CX_SY_CONVERSION_CODEPAGE
    CONVT_CODEPAGE_INIT
    Conversion of texts between code pages not supported
    Exception class: CX_SY_CODEPAGE_CONVERTER_INIT
    CONVT_NO_NUMBER
    Value to be converted cannot be interpreted as a number
    Exception class: CX_SY_CONVERSION_NO_NUMBER
    CONVT_OVERFLOW
    Overflow at conversion (all types, not type P)
    Exception class: CX_SY_CONVERSION_OVERFLOW
    CREATE_DATA_ILLEGAL_DECIMALS
    Invalid value for the addition DECIMALS
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_ILLEGAL_INIT_SIZE
    Invalid value for the addition INITIAL SIZE
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_ILLEGAL_LENGTH
    Invalid value for the addition LENGTH
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_LEN_NOT_ALLOWED
    The addition LENGTH was used for a type other than C, N, X, or P
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_NOT_ALLOWED_TYPE
    The type specified dynamically in the addition TYPE is not typed completely.
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_DATA_UNKNOWN_TYPE
    The type specified in the addition TYPE is unknown.
    Exception class: CX_SY_CREATE_DATA_ERROR
    CREATE_OBJECT_CLASS_ABSTRACT
    You attempted to instantiate an abstract class.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CLASS_NOT_FOUND
    The class specified in the dynamic CREATE OBJECT was not found.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CREATE_PRIVATE
    You attempted to create an object of a class defined as 'CREATE PRIVATE'.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    CREATE_OBJECT_CREATE_PROTECTED
    You attempted to create an object of a class defined as 'CREATE PROTECTED'.
    Exception class: CX_SY_CREATE_OBJECT_ERROR
    DATA_LENGTH_NEGATIVE
    Invalid subfield access: Length negative
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_LENGTH_0
    Invalid subfield access: Length 0
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_LENGTH_TOO_LARGE
    Invalid subfield access: Length too large
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_NEGATIVE
    Invalid subfield access: Offset negative
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_LENGTH_TOO_LARGE
    Invalid subfield access: Offset + length too large
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    DATA_OFFSET_LENGTH_NOT_ALLOWED
    Invalid subfield access: Inadequate type
    Exception class: CX_SY_OFFSET_NOT_ALLOWED
    DATASET_CANT_CLOSE
    File could not be closed; there might be no more space in the file system.
    Exception class: CX_SY_FILE_CLOSE
    DATASET_CANT_OPEN
    File cannot be opened
    Exception class: CX_SY_FILE_OPEN
    DATASET_NO_PIPE
    OPEN DATASET with the addition FILTER is not supported on the current operating system.
    Exception class: CX_SY_PIPES_NOT_SUPPORTED
    DATASET_NO_POSITION
    Access to current read/write position of file not possible
    Exception class: CX_SY_FILE_POSITION
    DATASET_NOT_OPEN
    File not open
    Exception class: CX_SY_FILE_OPEN_MODE
    DATASET_OFFSET_TO_LARGE
    Offset specified exceeds the system limit
    Exception class: CX_SY_FILE_POSITION
    DATASET_PIPE_CLOSED
    Pipe for file closed
    Exception class: CX_SY_PIPE_REOPEN
    DATASET_READ_ERROR
    Error reading a file
    Exception class: CX_SY_FILE_IO
    DATASET_READ_ONLY
    File opened in read-only mode
    Exception class: CX_SY_FILE_OPEN_MODE
    DATASET_SEEK_ERROR
    Error positioning in a file
    Exception class: CX_SY_FILE_POSITION
    DATASET_TOO_MANY_FILES
    Maximum number of open files exceeded
    Exception class: CX_SY_TOO_MANY_FILES
    DATASET_WRITE_ERROR
    Error writing a file
    Exception class: CX_SY_FILE_IO
    DYN_CALL_METH_CLASSCONSTRUCTOR
    You attempted to call the class constructor.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_CLASS_ABSTRACT
    You attempted to call an abstract method.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_CLASS
    DYN_CALL_METH_CLASS_NOT_FOUND
    You attempted to call a method of a class that does not exist.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_CLASS
    DYN_CALL_METH_CONSTRUCTOR
    You attempted to call the instance constructor.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_EXCP_NOT_FOUND
    You attempted to catch an unknown exception.
    Exception class: CX_SY_DYN_CALL_EXCP_NOT_FOUND
    DYN_CALL_METH_NOT_FOUND
    You attempted to call an unknown method.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_NOT_IMPLEMENTED
    You attempted to call a method not yet implemented.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_NO_CLASS_METHOD
    You attempted to call an instance method through a class.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_PARAM_KIND
    You attempted to pass a parameter with a wrong parameter type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_LITL_MOVE
    You attempted to pass a constant actual parameter to a formal EXPORTING, CHANGING, or RETURNING parameter.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_MISSING
    A required parameter was not filled.
    Exception class: CX_SY_DYN_CALL_PARAM_MISSING
    DYN_CALL_METH_PARAM_NOT_FOUND
    You attempted to pass an unknown parameter.
    Exception class: CX_SY_DYN_CALL_PARAM_NOT_FOUND
    DYN_CALL_METH_PARAM_TAB_TYPE
    You attempted to pass a parameter with a wrong table type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARAM_TYPE
    You attempted to pass a parameter with a wrong type.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_TYPE
    DYN_CALL_METH_PARREF_INITIAL
    An initial data reference was passed for a required parameter.
    Exception class: CX_SY_DYN_CALL_PARAM_MISSING
    DYN_CALL_METH_PRIVATE
    You attempted to call a private method outside.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_PROTECTED
    You attempted to call a protected method outside.
    Exception class: CX_SY_DYN_CALL_ILLEGAL_METHOD
    DYN_CALL_METH_REF_IS_INITIAL
    You attempted to call a method to an initial reference.
    Exception class: CX_SY_REF_IS_INITIAL
    EXPORT_BUFFER_NO_MEMORY
    The EXPORT data cluster is too large for the application buffer.
    Exception class: CX_SY_EXPORT_BUFFER_NO_MEMORY
    EXPORT_DATASET_CANNOT_OPEN
    The IMPORT/EXPORT statement was unable to open the file.
    Exception class: CX_SY_FILE_OPEN
    EXPORT_DATASET_WRITE_ERROR
    The Export statement could not write the file.
    Exception class: CX_SY_FILE_IO
    GENERATE_SUBPOOL_DIR_FULL
    The system is unable to generate another temporary subroutine pool.
    Exception class: CX_SY_GENERATE_SUBPOOL_FULL
    IMPORT_ALIGNMENT_MISMATCH
    Import error; identical sequence of components but with type conflict or with different integration into structured data types
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    IMPORT_TYPE_MISMATCH
    Import error; only at IMPORT...FROM MEMORY | FROM SHARED BUFFER...
    Exception class: None since this runtime error can not longer be caught
    IMPORT_WRONG_END_POS
    Import error; dataset has a different length.
    Exception class: CX_SY_IMPORT_MISMATCH_ERROR
    MOVE_CAST_ERROR
    Type conflict assigning between object and/or interface references (only MOVE...?TO... or operator ?=)
    Exception class: CX_SY_MOVE_CAST_ERROR
    OPEN_DATASET_NO_AUTHORITY
    No authorization to access a file
    Exception class: CX_SY_FILE_AUTHORITY
    OPEN_PIPE_NO_AUTHORITY
    No authorization to access a file (OPEN DATASET...FILTER...)
    Exception class: CX_SY_FILE_AUTHORITY
    PERFORM_PROGRAM_NAME_TOO_LONG
    Invalid program name in the PERFORM statement
    Exception class: CX_SY_PROGRAM_NOT_FOUND
    REFI_WRONG_SECTION
    Wrong offset/length specification in the REPLACE statement
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    REPLACE_INFINITE_LOOP
    SECTION of length 0 in the REPLACE statement
    Exception class: CX_SY_REPLACE_INFINITE_LOOP
    RMC_COMMUNICATION_FAILURE
    Communication error during Remote Method Call
    Exception class: CX_SY_RMC_COMM_FAILURE
    RMC_INVALID_STATUS
    State error during Remote Method Call
    Exception class: CX_SY_RMC_INVALID_STATUS
    RMC_SYSTEM_FAILURE
    System error during Remote Method Call
    Exception class: CX_SY_RMC_SYSTEM_FAILURE
    STRING_LENGTH_NEGATIVE
    Invalid access with negative length to a string
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_LENGTH_TOO_LARGE
    Invalid access to a string (length too large)
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_NEGATIVE
    Invalid access with negative offset to a string
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_TOO_LARGE
    Invalid access to a string (offset too large)
    Exception class: CX_SY_RANGE_OUT_OF_BOUNDS
    STRING_OFFSET_LENGTH_TOO_LARGE
    Invalid access to a string (offset + length too large)
    Exception class: CX_SY_LOCALIZATION_ERROR
    TEXTENV_CODEPAGE_NOT_ALLOWED
    Character set not released in the system (SET LOCALE...)
    TEXTENV_INVALID
    Error setting the text environment (SET LOCALE...)
    Exception class: CX_SY_LOCALIZATION_ERROR

  • CONNE_IMPORT_WRONG_COMP_TYPE

    Hi all,
    After upgrading our R/3 system to ECC6, I am getting this dump CONNE_IMPORT_WRONG_COMP_TYPE with the message -
    Error when attempting to IMPORT object "TB_TSP"
    This happens with our monitoring tool Remedy when it tries to access database information.We are on Oracle 10.
    I followed SAP note 533020 and it selected Group TB and deleted all lines from MONI foor this group but this error comes back.
    What am i doing wrong?
    Thanks
    Cyrus

    Hi Cyrus.
    I would appreciate it if you could tell me if you ever managed to sort this issue out and if you did, could you point me in the right direction please?
    Thanks for your time.
    Mick.

  • Dump CONNE_IMPORT_WRONG_COMP_TYPE

    Good Day Guru's I need your help please, I would appreciate some guidance on this that.
    Errores tiempo ejec.   CONNE_IMPORT_WRONG_COMP_TYPE
    Excepción              CX_SY_IMPORT_MISMATCH_ERROR
    Texto breve
    Error when attempting to IMPORT object "TS_CHECK".
    The current ABAP program "SAPLSTD1" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Anál.errores
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "DB_ORA_CRIT_OBJ___FREESPC_STAT" "(FUNCTION)", 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:
    When importing the object "TS_CHECK", the component no. 4 in the
    dataset has a different type from the corresponding component
    of the target object in the program "SAPLSTD1".
    The data type is "I" in the dataset, but "N" in the program.
    Notas para corregir errores
    Try to find out why the type of the object should be different.
    There are various possible options:
    1. The type of the imported field has changed in the Data Dictionary.
    Make sure that the type of the imported field matches the type
    of the field in the Data Dictionary.
    If the data cannot be restored from another source, the data must be
    read by the 'old' structure, converted und again eported with the new
    structure, so that future IMPORTs will always function with the new
    structure.
    2. A new program version is active, which no longer fits the dataset.
    Try to solve the error generating the program "SAPLSTD1" again. This
    works as follows: Select transaction SE38 in the SAP system. Enter
    the program name "SAPLSTD1". Then activate the function 'Generate'.
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    The exception must either be prevented, caught within proedure
    "DB_ORA_CRIT_OBJ___FREESPC_STAT" "(FUNCTION)", or its possible occurrence must
    be declared in the
    RAISING clause of the procedure.
    To prevent the exception, note the following:
    SAP-Release 700
    Operating system..... "AIX"
    Release.............. "5.3"
    Database............. "ORACLE 10.2.0.."
    Thanks in advance.

    Then you may need to check the following note:
    [Note 1347224 - CDMCCA:CONNE_IMPORT_WRONG_COMP_TYPE dump in Ext.Runtime Anal|https://service.sap.com/sap/support/notes/1347224]
    [Note 1286192 - CDMC CA:CONNE_IMPORT_WRONG_COMP_TYPE during Ext. Runtime Ana|https://service.sap.com/sap/support/notes/1286192]
    [Note 997535 - DB02: Problems with History Data|https://service.sap.com/sap/support/notes/997535]
    [Note 941369 - upgrade of notes 738979 and 753876 to higher releases.|https://service.sap.com/sap/support/notes/941369]
    Regards,
    Dipanjan

  • DUMP: CONNE_IMPORT_WRONG_COMP_TYPE /CX_SY_IMPORT_MISMATCH_ERROR

    Hi guru,
    i have this dump:
    Errori run-time        CONNE_IMPORT_WRONG_COMP_TYPE 
    Eccezione              CX_SY_IMPORT_MISMATCH_ERROR
           Verific. il     18.04.2008 a  11:52:00
    Error when attempting to IMPORT object "GT_YBKPF_ALV".                        
    Causa dell'errore
    Error in ABAP application program.    
    The current ABAP program "ZAUT_PAGAMENTO_NEW" had o be terminated because one  of the statements could not be executed.
    This is probably due to an error in the ABAP program.  
    When attempting to import data, it was discovered that the data  type of the stored data was not the same as that specified in the 
    program.                                                                      
    Possibili soluzioni
    Print out the error message (using the "Print" function)and make a note of the actions and input that caused the error.                                                                      
    To resolve the problem, contact your SAP system administrator.                
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer termination messages, especially those beyond their normal deletion date.                      
    Analisi errori
    An exception occurred. This exception is dealt with in more detail below      
    . The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR',
    was neither                                                                  
    caught nor passed along using a RAISING clause, in the procedure "PRINT"      
    "(FORM)"                                                                     
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:                                              
    When importing the object "GT_YBKPF_ALV", the component no. 97 in the         
    dataset has a different type from the corresponding component                 
    of the target object in the program "ZAUT_PAGAMENTO_NEW".                                                                               
    The data type is "N" in the dataset, but "P" in the program.                  
    Indic. per la correzione
    The exception must either be prevented, caught within the procedure "PRINT"   
    "(FORM)", or declared in the procedure's RAISING clause.                      
    To prevent the exception, note the following:                                 
    Try to find out why the type of the object is different.                      
    There are several possible reasons:                                           
    |                                                                             
    --- In the ABAP Dictionary, the type of the imported                          
    |   field has changed. Make sure that the type of the imported                
    |   field matches the length of the Dictionary field.                         
    |                                                                             
    |   If the data could not be restored from another source, this data          
    |   must be read with the "old" structure, then converted and exported        
    |   back with the new structure, so that future IMPORTs always work           
    |   with the new structure.                                                   
    |                                                                             
    --- A new program version is active, and it no longer matches the             
        dataset. Try to solve the error by generating the program                 
    "ZAUT_PAGAMENTO_NEW" again                                                   
        as follows:                                                               
        In the SAP System, choose the transaction SE38. Enter the program         
        name "ZAUT_PAGAMENTO_NEW". Then choose the "Activate" function.                                                                               
    If you cannot solve the problem yourself, please send the                     
    following documents to SAP:                                                                               
    1. A hard copy print describing the problem.                                  
       To obtain this, select the "Print" function on the current screen.         
                                                                                    2. A suitable hardcopy prinout of the system log.                             
       To obtain this, call the system log with Transaction SM21                  
       and select the "Print" function to print out the relevant                  
       part.                                                                      
    3. If the programs are your own programs or modified SAP programs,            
       supply the source code.                                                    
       To do this, you can either use the "PRINT" command in the editor or        
       print the programs using the report RSINCL00.                                                                               
    4. Details regarding the conditions under which the error occurred            
       or which actions and input led to the error.       
    Informazioni punto di interr.
    The termination occurred in the ABAP program "ZAUT_PAGAMENTO_NEW" in "PRINT". 
    The main program was "ZAUT_PAGAMENTO_NEW ".                                                                               
    The termination occurred in line 2922 of the source code of the (Include)     
    program "ZAUT_PAGAMENTO_NEW"                                                 
    of the source code of program "ZAUT_PAGAMENTO_NEW" (when calling the editor   
    29220).                                                                      
    Processing was terminated because the exception "CX_SY_IMPORT_MISMATCH_ERROR" 
    occurred in the                                                              
    procedure "PRINT" "(FORM)" but was not handled locally, not declared in the   
    RAISING clause of the procedure.                                              
    The procedure is in the program "ZAUT_PAGAMENTO_NEW ". Its source code starts 
    in line 2777                                                                 
    of the (Include) program "ZAUT_PAGAMENTO_NEW ".     
    Can you HELP ME please!
    Best regards.
    Edited by: Diego Garofalo on Apr 18, 2008 4:52 PM

    Hi All,
    For the first time:
    Try to import the data to the IT with old structure (say 32 fields)
             IMPORT ty_data = it_temp_old FROM DATABASE indx(sp) TO wa_indx ID obj.       
       2. Append the data it_temp_old to new structure it_temp_new.         
              EXPORT ty_data = it_temp_new TO DATABASE indx(sp) TO wa_indx ID obj. 
    For the next time:  
    Edit the IMPORT statement.
             Import the data to IT with new structure (40)
             IMPORT ty_data = it_temp_new FROM DATABASE indx(sp) TO wa_indx ID obj.
       2. Perform the required Operations and export the same data with new structure(40).
             EXPORT ty_data = it_temp_new TO DATABASE indx(sp) TO wa_indx ID obj.
    Thanks,
    Shameer.

  • Dump "conne_import_wrong_comp_type" during client copy

    Hi gurus!!
    Last week I tried to run a client copy with SAP_CUST profile but the next dump was generated:
    Runtime Error          CONNE_IMPORT_WRONG_COMP_TYPE
    Exception              CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to IMPORT object "TLINE".
    What happened?
    This is probably due to an error in the ABAP program.
    When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR',
    was neither caught nor passed along using a RAISING clause, in the procedure "READ_TEXTLINES" "(FORM)"
    Since the caller of the procedure could not have expected this exception to occur, the running program was terminated.
    The reason for the exception is:
    When importing the object "TLINE", the component no. 1 in the dataset has a different type from the corresponding component of the target object in the program "SAPLSTXD".
    The data type is "N" in the dataset, but "C" in the program.
    I checked that the report SAPLSTXD had not been changed and I can't found the reason of the error.
    Can anybody help me?
    Thank you very much in advanced.
    Edorta.

    Hi nick
    I have already checked the note and executed the corresponding report and it shows an incorrect text filtering with the information extracted from the dump.
    I have eliminated this wrong text in STXL and rescheduled the client copy for toningth. Tomorrow we will see the results.
    Thank you very much in advanced,
    Edorta.

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Import Error - IMPORT hist FROM DATABASE MONI(DB) ID MONIKEY

    Hi,
       Iin my program I am using the statement
    IMPORT hist FROM DATABASE MONI(DB) ID MONIKEY.
    and Internal table structure of HIST is
    DATA: BEGIN OF HIST OCCURS 0,
              DATE LIKE SY-DATUM,
              TIME LIKE SY-UZEIT,
              SIZE      TYPE P,
              FREE      TYPE P,
              USED      TYPE I,
              TABLES    TYPE I,
              INDICES   TYPE I,
              TSIZE     TYPE I,
              ISIZE     TYPE I,
             END OF HIST.
    This IMPORT STatement is giving dump :
    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Except.                CX_SY_IMPORT_MISMATCH_ERROR
    Is that any way to check before this IMPORT statement,that HIST structure should be like this or like that.If I can find out the correct structure.I can change the HIST's structure and avoid the dump.
    Guide me on this.
    Regards,
    Ashok

    please refer to the  SAP note 1000275
    i got the same error so i rectified it by changing  fields type of hist2 .
    below declaration of hist2 data is giving error
    data: begin of hist2 occurs 0,
            date like sy-datum,
            time like sy-uzeit,
            size      type p,     "Changed to 'p'
            free      type p,     "Changed to 'p
            used      type i,
            tables    type i,
            indices   type i,
            tsize     type i,
            isize     type i,
          end of hist2.
    error rectified with below hist2 data( tsize and isize type is changed to p)
    data: begin of hist2 occurs 0,
            date like sy-datum,
            time like sy-uzeit,
            size      type p,     "Changed to 'p'
            free      type p,     "Changed to 'p
            used      type i,
            tables    type i,
            indices   type i,
            tsize     type p,
            isize     type P,
          end of hist2.

  • Error while doing Repair Full Req on ODS

    HI ALL,
    I am trying to load the data in the ODS starting from 2005 to July 2009 through a Repair  Full Req loads. Data source is 2lis_11_vaitm.
    I have splitted the loads and wheni try to run the Repair Full Req load into ODS its throwing error in source system.
    When i checked inthe R/3 for dumps & Logs it shows
    Error when attempting to IMPORT object "MC11VA0ITM_TAB".
    "CONNE_IMPORT_WRONG_COMP_TYPE"
    "SAPLMCEX " or "LMCEXU06 "
    "MCEX_BW_LO_API"
    Try and find out why the length of the object is supposed to be
    different. There are a couple of possible reasons:
        Perhaps the length of the field imported has changed in the ABAP
        Dictionary. Check to see that the length of the field imported is
        the same as the length of the field in the ABAP Dictionary.
        If the data cannot be reconstructed from another source, if must
        be read and converted using the "old" structure" and then
        re-exported using the new structure so that future IMPORTs
        always work with the new structure.
        A new version of the program is may be active and this may no longer
        suit the dataset. Try to get rid of the error by regenerating
        program "SAPLMCEX ". Proceed as follows: Call transaction SE38 and enter
        program name "SAPLMCEX ". Activate the program with the "Generate/Activate"
        function.
    how to rectify this problem.
    Thanks and Regards
    Janardhan KUmar K
    Edited by: Janardhan Karmala on Jul 27, 2009 8:52 PM

    There appears to have been a change in your R3 environment, perhaps the application of a Support Package or Support Package Stack, and this change updated the ABAP program for this extractor.
    Re-generate/re-activate that ABAP program in SE38. This may require you to get an Access Key from your OSS administrator. Whilst re-generating/re-activating this ABAP program, it may require you to re-generate/re-activate other objects in which case you may be required to get additional Access Keys. A pop-up screen will tell you exactly what objects are needed for the Access Key.

Maybe you are looking for