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

GETWA_NOT_ASSIGNED Error.

Former Member
0 Likes
1,620

Hi all,

I am trying display the output as ALV with also the checkbox in each rows, which will be the first column in the display.

but i am geeting an error as

GETWA_NOT_ASSIGNED.

Short text

Field symbol has not yet been assigned.

What happened?

Error in the ABAP Application Program

The current ABAP program "SAPLSLVC" had to be terminated because

come across a statement that unfortunately cannot be executed.

Error analysis

You attempted to access an unassigned field symbol

(data segment 32821).

This error may occur if

- You address a typed field symbol before it has been set with

ASSIGN

- You address a field symbol that pointed to the line of an

internal table that was deleted

- You address a field symbol that was previously reset using

UNASSIGN or that pointed to a local field that no

longer exists

- You address a global function interface, although the

respective function module is not active - that is, is

not in the list of active calls. The list of active calls

can be taken from this short dump.

Hi all,

I am trying display the output as ALV with also the checkbox in each rows, which will be the first column in the display.

but i am geeting an error as

GETWA_NOT_ASSIGNED.

Short text

Field symbol has not yet been assigned.

What happened?

Error in the ABAP Application Program

The current ABAP program "SAPLSLVC" had to be terminated because

come across a statement that unfortunately cannot be executed.

Error analysis

You attempted to access an unassigned field symbol

(data segment 32821).

This error may occur if

- You address a typed field symbol before it has been set with

ASSIGN

- You address a field symbol that pointed to the line of an

internal table that was deleted

- You address a field symbol that was previously reset using

UNASSIGN or that pointed to a local field that no

longer exists

- You address a global function interface, although the

respective function module is not active - that is, is

not in the list of active calls. The list of active calls

can be taken from this short dump.

7 REPLIES 7
Read only

Former Member
0 Likes
1,237

Kindly check the fieldcatalog table in debugging mode.

Read only

Former Member
0 Likes
1,237

Hi Poonam,

Check whether the field symbol you are using has a preceded assign statement. If you use a field symbol without assigning it you will get this run time error. Kindly check it and if the problem persists kindly paste ur code here.

Regards,

Sakkthiss.R

Read only

0 Likes
1,237

hi,

its working fine if i dont include the checkbox column.

as checkbox is not mentioned in the internal table.

Read only

0 Likes
1,237

its working, so what about closing the thread?

Read only

0 Likes
1,237

Do you, or do you NOT need the checkbox column? If you need it and don't know how to do it, have a look at sample program:

bcalv_edit_05

Read only

Former Member
0 Likes
1,237

Check SCN: this is a coomn error and you will find lot of threads on this,

Read only

GauthamV
Active Contributor
0 Likes
1,237

This is the common error which occurs due to field symbols.