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: 

Dump in matchcode no ALVGRID

Former Member
0 Kudos

Hi,

In ALV GRID edit it is happening DUMP when it is clicked in MATCHCODE of the field.

thanks

Sabrina

5 REPLIES 5

FredericGirod
Active Contributor
0 Kudos

Hello,

Please give us more details (source code, the begin of the dump ..)

Frédéric

Former Member
0 Kudos

It is message the DUMP:

Field symbol has not yet been assigned.

What Happened?

Error in ABAP application Program.

The current ABAP program "CL_GUI_ALV_GRID===============CP " had to be terminated because one of the statements could not be executed.

This is probably due to an error in the ABAP program.

000530 read table <tab1> into <ls_wa> index i_row_id.

000540 assign component m_cl_variant->ms_layout-stylefname

000550 of structure <ls_wa> to <l_field>. > read table <l_field> into ls_style

000570 with table key fieldname = is_col_id-fieldname.

000580 if sy-subrc eq 0.

0 Kudos

It's little hard to find without code. But I had this kind of dump when I didn't give the IT_OUTTAB to the object or when the I_STRUCTURE_NAME didn't exist.

Frédéric

0 Kudos

Attach the <b>code</b>, not the dump and the following things should be visible :

a) Declaration of the output table, fieldcatalog, layout

b) The place where you call set_table_for_first_display

Regards,

Subramanian V.

0 Kudos

As previous stated there is not much which can be learned from the dump without the coding.

But here goes my guess.

You were trying to color you cells.

You have filled either INFO_FNAME

or CTAB_FNAME in your layout structure but there is no corresponding field in your output table

Christian