Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

hELO

Former Member
0 Kudos

Hello i have used the following code i have declared the structure and from the structure i have made a work are and from that i have to pass the values but my progrma is going into dump please helo i am sending the example code

data : begin of itab,

matnr like mara-matnr,

ersda like mara-ersda,

end of itab.

data : i_itab type itab occurs 0,

wa_itab type itab.

select matnr

ersda

from mara

into table i_itab." upto single row.

loop at i_ITAB into itab.

write : ITAB-MATNR.

endloop.

the dump error is

The current ABAP program "ZIM_TEST1" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

analisys is

An exception occurred that is explained in detail below.

The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not

caught and therefore caused a runtime error.

The reason for the exception is:

In a SELECT access, the read file could not be placed in the target field provided.

Either the conversion is not supported for the type of the target field, the target field is too small to include the value, or the data does not have the format required for the target field.

THE ROFRAM IS GOING IN TO DUM IN THE SELECT STATEMENTS

>>>>> select matnr

ersda

from mara

into table i_itab." upto single row.

I NEED A FAST ANSWER PLZ HELP ME OUT I WILL BE THANKFUL TO U

2 REPLIES 2

Former Member
0 Kudos

Hi,

define like this.......

types : begin of itab,

matnr like mara-matnr,

ersda like mara-ersda,

end of itab.

data : i_itab type standard table of itab ,

wa_itab type itab.

select matnr

ersda

from mara

into correspondong fields of table i_itab." upto single row.

loop at i_ITAB into wa_itab.

write 😕 wa_ITAB-MATNR.

endloop.

Regards

kishore

Message was edited by: kishore

kishore ale

Former Member
0 Kudos

Hi Soni,

ur program should be like below..

<b>types</b> : begin of itab,

matnr like mara-matnr,

ersda like mara-ersda,

end of itab.

data <b>: i_itab type standard table of itab with header line</b>,

wa_itab type itab.

select matnr

ersda

from mara

into table i_itab." upto single row.

loop at i_ITAB into <b>wa_itab</b>.

write : <b>wa_ITAB-MATNR</b>.

endloop.

Regards,

Kaveri