cancel
Showing results for 
Search instead for 
Did you mean: 

Can any one tell why i'm geting this dump?

Former Member
0 Kudos

I'm extracting the data from created data sources in ecc with t-Code rsa3, i'm getting this dump, i'm doing this in SAP BW 7.4 Version..you can see the error message below.

ategory               ABAP Programming Error

untime Errors         ASSIGN_TYPE_CONFLICT

BAP Program           ZCL_IM_IM_RSU5_SAPI_BADI======CP

pplication Component  Not Assigned

ate and Time          30.03.2015 17:29:18

Short text

    Type conflict with ASSIGN in program "ZCL_IM_IM_RSU5_SAPI_BADI======CP".

What happened?

    Error in the ABAP Application Program

    The current ABAP program "ZCL_IM_IM_RSU5_SAPI_BADI======CP" had to be

     terminated because it has

    come across a statement that unfortunately cannot be executed.

Error analysis

    You attempted to assign a field to a typed field symbol,

    but the field does not have the required type.

Trigger Location of Runtime Error

    Program                                 ZCL_IM_IM_RSU5_SAPI_BADI======CP

    Include                                 ZCL_IM_IM_RSU5_SAPI_BADI======CM001

    Row                                     11

    Module type                             (METHOD)

Module Name                             IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM

ce Code Extract


  SourceCde


1 method IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM.

2

3 FIELD-SYMBOLS <fs_WA> TYPE BIW_LFA1_S.

4 DATA: IT_VEN TYPE TABLE OF ZCUST_ENHAN4.

5 DATA: WA_VEN TYPE ZCUST_ENHAN4.

6

7

8

9 SELECT * FROM ZCUST_ENHAN4 INTO TABLE IT_VEN.

0

> LOOP  AT C_T_DATA ASSIGNING   <FS_WA>.

2 READ TABLE IT_VEN INTO WA_VEN WITH KEY LIFNR = WA_VEN-LIFNR.

3 IF SY-SUBRC  = 0.

4

5

6 <FS_WA>-ZVENPERNO = WA_VEN-ZVEN3.

7 <FS_WA>-ZVENPERADD = WA_VEN-ZVEN4.

8 ELSE.

9 MESSAGE'ERROR' TYPE'I'.

20 EXIT.

21

22 ENDIF.

23 ENDLOOP.

24

25 endmethod.

tive Calls/Events

.   Ty.          Program                             Include                             Line

    Name

  7 METHOD       ZCL_IM_IM_RSU5_SAPI_BADI======CP    ZCL_IM_IM_RSU5_SAPI_BADI======CM001    11

    ZCL_IM_IM_RSU5_SAPI_BADI=>IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM

  6 METHOD       CL_EX_RSU5_SAPI_BADI==========CP    CL_EX_RSU5_SAPI_BADI==========CM001   145

    CL_EX_RSU5_SAPI_BADI=>IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM

  5 FORM         RSAYBADI                            RSU5BADI                               30

    DATA_TRANSFORM

  4 FORM         SAPLRSAP                            LRSAPF06                               47

    CALL_DATA_CUSTOMER_FUNCTION

  3 FORM         GP6WYN9J4S56D6J3J5QCAWUZ2BK         GP6WYN9J4S56D6J3J5QCAWUZ2BK           273

    PROCESS_DATA_PACKAGE

  2 FORM         GP6WYN9J4S56D6J3J5QCAWUZ2BK         GP6WYN9J4S56D6J3J5QCAWUZ2BK           169

    DATA_TRANSFER

  1 EVENT        RSFHGEN2                            RSFHGEN2                               59

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

in the code you are trying to assign a wrong data type. so you are getting Assign type conflict dump. As Suhas suggested please try to change the data type of field symbol.

Thanks.

former_member185132
Active Contributor
0 Kudos

The data type definition for the field symbol is wrong.

FIELD-SYMBOLS <fs_WA> TYPE BIW_LFA1_S.

The data type should be the same as the extract structure. If not you'll get this error.

Former Member
0 Kudos

is the problem for a new piece of badi logic? or might it be related to BW 7.4?

and does the problem also occur at ECC/RSA3 side?

RamanKorrapati
Active Contributor
0 Kudos

Hi,

Please use meaningful heading in future.

Issue:

Seems like you you may be enhanced your data source thru BADI, those changes are not activated properly or some thing coding issue.

Take ABAP Expert help and check your BADI logic and activations.

Later you can run data source at RSA3.

Thanks