cancel
Showing results for 
Search instead for 
Did you mean: 

CONNE_IMPORT_WRONG_FIELD_TYPE with exception CX_SY_IMPORT_MISMATCH_ERROR

Former Member
0 Kudos

Hi,

I'm implementing IS-Retail in our landscape. After the EhP4 update I've activated the SAP retail framework and when I'm trying to execute the program RSBRAN03 to change the short text after importing the latest update as per the nore 897714, I'm facing a short dump CONNE_IMPORT_WRONG_FIELD_TYPE with exception CX_SY_IMPORT_MISMATCH_ERROR.

I've even applied the correction as per the notes 687827 and 737471 but still the problem persists.

Can anyone of you let me know hoe to resolve this issue ?

Regards,

Varadharajan M

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi All,

This is a bug in SAP and a corrective note has been released for this case.

Regards,

Varadharajan M

Former Member
0 Kudos

Hi Varadharajan,

We have the same issue. Can you please share the SAP note no. that has been released

Thanks

Gopal

Former Member
0 Kudos

Hi,

This is the correction that SAP has suggested.

*&---------------------------------------------------------------------*
*& Report  Z_RSBRAN03_DUMP_CORRECTION
*&
*&---------------------------------------------------------------------*
*& THIS REPORT IS USED TO DELETE THE INCORRECT ENTRIES IN TABLE INDTEXT
*& FOR THE TABNAME = T7RUT2 AND FELDNAME = TAXLTX
*& DO NOT USE THIS REPORT FOR ANY OTHER PURPSOSES.
*&---------------------------------------------------------------------*

REPORT Z_RSBRAN03_DUMP_CORRECTION NO STANDARD PAGE HEADING.

TABLES: T7RUT2 .

DATA INDTEXT_TAB TYPE TABLE OF INDTEXT.

SELECT *
       FROM INDTEXT
       INTO TABLE INDTEXT_tab
       WHERE SPRSL   = 'E'
       AND BRANCHE   = 'ISR'
       AND TABNAME   = 'T7RUT2'
       AND FELDNAME  = 'TAXLTX'
       AND VBRKZ     = ''.


IF NOT INDTEXT_TAB[] IS INITIAL.
WRITE: / 'Entries to be deleted from table INDTEXT:',SY-DBCNT.
 DELETE INDTEXT FROM TABLE INDTEXT_TAB.
ENDIF.

UPDATE T7RUT2
set TAXLTX = 'ARTICLE HELP (P.217 PP.28   )'
Where SPRSL = 'E'
AND TAXL =  85
AND LAND = 'RU'.


UPDATE T7RUT2
set TAXLTX = 'ARTICLE HELP (P.217 PP.28 -3)'
Where SPRSL = 'E'
and TAXL = 86
AND LAND = 'RU'.

After executing this program in SE38 once execute the program RSBRAN03.

This will resolve the issue.

NB: I thought SAP might have released a note for this correction already for this issue.

Regards,

Varadharajan M

Former Member
0 Kudos

Hi Varadharajan,

The truth is that errors like this need to be replicated or analysed in the system where it happens before anyone can give an informed opinion.

My advise is to create an OSS message for SAP to analyse for resolution.

I hope this helps.

regards,

David