‎2007 Aug 24 8:11 AM
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.
‎2007 Aug 24 8:18 AM
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!
‎2007 Aug 24 8:15 AM
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.
‎2007 Aug 24 8:18 AM
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!
‎2007 Aug 24 8:22 AM
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.
‎2007 Aug 24 8:51 AM
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