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: 

a question about ALV

Former Member
0 Kudos

experts

when I call function module(REUSE_ALV_GRID_DISPLAY) to display result as ALV, Description of Exceptio happened...

Runtime Errors GETWA_NOT_ASSIGNED

Short text

Field symbol has not yet been assigned.

can anyone tell me what should I do?

many many thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi

check have u made fieldcatalog for this or not if not pls make a fieldcatalog make sure all of your field must be capital.

reward points if useful

thnaks

6 REPLIES 6

former_member761936
Active Participant
0 Kudos

>

> experts

> when I call function module(REUSE_ALV_GRID_DISPLAY) to display result as ALV, Description of Exceptio happened...

>

> Runtime Errors GETWA_NOT_ASSIGNED

> Short text

> Field symbol has not yet been assigned.

>

>

> can anyone tell me what should I do?

>

>

> many many thanks

Hi ,

I think you are sending Empty Field catalog (OR) Empty table,for that reason when excuting function module , he came to situation that field symbol is not assigned and try to access empty field symbol.So make sure that all values are fill up before calling function module.

Former Member
0 Kudos

Hi,

check with

SAP note 721297

SAP Note : 590697

Regards,

Anirban

Former Member
0 Kudos

Hi,

see this link..

Former Member
0 Kudos

Check these links-

former_member181995
Active Contributor
0 Kudos

Check your field catalouge carefully all parameter should be in caps.

and also check field name in fieldcat carfully specially spell check.

CLEAR wa_fieldcat.
  wa_fieldcat-tabname     = it_final.
  wa_fieldcat-fieldname   = 'TELNR'."should be in caps and also check spell is should match with interna table field.
  wa_fieldcat-seltext_l   = 'Telephone'.
  wa_fieldcat-outputlen   = 15.
  APPEND wa_fieldcat TO it_fieldcat.

Former Member
0 Kudos

hi

check have u made fieldcatalog for this or not if not pls make a fieldcatalog make sure all of your field must be capital.

reward points if useful

thnaks