Application Development and Automation 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: 
Read only

ALV

Former Member
0 Likes
438

Hi Friends,

This is regarding ALV.

I have populated my final internal table also created fieldcatalog wid same structure and used reuse_alv_grid_display. but its leading to a dump.

I'm getting a runtime error: GETWA_NOT_ASSIGNED

Short Description: Field symbol has not yet been assigned.

Kindly tell me how to fix this dump.

Thanks in advance,

Radhika.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
422

Hi,

It is a problem with your fields of field catlog.

Check Number of columns of Field Catlog.

Also check names are in capital.

Structure names and Filed catlog names should be same.

Reward if useful!

4 REPLIES 4
Read only

Former Member
0 Likes
422

The fieldname in the internal table and in fieldcat are not correct.

and give in capital letters...

CLEAR wa_fieldcat.

wa_fieldcat-col_pos = '2'.

wa_fieldcat-fieldname = '<b>KUNNR</b>'.

wa_fieldcat-tabname = 'T_OUTPUT'.

wa_fieldcat-coltext = 'Customer Number'.

wa_fieldcat-outputlen = '15'.

APPEND wa_fieldcat TO t_fieldcat.

Read only

Former Member
0 Likes
423

Hi,

It is a problem with your fields of field catlog.

Check Number of columns of Field Catlog.

Also check names are in capital.

Structure names and Filed catlog names should be same.

Reward if useful!

Read only

Former Member
0 Likes
422

Hi,

GETWA_NOT_ASSIGNED is error regarding size problem so check this many points .

1. check your select query means sequence and also work area or table which collect that data

2. Check your field catelog size field wize.

Rewards points if it is not useful.

Read only

Former Member
0 Likes
422

GETWA_NOT_ASSIGNED is an error which occurs when you have mentioned a field in field catalog and that is not found by the ALV fm in the internal table that you have passed. Check that...

Reward points if helpful

Balaji